text
stringlengths
20
57.3k
labels
class label
4 classes
Title: Add --version argument to cli Body: I was looking for the alembic version in an env, and the cli does not seem to expose it. There is special action of argparse for this. and is supported also in [python2](https://docs.python.org/2/library/argparse.html#action), so it should be fairly easy to add
0easy
Title: Documentation for deployment options Body: Maybe start with Heroku and Docker Swarm? https://dockerswarm.rocks/
0easy
Title: Run benchmark for `--steps tdd` and compare to "default" benchmark results Body: If --steps tdd doesn't work well, we should remove it. If we see obvious ways to improve it, we can of course first consider fixing and see if it helps as part of the investigation.
0easy
Title: BUG: GeoDataFrame.iterfeatures with na='drop' crashes on non-scalar columns Body: - [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of geopandas. - [x] (optional) I have confirmed this bug exists on the main branch of geopandas....
0easy
Title: [Storage] `sky storage delete -a` aborted when deletion of one storage failed Body: <!-- Describe the bug report / feature request here --> `sky storage delete -a` aborted for all storage when deletion of one storage failed. Expected behaviour: print out error for corresponding storage while still delete all ...
0easy
Title: Unnecessary arguments in `core/scattering1d/scattering1d` Body: Not a big priority, but an easy simplification. The current prototype of `scattering` is: (phew!) ```python scattering1d(x, pad, unpad, backend, log2_T, psi1, psi2, phi, pad_left=0, pad_right=0, ind_start=None, ind_end=None, oversamplin...
0easy
Title: API docs missing for Details Body: see https://github.com/widgetti/solara/issues/221 https://github.com/widgetti/solara/pull/185 is a good template of what it should look like
0easy
Title: provide a way to do one hot encoding Body: the user should be able to use one hot encoding in the yaml file
0easy
Title: A "no formatting" mode for CI runs which don't support text formatting Body: **Is your feature request related to a problem? Please describe.** Snapshot failures in my Jenkins runs show the colour codes which make it hard to read the diffs. ![image](https://user-images.githubusercontent.com/1297096/8145386...
0easy
Title: sanic.response.file() could work a bit harder wrt caching Body: I'm using `file()` to send static files from my application. Initially, my code was the obvious, e.g.: ```python @app.get("/images/<name>") async def image(request, name): path = Path(os.getcwd()) / "images" / name return await fil...
0easy
Title: [New feature] Add apply_to_images to AutoContrast Body:
0easy
Title: save git status when run commands Body: Sometimes after changing many versions of the code, I'm confused about how I got this result. It would be nice if allennlp could log the current git status to `serialization_dir` when running `train` command. Here is an example of a transformers record(`git_log.json`)๏ผš ...
0easy
Title: Add readthedocs Body: If you look at https://github.com/trailofbits/manticore/blob/master/README.md you can see a nice link at the top to the docs. I'll write the docs once the layout is there, please see https://www.slideshare.net/mobile/JohnCosta/how-to-readthedocs (So the [easy] issues are good for new ...
0easy
Title: [Feature request] Add apply_to_images to ToGray Body:
0easy
Title: SDK is broken when installed by `git+https` Body: ### What happened? When I run the following code with `kubeflow-katib` installed by: `pip install git+https://github.com/kubeflow/katib.git@master#subdirectory=sdk/python/v1beta1` ```Python import kubeflow.katib as katib # Step 1. Create an objective fu...
0easy
Title: add inverse_transform method and functionality to BoxCoxTransformer Body: We can use the inv_boxcox functionality from scipy.special: https://docs.scipy.org/doc/scipy-1.8.0/html-scipyorg/reference/generated/scipy.special.inv_boxcox.html
0easy
Title: Issue Resolution Duration metric API Body: The canonical definition is here: https://chaoss.community/?p=3630
0easy
Title: [BUG] Error message on "new column names" is incorrect in deconcatenate_columns Body: # Brief Description If I pass in the wrong number of column names in deconcatenate_columns, the error message simply reflects back the number of columns that I provided, rather than the number of columns I need to provide. ...
0easy
Title: Call `atexit.register(self.close)` on the base class Body:
0easy
Title: Contribute `Gantt` to Vizro visual vocabulary Body: ## Thank you for contributing to our visual-vocabulary! ๐ŸŽจ Our visual-vocabulary is a dashboard, that serves a a comprehensive guide for selecting and creating various types of charts. It helps you decide when to use each chart type, and offers sample Pyth...
0easy
Title: bug: inconsistent behavior between `signature_namespace` and `signature_types` Body: It's currently difficult to use the simpler `signature_types` syntax in plugins due to the potential of there being an exception raised during startup. We should consider removing this entire section to keep the behavior con...
0easy
Title: Auto-update LICENSE file every year automatically Body: ### aiogram version both ### Problem We always forgot to update README file in the repository ### Possible solution We can use GitHub Action that makes auto-update the LICENSE file using CRON Example: https://github.com/marketplace/actions/update-l...
0easy
Title: Change `snapshot.assert_match(value)` to `assert snapshot == value` Body: ## Description With #7672 we changed which snapshot testing library we use which means we no longer have to serialize the data manually. We also changed to use a pure PyTest style for testing so we should do both for the last remaining...
0easy
Title: Make AutoML scikit-learn compatible Body: I think it would be interesting to add a feature to export the best model with a scikit-learn wrapper. This would allow integrating the best AutoML model into a scikit-learn workflow. I think most of the models that AutoML uses are already from scikit-learn, and those w...
0easy
Title: Half trend by everget Body: # https://www.tradingview.com/script/U1SJ8ubc-HalfTrend/ please implement half trend by everget
0easy
Title: Use original filename when saving photos or videos Body: **Describe the enhancement you'd like** Saving a file should give it its original filename instead of the hash **Describe why this will benefit the LibrePhotos** Being able to save an image with its original filename is better in every way. Saving ...
0easy
Title: [New feature] Add apply_to_images to ColorJitter Body:
0easy
Title: Add tests for extended intraday Body:
0easy
Title: Typo in structured_profilers.py Body: **Please provide the issue you face regarding the documentation** Need typo fix `appliied` -> `applied` in `Differences in Data` section https://github.com/capitalone/DataProfiler/blob/main/examples/structured_profilers.ipynb
0easy
Title: Using S3 presigned URL's with gr.Video or gr.Model3D fails Body: ### Describe the bug #### Description Using presigned URLs with certain Gradio components like `gr.Video` or `gr.Model3D` fails, resulting in the following error: ``` OSError: [Errno 22] Invalid argument: 'C:\\Users\\<username>\\AppData\\Local\\T...
0easy
Title: Incorrect behaviour when inserting classical control circuit element, causing `ValueError` Body: **Description of the issue** Under specific circumstances, it seems that classical controls are inserted wrongly and causing errors when getting measurement keys. **How to reproduce the issue** Run the foll...
0easy
Title: ่ƒฝๅ‡บไธ€ไธช่ง†้ข‘ๆ•™็จ‹ๅ˜› Body: ๆœฌไบบๆ˜ฏไธ€ไธชๅฐ็™ฝ๏ผŒ็œŸ็š„ๅฐ่ฏ•ๅŽปๅšไบ†๏ผŒๅฅฝๅœจไธ€ไบ›ๅฎ‰่ฃ…ไธ‹่ฝฝ้…็ฝฎๅˆซไบบๆœ‰ๅ‡บๆ•™็จ‹๏ผŒไฝ†ไธๅŒไบบๅ‡บ็š„ๅนถไธ่ฟž่ดฏ๏ผŒ่ฎฉๆˆ‘ไบง็”Ÿไธ€็ง่Žซๅๅ…ถๅฆ™็š„ๆ„Ÿ่ง‰๏ผŒๅพˆๅคšไธœ่ฅฟๅœจไบŽ็ป†่Š‚๏ผŒไนŸ่ฎธไป–ๆ‰€่ฎฒๆŽˆ็š„ๆ–นๆณ•้€‚็”จไบŽ่ฟ™ไธช็‰นๅฎš็š„้—ฎ้ข˜๏ผŒไฝ†ๅนถไธ้€‚็”จไบŽ้กน็›ฎ๏ผŒๆ‹œๆ‰˜ไบ†
0easy
Title: Create None file Body: A file called None is being generated ## xonfig <details> ``` $ xonfig +------------------+----------------------+ | xonsh | 0.11.0 | | Python | 3.10.4 | | PLY | 3.11 | | have readline | True ...
0easy
Title: Consider migrating from resumable.js to something else Body: From https://github.com/23/resumable.js/issues/533 seems that resumable.js not maintained anymore. [Flow.js](https://github.com/flowjs/flow.js) if a fork of resumable.js, which has added functionality and seems to be actively maintained. The latest ver...
0easy
Title: "Empty Response" on /index query Body: ![C4155F82-EAE1-40CD-87DB-0EB035CFD597](https://user-images.githubusercontent.com/21161101/220527142-1c4ffc3e-7ffc-418a-a250-dd476351c324.png)
0easy
Title: Better default opacity setting to prevent scatterplot datapoint occlusion Body: Some scatterplots have large number of datapoints and suffer from the problem of occlusion (hard to distinguish patterns since datapoints are too dense). We should change the default chart setting to make opacity lower based on numb...
0easy
Title: Arch Linux: test_history_dummy failure Body: ## Current Behavior <!--- For general xonsh issues, please try to replicate the failure using `xonsh --no-rc --no-env`. Short, reproducible code snippets are highly appreciated. You can use `$XONSH_SHOW_TRACEBACK=1`, `$XONSH_TRACE_SUBPROC=2`, or `$XONSH_DEBUG=1` ...
0easy
Title: In CI, refresh `nltk_data` cache if the hash of `index.xml` differs from the cached hash Body: Rather than simply caching `nltk_data` until the cache expires and it's forced to re-download the entire `nltk_data`, we should perform a check on the `index.xml` which refreshes the cache if it differs from some previ...
0easy
Title: Remove `if not matches:` from StringEvaluator Body: ## Refactor ### Description Remove unuseful lines: - https://github.com/scanapi/scanapi/blob/main/scanapi/evaluators/string_evaluator.py#L27-L28 - https://github.com/scanapi/scanapi/blob/main/scanapi/evaluators/string_evaluator.py#L27-L28 `matches` v...
0easy
Title: Fix Line Overflow in LaTeX templates Body: Sometimes, if a line is too long it can overflow. Some cases that trigger it: * Very long given name * Very long university name * Lots of skills in a category The templates that are most affected by it are: * Deedy * Plush * Simple
0easy
Title: The slack team url at mlcourse.ai#community gives 404 error Body: The link mentioned at "Discussions are held in the #mlcourse_ai channel of the [OpenDataScience (ods.ai)](https://ods.ai/en/) Slack team." sends 404 error
0easy
Title: Circular import in target file accidentally triggers 'No module named ... found' Body: ### Is there an existing issue for this? - [X] I have searched the existing issues ### Describe the bug While developing it appears that I accidentally caused a circular import which Python traces back to starting in the fi...
0easy
Title: [BUG] mlflow gc fails to delete artifacts with MinIO due to double trailing slashes in prefix Body: ### Issues Policy acknowledgement - [x] I have read and agree to submit bug reports in accordance with the [issues policy](https://www.github.com/mlflow/mlflow/blob/master/ISSUE_POLICY.md) ### Where did you enco...
0easy
Title: Optimizer should run with `acq_optimizer="sampling" if base_estimator is a tree-based method. Body:
0easy
Title: Agent rephrase_query Error Body: ### System Info pandasai version: 1.5.9 ### ๐Ÿ› Describe the bug using latest pandasai version(1.5.9) for rephrase_query, i'm getting the below error. Code Snippet:: ``` config = { "llm": llm } agent= Agent(dfs, config=config, memory_size=10) response = agent...
0easy
Title: Add missing most common errors Body: ## Problem There are certain [query engine errors](https://www.prisma.io/docs/reference/api-reference/error-reference#prisma-client-query-engine) that are not mapped to the python client errors. A [foreign key violation error](https://www.prisma.io/docs/reference/api-refe...
0easy
Title: Limit `max_redirects` by default Body: curl-cffi uses infinity redirects, in `requests` the default `max_redirects` is 30: > ### max_redirects > Maximum number of redirects allowed. If the request exceeds this limit, a [TooManyRedirects](https://requests.readthedocs.io/en/latest/api/#requests.TooManyRedirects)...
0easy
Title: Create an Attack Surface Matrix Document for AWS AppSync Body: Graphw00f 1.0.8 has a new AWS AppSync fingerprint signature. It will be useful to create an attack surface matrix markdown file under `docs/` for it to list the type of security features it offers and whether its vulnerable by default to GraphQL-ish ...
0easy
Title: [FEA] Node reductions Body: Node reductions are great! # What This is an important case of graph reductions. There are requests in both the UI and APIs to do reductions at the level of node, multiedge, and multiple nodes / subgraphs. Instead of simply filtering out the selected entities, the idea is they'd ...
0easy
Title: Renaming all refences of Pydantic Basemodels to schemas. Body: This would help to avoid confusion. The function prototype bellow is frankly confusing and should be standardized ```python SQLAlchemyCRUDRouter( model=Potato, db_model=PotatoModel, db=get_db, create_schema=PotatoCreate,...
0easy
Title: GUI not starting Body: ## Classification: Bug ## Reproducibility: Always ## Version AutoKey version: 0.95.2-1.fc29 Used GUI (Gtk, Qt, or both): Gtk Installed via: dnf Linux Distribution: Fedora 29 ## Summary Interface won't shows up. ## Steps to Reproduce (if applicable) - $ a...
0easy
Title: [ENH] Remove `gluonts` dependency in `gluonts_ListDataset_panel` mtype Body: The `gluonts_ListDataset_panel` data type specification does not require `gluonts` objects, as it is composed entirely of `python` base types and `pandas` types. Therefore we should be able to remove the `gluonts` dependencies. To do...
0easy
Title: [ByteTrack] - change the names and documenting input arguments Body: ### Description Change the names of [input arguments](https://github.com/roboflow/supervision/blob/3024ddca83ad837651e59d040e2a5ac5b2b4f00f/supervision/tracker/byte_tracker/core.py#L182) to be more intuitive and better document them so that...
0easy
Title: Change scatter markers edgecolor and/or edgewidth Body: Hi there, while playing with the alpha mode (alpha=0.1) I noticed that the marker have a border. Is that a feature, or is there any way to disable it? ![image](https://user-images.githubusercontent.com/49436733/111429412-3fc84400-86f9-11eb-9537-196aa...
0easy
Title: More Python3.9 deprecations Body: Running pytest with the new Python 3.9.4 shows a number of deprecation warnings about future failures to anticipate: ============================= test session starts ============================== platform linux -- Python 3.9.4, pytest-6.2.0, py-1.10.0, pluggy-0.13.1 [.....
0easy
Title: Move issue_template and pull request template to .github directory Body: We can clean the main page of the repository by moving the template files in the .github hidden folder.
0easy
Title: DeprecationWarning: firefox_profile has been deprecated, please use an Options object Body: Using `Browser('firefox')` results in a DeprecationWarning: ``` ~/Vcs/splinter/splinter/browser.py:113: in Browser return get_driver(driver, retry_count=retry_count, *args, **kwargs) ~/Vcs/splinter/splinter/brow...
0easy
Title: Consistently use lazy loading for all `skimage.*` submodules Body: ### Description: With `lazy_loader` successfully being used for `skimage`, `skimage.data` and `skimage.filters` why not use it for every of our public submodules? I see no significant disadvantage here (when using the approach with PYI files) ...
0easy
Title: Variables set using `Set Suite Variable` with `children=True` cannot be properly overwritten Body: I noticed that when "Set Suite Variable" is used with children=${True} in a suite setup and is then overwritten again within the the test case, the variable still has the old value when logged in a separate keyword...
0easy
Title: `import_obj()` declaration can be improved for consistency Body: Throughout the code base, the param name `row` is used to define the incoming row (even though this could be JSON or YAML). In [`import_obj()`](https://github.com/django-import-export/django-import-export/blob/905839290016850327658bbee790314d4854f...
0easy
Title: Improve `__str__` and `__repr__` for `SingleQubitCliffordGate` Body: **Is your feature request related to a use case or problem? Please describe.** Both the string and repr operators of SingleQubitCliffrodGate fall to its parent class which gives a confusing representaiton e.g. ```py3 >>> import cirq >>> r...
0easy
Title: Improve RankD Tests Body: Right now the Rank1D and Rank2D tests are very basic and can be improved using the new assert image similarity and pytest testing framework mechanisms. ### Proposal/Issue The test matrix should against the following: - [x] replace `make_regression` dataset with `load_energy` ...
0easy
Title: SDK Error: the namespace lacks label \"katib.kubeflow.org/metrics-collector-injection: enabled\" Body: ### What happened? When I try to use the `tune` API in katib python SDK to run the [get started example](https://www.kubeflow.org/docs/components/katib/getting-started/), it returned the following error messag...
0easy
Title: Making navbar collapse on small screens Body: ### Checklist - [X] There are no similar issues or pull requests for this yet. ### Is your feature related to a problem? Please describe. In large screen: <img width="1597" alt="Screenshot 2022-08-26 at 09 00 45" src="https://user-images.githubusercontent.com/197...
0easy
Title: Widen results display Body: The width is too narrow
0easy
Title: typo : unupervised Body: https://mlcourse.ai/assignments the nยฐ 7 is unupervised, should probably be unsupervised
0easy
Title: Jupyter notebook tutorials: Show full plots without scroll-bars Body: Figure out how to get nbsphinx to display the plots in full-size without scroll bars
0easy
Title: make >>> unselectable in the documentation Body: Our docstring examples need to start with `>>>` for pytest to detect them as tests. [Example](https://docs.ploomber.io/en/latest/api/_modules/tasks/ploomber.tasks.PythonCallable.html#ploomber.tasks.PythonCallable): ```python >>> from pathlib import Path >>> f...
0easy
Title: Apply the ignore of the `save_hyperparameters` function to args Body: ### Description & Motivation Currently, the ignore parameter of the `save_hyperparameters` function only filters its own arguments. Can we apply `hp = {k: v for k, v in hp.items() if k not in ignore}` before `obj._set_hparams(hp)`? ![im...
0easy
Title: [MNT] move linting to `ruff`, resolve strange linting behaviour Body: We should move the linting to `ruff` - good first issue for a maintenance affine contributor. There are also some strange behaviours in the precommits which I cannot pinpoint, e.g., the linter insisting on long single lines instead of line ...
0easy
Title: [ENH] Spatio-Temporal Clustering algorithms from the Cakmak et al benchmark Body: Hey there, I am working with collective behavioral data. My goal is to cluster agents in space (ST) and time, so as input I have the coordinates of the agents at each time point and as output I want to have the label for each ag...
0easy
Title: [BUG] Can't define usage of reserved words on streaming data export Body: ### Mage version 0.9.72 ### Describe the bug I have a streaming pipeline that receives kafka messages, transforms it and then it goes to a postgres data exporter block (which is configured only with the yaml file). Similar to other i...
0easy
Title: HTML - Display youtube videos on a responsive table Body: The videos section in the docs embeds youtube videos one after another: https://ploomber.readthedocs.io/en/latest/videos.html it'd be better to create a responsive table that displays 2-3 columns and collapses them on mobile, we're using the bootstrap ...
0easy
Title: DOC: `read_excel` `nrows` parameter reads extra rows when tables are adjacent (no blank row) Body: ### Pandas version checks - [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the [latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of ...
0easy
Title: Add retry handler for 500s to WebClient by default Body: Include custom retry handler for Slack 500s by default similar to how `ConnectionErrorRetryHandler` is included by default in the `WebClient`. I think this would be a good addition because as a developer using the slack sdk I'd expect this to be the defaul...
0easy
Title: [FEA] Edge reductions Body: Building off node reductions ( https://github.com/graphistry/pygraphistry/issues/193 ), edge reductions are also useful. The most typical case is multiedge handling: Ex: collapsing directed edges today: ```python g2 = g.edges(g._edges.drop_duplicates(subset=[g._src, g._dst])...
0easy
Title: Small typo on the documentation Body: ### Describe the bug There is a small typo on https://github.com/huggingface/datasets/blob/d5468836fe94e8be1ae093397dd43d4a2503b926/src/datasets/dataset_dict.py#L938 It should be `caching is enabled`. ### Steps to reproduce the bug Please visit https://githu...
0easy
Title: Improvements to Silhouette Visualizer Body: The following improvements to the Silhouette Visualizer are left over from #91: *Note to contributors: items in the below checklist don't need to be completed in a single PR; if you see one that catches your eye, feel to pick it off the list!* - [x] Improve the ...
0easy
Title: Missing einops.layers.....Repeat Body: I tried to use repeat for in torch and needed a layer, but strangely it was not there. I know, that I could use `einops.layers.torch.Reduce('...', reduction='repeat', ...)`, but that is confusing to read. What do you think about adding `einops.layers.....Repeat` functio...
0easy
Title: Porter stemmer returns a capital instead of lowercase Body: This output is unexpected. The `In` returns the capitalize `In` from PorterStemmer's output. ```python >>> from nltk.stem import PorterStemmer >>> porter = PorterStemmer() >>> porter.stem('In') 'In' ``` More details on https://stackoverflow....
0easy
Title: Set the preferred visualization library Body: ### ๐Ÿš€ The feature We need to enhance the flexibility of our application by allowing users to choose their preferred data visualization library. This will not only improve the user experience but also make our application more versatile and appealing to a broader au...
0easy
Title: Dropping is_botocore wasn't documented Body: `scrapy.utils.boto.is_botocore()` was dropped in #5719 but we forgot to mention it in 2.8.0 release notes, we should do that now.
0easy
Title: .secrets.toml not read automatically Body: Hi there, currently I'm evaluating various libraries for settings management in my next project. One favorite is Dynaconf, it relly shines! :) One thing which makes me wonder is that according to the docs the file `.secrets.toml` should be automatically read, should...
0easy
Title: Add Vietnamese translation Body: We added translation infrastructure and as well as translations for various languages in RF 6.0 (#4390). We now have PR #4791 adding Vietnamese translation.
0easy
Title: Cannot save AutoEncoder Body: The [official instructions](https://pyod.readthedocs.io/en/latest/model_persistence.html) say to use joblib for pickling PyOD models. This fails for AutoEncoders, or any other TensorFlow-backed model as far as I can tell. The error is: ``` >>> dump(model, 'model.joblib') .....
0easy
Title: Datadog Security Monitoring Body: **User Story:** I want to build automated investigations given findings from Datadog security products. Datadog's key security features can be grouped in the following: - CSPM findings - SIEM signals - SIEM signal state management - CSPM findings state management - SIEM ...
0easy
Title: Robot Framework does not run outside Windows if `signal.setitimer` is not available (affects e.g. Pyodide) Body: As described by @Snooz82 in Slack: > Pyodide 0.23 and newer runs Python 3.11.2 which officially supports WebAssembly as a [PEP11 Tier 3](https://peps.python.org/pep-0011/#tier-3) platform. [#3252]...
0easy
Title: Remove top-level reactor imports from CrawlerProces/CrawlerRunner examples Body: There are several code examples on https://docs.scrapy.org/en/latest/topics/practices.html that have a top-level `from twisted.internet import reactor`, which is problematic (breaks when the settings specify a non-default reactor) ...
0easy
Title: Question about the loss of Masked LM Body: Thank you very much for this great contribution. I found the loss of masked LM didn't decrease when it reaches the value around 7. However, in the official tensorflow implementation, the loss of MLM decreases to 1 easily. I think something went wrong in your implemen...
0easy
Title: [FEATURE] Add Sphinx documentation Body: I already got started on a [branch ](https://github.com/omar2535/GraphQLer/tree/sphinx) that contains some boilerplate to generate [spinx](https://www.sphinx-doc.org/en/master/) documentation. Since GraphQLer has a lot of handy functions, it would be useful to have a [rea...
0easy
Title: [2.x] Disable the copy button in insecure contexts Body: <!-- Welcome! Thank you for contributing. These HTML comments will not render in the issue. Before creating a new issue: * Search for relevant issues * Follow the issue reporting guidelines: https://jupyterlab.readthedocs.io/en/latest/getting_started/issu...
0easy
Title: Fix mypy-boto3-appflow version Body: ### Body We set TODO to handle the version limitation https://github.com/apache/airflow/blob/9811f1d6d0fe557ab204b20ad5cdf7423926bd22/providers/src/airflow/providers/amazon/provider.yaml#L146-L148 I open issue for viability as it's a small scope and good task for new contri...
0easy
Title: DocIndex: Validate if `search_field` is valid Body: When a user passes a `search_field` we should check in the abstract class if it correspons to one of the columns that was parsed from the schema. That we the backend implementer does not have to worry about it, and we can give a uniform error message.
0easy
Title: [Feature request] Add apply_to_images to RandomResizedCrop Body:
0easy
Title: Add `on_limit_message` option to WHILE loops to control message used if loop limit is exceeded Body: Currently, the error raised when the limit of the WHILE loop is reached isn't customizable. As a result of the issue #4562, we decided to add an option named `on_limit_message` on the WHILE loop. Here is an ex...
0easy
Title: Misleading hyperlink on https://mlcourse.ai/roadmap Body: Misleading hyperlink on https://mlcourse.ai/roadmap Chapter: "Week 5. Bagging and Random Forest" Link: โ€œRandom Forestโ€ Actual link: https://mlcourse.ai/articles/topic5-part1-bagging/ Expected link: https://mlcourse.ai/articles/topic5-part2-rf/
0easy
Title: SOCIALACCOUNT_PROVIDER nextcloud ignores settings Body: I have to manually change the domain (it just uses the default nextcloud.example.org), but after that connecting my nextcloud account still fails. I entered the settings json through the django admin panel, but I don't see any relevant logging. ![image](...
0easy
Title: Document the use of pytest with dynaconf Body: For testing in my project i want to add in my conftest.py something like that: ``` import pytest import os @pytest.fixture(scope='session', autouse=True) def settings(): os.environ['ENV_FOR_DYNACONF'] = 'testing' ``` But this is not work ;-(. What ...
0easy
Title: [FEATURE] FairnessWarning Body: if we have datasets where fairness is an issue, maybe it is naive to assume that folks will read the documentation. raising an explicit fairness warning might be a good idea. it's part of what could have gone better with the load_boston dataset. @MBrouns agree?
0easy
Title: Elapsed time is not updated when merging results Body: `rebot` of RF7 produces an incorrect total suite runtime when merging results - compared to RF6. With some lines of bash, I created a reproducable example where I execute the following steps with both RF6 and 7: 1. Run the suite with `-v FAIL:yes` so tha...
0easy