text
stringlengths
20
57.3k
labels
class label
4 classes
Title: [BUG] column parameter of read_pdf currently needs to be list, not generic iterable Body: ### Summary Docs say columns parameter can be iterable, but code requires it to be list. ### Did you read the FAQ? - [X] I have read the FAQ ### Did you search GitHub issues? - [X] I have searched the issues ### Did y...
0easy
Title: Dirichlet Likelihood TFT model Body: Hello, I'm tring to use DirichletLikelihood in TFT model, but I got this issue. How can I fix it? ```python `ValueError: Expected value argument (Tensor of shape (32, 12, 1)) to be within the support (Simplex()) of the distribution Dirichlet(concentration: torch.Size([12, ...
0easy
Title: Replace reflect.DeepEqual with cmp.Diff in tests Body: /kind feature **Describe the solution you'd like** [A clear and concise description of what you want to happen.] To improve visibility, we should replace `reflect.DeepEqual` with `cmp.Diff` in all test cases: https://github.com/kubeflow/katib/blob/maste...
0easy
Title: Marketplace - agent page - fix font on section headers, current font is too big Body: ### Describe your issue. <img width="1424" alt="Screenshot 2024-12-16 at 21 44 17" src="https://github.com/user-attachments/assets/83914baa-5c1a-4a2d-8cba-b21f368a0dfd" /> <img width="1471" alt="Screenshot 2024-12-16 at 21 ...
0easy
Title: Update `__init__.pyi` after running `rye run generate-stubs` Body: When I run `rye run generate-stubs`, I immediately have to run `test_override_init_pyi` afterwards to fix `__init__.pyi`, during which the test fails. Then I run it again to make sure it passes. This should be automated within the rye command.
0easy
Title: BUG: to_parquet doesn't set correct geometry_type in GeoParquet metadata for 3D geometries Body: The geometry_type should be "POINT Z" and not just "POINT": ``` In [12]: df = geopandas.GeoDataFrame({'col': [1, 2, 3]}, geometry=geopandas.points_from_xy([1, 2, 3], [2, 3, 4], [1, 1, 1])) In [13]: df Out[13]...
0easy
Title: Add custom usage message Body: So my bad, I missed this bug when I made the change to run it with -m, but the default argparse usage message no longer fits with how the program should be run. (It says to run '_ _main_ _.py') ```python python3.5 -m pyt example/vulnerable_code/sql/sqli.py usage: __main__.py...
0easy
Title: MCMC returns no samples when model contains deterministic variables only Body: # Steps to reproduce ```python from jax import numpy as jnp from numpyro import sample, deterministic, distributions as dist def test_model(): x = deterministic('x', jnp.array([1.0, 2.0])) mcmc = MCMC(NUTS(test_model),...
0easy
Title: "Empty" should not be displayed on "Top Categories" section of Creator Profile Body: <img src="https://uploads.linear.app/a47946b5-12cd-4b3d-8822-df04c855879f/9a222f5c-f591-45b0-aacc-a1e1b080bb22/053815c5-9277-4ece-b97f-b101ed831fdd?signature=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwYXRoIjoiL2E0Nzk0NmI1LTEyY2QtN...
0easy
Title: Deprecate pipe-separated format Body: The pipe-separated format is very little used and for the reasons explained in #5199 we have decided to remove it. Removing it is a backwards incompatible change and this issue covers deprecating it.
0easy
Title: Allow pandas series as value to `info_box_content` Body: The following should work: ```py import gmaps import gmaps.datasets gmaps.configure(api_key="AI...") df = gmaps.datasets.load_dataset_as_df('starbucks_kfc_uk').sample(200) fig = gmaps.figure() marker_layer = gmaps.marker_layer( df[['latit...
0easy
Title: [Feature request] Add apply_to_images to TextImage Body:
0easy
Title: Extend support for group-level service-accounts Body: In addition of [issue 2812](https://github.com/python-gitlab/python-gitlab/issues/2812) and [feature 2851](https://github.com/python-gitlab/python-gitlab/pull/2851) it would be nice to extend the interaction with group-level service-accounts. Currently onl...
0easy
Title: ichimoku cloud is a delayed 1 day Body: when I use ichimoku indicator and check with the tradingview default ichimoku cloud, values calculated with this package seems 1 day delayed. In other words, as an example values seen on 28th June on tradingview are written to Dataframe to date 29th June. So it creates 1 ...
0easy
Title: Truncate long column names ? Body: # Brief Description Often when exporting CSVs from questionnaires, the column names are paragraphs, or really long strings. I would like to propose that we add an option to `clean_names` that truncates long sentence column names to something shorter. This would be useful ...
0easy
Title: CHANGELOG.rst on master branch is flagged Body: ### AutoKey is a Xorg application and will not function in a Wayland session. Do you use Xorg (X11) or Wayland? Xorg ### Has this issue already been reported? - [x] I have searched through the existing issues. ### Is this a question rather than an issue? - [x]...
0easy
Title: NameError: name 'Nmf' is not defined Body: #### Problem description Trying to run NMF using gensim, but it doesn't work. #### Steps/code/corpus to reproduce I tried to run what documentation suggests: ```python from gensim.test.utils import common_texts from gensim.corpora.dictionary import Diction...
0easy
Title: pylint_copyright_checker doesn't work with pylint 3 Body: The custom pylint rule in dev_tools/pylint_copyright_checker doesn't work with the latest major version of pylint. The specific problem is that `IRawChecker` doesn't exist anymore. I quickly snooped the changelog and I think this is relevant: https://gith...
0easy
Title: Add smoke tests verifying basic functionality without any 3rd party deps Body: Starting from 2.0, Falcon (proudly) has no hard dependencies except the Python standard library. We need to add smoke tests verifying basic functionality such as WSGI, ASGI, media handling, WebSocket etc without any other packages in...
0easy
Title: Consider using super() to initialize httpx clients Body: **Describe the bug** Hi, I believe there may be an issue when mixing this library with [opentelemetry-instrumentation-httpx](https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-httpx). U...
0easy
Title: Cannot specify `allowed_updates` while using `dp.run_polling` Body: ref #564
0easy
Title: The best model and final model in RANSAC are not same. Body: ### Describe the bug The best model and final model in RANSAC are not same. Therefore, the final model inliers may not be same as the best model inliers. In `_ransac.py`, the following code snippet computes the final model using all inliers so t...
0easy
Title: `solara.DataFrame` doesn't display row index names Body: Here's the default display of a dataframe in a Jupyter notebook: ![image](https://github.com/widgetti/solara/assets/1813121/e44f561a-74fe-4ebc-86bb-6c5f1a173bb5) Here's how solara displays it: ![image](https://github.com/widgetti/solara/assets/181...
0easy
Title: Process: Support configuring log level keywords use Body: I'd like to have the ability to set `log_level` for builtin `Run Process` keyword so that I can specify the loglevel of messages logged by this keyword.
0easy
Title: Small edit to the contributors guide Body: The way we tell people to run unit tests will not work.. We need to tell users to run `python setup.py build_ext --inplace`
0easy
Title: Cleanup code from TODOs Body: Cleanup the following TODOs: * [x] https://github.com/aio-libs/aioredis/blob/master/aioredis/commands/server.py#L223 * [x] https://github.com/aio-libs/aioredis/blob/master/aioredis/commands/generic.py#L146 pass `encoding='utf-8'` parameter to command.
0easy
Title: Replace flake8 with ruff Body: https://github.com/charliermarsh/ruff This is so much better than flake8. We should be able to replace all our flake8 integrations with ruff for speed improvements and fewer dependencies.
0easy
Title: [Feature request] Add apply_to_images to RandomGamma Body:
0easy
Title: [ENH] interface `simdkalman` filters as a panel transformer Body: Quite randomly I discovered the `simdkalman` package, which is an alternative to `pykalman` and `filterpy`, and the only package that offers - in `sktime` parlance - an optimized `Panel` mode (= collections of time series). https://github.com/osei...
0easy
Title: Conditional join Body: # Brief Description <!-- Please provide a brief description of what you'd like to propose. --> I would like to propose conditional join, also known as non-equi joins, which is obtainable in SQL and R's datatable. # Example API ```python df1 = pd.DataFrame({'col_a': [1,2,3], 'c...
0easy
Title: ZeroDivisionError when using SmoothingFunction's method4 with a single word as hypothesis Body: When using the SmoothingFunction's [method4](https://www.kite.com/python/docs/nltk.bleu_score.SmoothingFunction.method4) with a a single word as a hypothesis I get the following error. Which is of course because math...
0easy
Title: Add MinMaxScaler Estimator Body: The MinMaxScaler estimator scales the data to a range set by the minimum and maximum. Use the IncrementalBasicStatistics estimator to generate the min and max to scale the data. Investigate where the new implementation may be low performance and include guards in the code to us...
0easy
Title: [FEATURE] hall of fame Body: if we're gonna do a sprint someday, it might be nice to add a hall of fame. feature? https://github.com/sourcerer-io/hall-of-fame
0easy
Title: [Feature request] Add apply_to_images to Morphological Body:
0easy
Title: Missing exchange config between Shetland Islands (GB-ZET) and Great Britain (GB) Body: ## Description There are a new interconnector between these zones but we are missing a config for it. It would be great if someone could add this!
0easy
Title: Add batch mutation for update and delete operation Body: ## Description Even though batch creation of objects was already implemented a while ago (see https://github.com/strawberry-graphql/strawberry-graphql-django/issues/3), it is still not possible to update/delete objects in a batch.
0easy
Title: Cumulative Volume Delta (CVD) Body: Hi, I am wondering if we can support CVD? Or if anyone else has a working CVD? Reference below for a nice CVD indicator: https://www.tradingview.com/script/NlM312nK-CVD-Cumulative-Volume-Delta-Candles/
0easy
Title: Listeners are not notified about actions they initiate Body: If a listener runs a keyword using `BuiltIn.run_keyword` or logs a message using `robot.api.logger`, their `start/end_keyword` or `log_message` methods are not called. This is inconsistent, because if listeners modify the data so that they add new keyw...
0easy
Title: Upgrading lightGBM API usage Body: ## ๐Ÿ› Bug Description <!-- A clear and concise description of what the bug is. --> The current usage of lightGBM API is deprecated. ![image](https://user-images.githubusercontent.com/465606/151738981-28f76fd1-e575-4289-aacb-fe4d8a153fce.png) ``` /home/xiaoyang/minicond...
0easy
Title: Cannot add JSONB value to lookup table via UI Body: Expected object got string. <img width="1153" alt="Image" src="https://github.com/user-attachments/assets/a9379b63-57fb-447f-ad73-d2b108fbac89" />
0easy
Title: Argument conversion should be attempted with all possible types even if some type wouldn't be recognized Body: If we have a keyword like ``` def kw(arg: Union[T, int]): ... ``` and the type `T` isn't recognized (i.e. doesn't have a converter), the used argument is returned as-is without attempting conve...
0easy
Title: Automatically generate the `docs/api/internal/*.rst` files Body: These files need to be manually kept in sync which is a lot of work and error-prone. Would be better to maintain the project's entire API docs in a more automated way --- The ridgeplot [API docs](https://ridgeplot.readthedocs.io/en/latest/api...
0easy
Title: [FEA] refactor pygraphistry[ai] logger to be more pythonic & friendly Body: The pygraphistry[ai] files (feature_utils, umap, ..) are doing some surprising & awkward use of `logging` that make dev + usage difficult, it should probably be: - [ ] files initializes as `logger = setup_logger(__filename__)`, drop p...
0easy
Title: CI: add pydantic for checking types during runtime Body: https://pydantic-docs.helpmanual.io/ Need to make sure it is consistent with our usage of mypy.
0easy
Title: More Parameter Options Body: It'd be great if there were more parameter options such as: - Format of days (y-axis) - Format of months (x-axis)
0easy
Title: [Storage] Support disable exclude .gitignore Body: <!-- Describe the bug report / feature request here --> The file in .gitignore can be useful and one could want to sync them to cluster sometimes. Could we provide an API to suppress the ignore and sync every file to the cluster? Current workaround: I modi...
0easy
Title: [FEATURE] Bold search terms in results Body: <!-- DO NOT REQUEST UI/THEME/GUI/APPEARANCE IMPROVEMENTS HERE THESE SHOULD GO IN ISSUE #60 REQUESTING A NEW FEATURE SHOULD BE STRICTLY RELATED TO NEW FUNCTIONALITY --> **Describe the feature you'd like to see added** Individual words in a search query should b...
0easy
Title: Cryptic error if permission directive returns non-bool Body: If I have a permission directive (e.g. a class with `@gql.schema_directive(locations=[Location.FIELD_DEFINITION])`) for which `check_condition` returns a non-bool value (let's say `None`) things may break badly. I'm getting 500 errors with the follo...
0easy
Title: `data.create_image_fetcher` should be private Body: ### Description: https://github.com/scikit-image/scikit-image/blob/c90bfccbc930262eebd1149b10660bfa4f56ec61/skimage/data/__init__.pyi#L16 has no docstring and is probably intended as a private initializer for pooch. So remove it from the PYI file and probab...
0easy
Title: Finding indexes with `np.where(condition)` or `np.asarray(condition).nonzero()` Body: Throughout the repo, we use `np.where(condition)` for getting indexes, for instance in [SelectorMixin.get_support()](https://github.com/scikit-learn/scikit-learn/blob/fba028b07ed2b4e52dd3719dad0d990837bde28c/sklearn/feature_sel...
0easy
Title: Documentation - Clean up the *Reference > Pages* sub-pages to be only about Page models Body: ### Pertinent section of the Wagtail docs > https://docs.wagtail.org/en/stable/reference/pages/index.html ![Image](https://github.com/user-attachments/assets/ac9d2dee-c0ab-4f7c-8360-165a9477a122) ### Details * Withi...
0easy
Title: Add `drop_tables` function Body: We recently added a `create_tables` function: https://github.com/piccolo-orm/piccolo/blob/bded0f62c6aa14ed4ac294cd560f56c6dd160f2e/piccolo/table.py#L978 It is a great convenience when writing unit tests, or writing a simple data science script using Piccolo. ```python c...
0easy
Title: Replace underscores with dashes in CSS classnames Body: - [ ] Do a search and find (e.g. `className=`) and replace all underscores with dashes in CSS classnames (except for vizro_dark and vizro_light) - [ ] Replace double underscores with dashes (e.g. container__title to container-title) - [ ] Ensure all tests...
0easy
Title: BlockingIOError multiprocessing error Body: ``` Traceback (most recent call last): File "/Users/maopinglin/Desktop/my/xiangmu/bwl/bwl.gouyungou.com/pachong/index.py", line 136, in <module> xsTimeOut = m.dict() File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/multiprocessing/manag...
0easy
Title: Version 3.0 on the way Body: Hello Everyone, I have been a good time away from the repository. I Wanted to tell you that I am working on version 3.0 where all errors are corrected and of course, will have many innovative improvements built in. Best regards!
0easy
Title: ็ฝ‘็ซ™็š„ๅ…ฌๅ‘Šๆ ๅœจ็ซ็‹ๆต่งˆๅ™จๆ˜พ็คบไธ‹ๅ‡บ็ŽฐๆŽ’็‰ˆ้—ฎ้ข˜ Body: ็›ฎๅ‰ไฝฟ็”จ่ฟ‡ๅ‡ ๆฌพๆต่งˆๅ™จๅœจ็ซ็‹ๆต่งˆๅ™จไธ‹ๆ‰“ๅผ€็ฝ‘้กต๏ผŒๅ…ฌๅ‘Šๆ ๅ‡บ็ŽฐๆŽ’็‰ˆ้—ฎ้ข˜๏ผŒๅฆ‚ๅ›พๆ‰€็คบใ€‚ <img width="579" alt="ๆˆชๅฑ2021-08-06 22 58 40" src="https://user-images.githubusercontent.com/39561185/128530939-7cb9749f-c7d3-4502-8f7f-c9dae05035c5.png">
0easy
Title: Annotate return type of DiffusionPipeline.from_pretrained as Self | None Body: DiffusionPipeline.from_pretrained returns Any | None. Return type should be explicitly annotated as Self | None.
0easy
Title: Smaller figures in examples Body: The figures in our example notebooks are very large. Making them a bit smaller will make things more readable.
0easy
Title: http.lifecycle.response should be dispatched in exception handler Body: Currently the `http.lifecycle.response` is only dispatched from `handle_request`. It also should be dispatched from `handle_exception`.
0easy
Title: allow feature selectors to take in other types of cross-validation functions Body: At the moment the following selector classes: - [recursive feature addition](https://github.com/solegalli/feature_engine/blob/master/feature_engine/selection/recursive_feature_addition.py) - [recursive feature elimination ](ht...
0easy
Title: Add GitHub action to test gql on windows Body: It happened multiple times already that the test suite is working well under Linux but it fails under Windows. I think it should be possible to add a GitHub action to test GQL under windows automatically for each push.
0easy
Title: Add unit tests for the `__repr__` method of the EndpointNode class Body: ## Unit Test ### Description Add unit tests for the `__repr__` method of the **EndpointNode** class: https://github.com/scanapi/scanapi/blob/main/scanapi/tree/endpoint_node.py#L55 [ScanAPI Writing Tests Documentation](https://githu...
0easy
Title: Revamp Landing README Body: Gorilla project has evolved from just a recipe and model that could call APIs to now consist of an ecosystem that includes OpenFunctions, The Berkeley Function Calling Leaderboard (aka Berkeley Tool Calling Leaderboard), RAFT, GoEx, and the APIZoo with 63,000+ APIs. ToDo: Revamp the R...
0easy
Title: Marketplace - agent page - star rating is not visible in dark mode Body: ### Describe your issue. <img width="1398" alt="Screenshot 2024-12-17 at 19 26 15" src="https://github.com/user-attachments/assets/dad177a3-8af5-4336-9619-74e8b4bd9cd9" /> <img width="602" alt="Screenshot 2024-12-17 at 19 27 03" src="ht...
0easy
Title: Set FEED_EXPORT_ENCODING="utf-8" in the default template Body: The default value for FEED_EXPORT_ENCODING (`None`) means `ensure_ascii=True` for JSON exports, because that was the existing behavior before that option was added. A better default is `"utf-8"`, which creates JSON files with `ensure_ascii=False`, so...
0easy
Title: Allow complete override of a Session's Headers Body: **Is your feature request related to a problem? Please describe.** It would be nice if I could set the entire `session.headers` and not just update individual keys. **Describe the solution you'd like** I want to be able to override the `session.headers` ...
0easy
Title: Loudly deprecate variables used as embedded arguments not matching custom patterns Body: If you have a keyword accepting embedded arguments with a custom pattern like ``` Perform ${arg:[^ ]+} Log To Console ${arg} ``` and use it with a variable like ``` Perform ${variable} ``` Robot will call the k...
0easy
Title: Marketplace - The clickable area on the navbar is very small and doesn't include the icon Body: Current dev clickable area: <img src="https://uploads.linear.app/a47946b5-12cd-4b3d-8822-df04c855879f/d2007730-a8e5-4ea8-ae34-a28bb5e96c71/381fbf8f-615f-4a40-b0a9-cff6e313e3c5?signature=eyJhbGciOiJIUzI1NiIsInR5cCI6Ik...
0easy
Title: Missing .delete() for some SQL product classes Body: Add a basic .delete() implementation for `GenericSQLRelation` and `SQLRelation` to delete tables/views. I ran into an issue where I had to manually execute a `DROP TABLE` statement, but since metadata still marked the table as "up-to-date", it didn't execute, ...
0easy
Title: Local dev server Body: I think this would be mostly useful for developing Mangum itself, but it could be useful for application developers. Currently I've relied on [Serverless Offline](https://github.com/dherault/serverless-offline) to test deployments, but this requires a Serverless Framework configuration and...
0easy
Title: Replace `get_artifact_uri` with `model_info.model_uri` in `tests/evaluate/test_evaluation.py` Body: ### Summary Make the following change to remove an unnecessary URI construction: ```diff diff --git a/tests/evaluate/test_evaluation.py b/tests/evaluate/test_evaluation.py index 09a225ef5..10f28e8db 100644 --- a...
0easy
Title: data description not rendering line breaks in html output Body: ### Current Behaviour The dataset description field as documented [here](https://ydata-profiling.ydata.ai/docs/master/pages/use_cases/metadata.html) doesn't render line breaks correctly. For example, "line1\nline2" is shown as "line1line2" in the ...
0easy
Title: Retry k8s-event posting if failed Body: ## Problem K8s-event posting can fail to post an event (`kind: Event`) for any reasons, such as API rate limiting, temporary API failures (HTTP 5xx), control plane connectivity issues, SSL handshake failures, etc. This leads to the events being lost, while they can r...
0easy
Title: cannot import name 'F1Score' from 'dataprofiler.labelers.character_level_cnn_model' Body: **General Information:** - OS: Windows - Python version: 3.10 - Library version: DataProfiler 0.8.8 **Describe the bug:** I was just simply running add_new_model_to_data_labeler.ipynb file. not able to import fro...
0easy
Title: New Dependency Language Parsers Body: 1. Rust 2. Go 3. Kotlin Code location for examples. https://github.com/chaoss/augur/tree/main/augur/tasks/git/dependency_tasks/dependency_util
0easy
Title: Modify app template to use `table_finder` Body: When using `piccolo app new my_app` to create a new Piccolo app, the `piccolo_app.py` file generated doesn't use `table_finder` (note below how `table_classes=[]`). https://github.com/piccolo-orm/piccolo/blob/eb6ba32e85c2357969e0131a2991b7e50a1dcfb1/piccolo/apps...
0easy
Title: [BUG] analyst notebook links to labs instead of hub for UI Guide Body: ![image](https://user-images.githubusercontent.com/4249447/180371412-06e95517-6951-48da-8b63-bb94da517f4d.png) New link is: https://hub.graphistry.com/docs/ui/index/
0easy
Title: Marketplace - Reduce margin from 16px to 10px Body: ### Describe your issue. Reduce margin from 16px to 10px ![image](https://github.com/user-attachments/assets/7d1181f3-08eb-4f13-9913-bdc88123b139)
0easy
Title: tutorials Body: To help users get started with the tutorial, it would be nice to have a set of tutorials that go over the main features (something like this: http://cdl-quail.readthedocs.io/en/latest/tutorial.html). Each tutorial can be a separate Jupyter notebook. - Notebook titles should written in a mark...
0easy
Title: Shortcut_Summarizing Data Body: ### ๐Ÿš€ The feature Getting an outline at once for a Pandas Dataframe helps saving time. For this purpose a summarization shortcut can be added: > Summarize data to group for each distinct value in a column > For each distinct value : calculate subtotal of rows ...
0easy
Title: Add examples for how to use consumer methods in documentation Body: Suggested by @Shanoir on Gitter: > One thing that I can suggest though: Overall the documentation of uplink is very nice. it clearly lays out how the API classes can be set up, and how to use the decorators. However, there is almost no exampl...
0easy
Title: Add option to force the user to reset its password at first login Body: ### Please confirm the following - [x] I agree to follow this project's [code of conduct](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html). - [x] I have checked the [current issues](https://github.com/ansible/awx/issu...
0easy
Title: Disguise database connection errors as 503? Body: When the database connection cannot be established, this is usually because of the deployment process restarting the cluster. Currently, this leads to `500 Internal Server Error` due to an error raised by the local database client library. As the error cause is k...
0easy
Title: Marketplace - Reduce this margin here so that it's 12px Body: ### Describe your issue. Reduce this margin here so that it's 12px ![image](https://github.com/user-attachments/assets/f3bb7ce7-a8df-4dc3-801a-c9ea4894faa5)
0easy
Title: Track device automatically. Body: Track `self.device = device` automatically as a property of the API class
0easy
Title: Is the requirements.txt missing on master? Body: There is no "requirements.txt" under master branch.
0easy
Title: Multi-user conversations in a thread Body: Allow for the conversation system to send multiple users to GPT3 in the conversation history. For example, we should key the user based on their discord name and the conversations should look like this: {CONVERSATION CONTEXT PRE-TEXT} Kaveen: Hey! GPTie: Hello t...
0easy
Title: TypeError: GraphQLView() received an invalid keyword 'subscriptions_enabled'. as_view only accepts arguments that are already attributes of the class. Body: ## Describe the Bug When using subscriptions in a view as [according to the docs here](https://strawberry.rocks/docs/django/guide/subscriptions), you updat...
0easy
Title: Refine Qlib's code style reported by pylint and flake8 Body: ## ๐ŸŒŸ Feature Description <!-- A clear and concise description of the feature proposal --> ## Motivation `Qlib` has integrated pylint and flake8 to automatically detect the problem of coding style But [some errors](https://github.com/microsoft...
0easy
Title: Cleanup and import SKL Feature Pre-processing: OneHotEncoder Body: We have the original draft of the OneHotEncoder code uploaded in this [branch](https://github.com/microsoft/hummingbird/tree/cleanup/one-hot-enc). All credit here goes to @scnakandala, the original author and brains behind this. It contains an...
0easy
Title: error when running training/main.py Body: I am getting a ModuleNotFoundError for training when running src/training/main.py. It points to line 19 in main.py, the import function. Edit: Fixed it. Forgot to add pythonpath
0easy
Title: [New feature] Add apply_to_images to HEStain Body:
0easy
Title: The weekly model zoo CI has been failing Body: https://github.com/onnx/onnx/actions/runs/8871371005 @ramkrishna2910 do you have any suggestions?
0easy
Title: "local-shell-script" does not work on read only file systems Body: ## SUMMARY While using the action runner type "local-shell-script", the action always try to set execute permission for the action script before the execution. For example, action runner logs for the core.sendmail action ``` 2022-03-0...
0easy
Title: Implement various output modules for go-bot Body: The go-bot defaults to template-based response generation (i.e. the model learns to respond with relevant templates) though both non-templated and non-natural-language (e.g. #1196 verbose intermediate calculations logs) output features seem relevant. There has...
0easy
Title: Iframe component Body: Should be pretty simple to implement.
0easy
Title: Fix punycode deprecation warning Body: # Description `(node:19052) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.` # Plausible causes - Local node version being v21.7.1. Even numbers are LTS. # Fix Likely - Upgrade yarn / pnpm and lock the version ...
0easy
Title: Write a script to sync translation in EN with other locales Body: The script should accept an option locales params, example signature in TS ```ts type Params = { locales?: string[] } ```
0easy
Title: How to get two coaxial pieces of data to be displayed together instead of divided into two views? Body: How to get two coaxial pieces of data to be displayed together instead of divided into two views? Such as a dataset that there is the same X-axis of date but two attribute
0easy
Title: Add Merge Request merge_status and detailed_merge_status constants Body: ## Description of the problem, including code/CLI snippet There are a bunch of possible `merge_status` and `detailed_merge_status` values for a Merge Request. Add these as constants. ## Expected Behavior You can find the possible...
0easy