text
stringlengths
20
57.3k
labels
class label
4 classes
Title: [API server] Helm warning: annotation "kubernetes.io/ingress.class" is deprecated Body: ``` W0310 23:08:14.543122 97112 warnings.go:70] annotation "kubernetes.io/ingress.class" is deprecated, please use 'spec.ingressClassName' instead NAME: skypilot ``` We can choose the field to set based on the server versi...
0easy
Title: Implement Query Params Body: Similar to `headers` implementation ```yaml api: base_url: ${BASE_URL} headers: Authorization: ${BEARER_TOKEN} params: per_page: 10 ```
0easy
Title: Show "... is thinking" during a conversation Body: Make the bot denote that it is waiting to generate a response inside conversations, for example maybe an embed after a user sends a message that says something like "Thinking...". That message should be deleted when the bot actually responds to the conversati...
0easy
Title: DateTime library uses deprecated `datetime.utcnow()` Body: [datetime.datetime.utcnow()](https://docs.python.org/3/library/datetime.html#datetime.datetime.utcnow) has been deprecated in Python 3.12 and `datetime.datetime.now(datetime.UTC)` should be used instead. That `datetime.UTC` is new in Python 3.11, so we n...
0easy
Title: Support stopping execution using `robot:exit-on-failure` tag Body: The command line argument `--exitonfailure` has been very useful. If we can have a reserved tag `robot:exit-on-failure` that would be great so that the same behavior can be enabled in individual test suite. For example: `suite1.robot`: ``` *...
0easy
Title: [Feature Request] DynDNS API can update subdomains Body: **Feature Description:** Using the [dynDNS API] it is possible to update `A` and `AAAA` records of sub-domains, e.g. `sub.main.dedyn.io`. One possible way to achieve this would be via the already existing `hostname` parameter in the API: ``` curl...
0easy
Title: Fix CI notebook tests for MacOS and Windows Body: **Description of the issue** After activating MacOS and Windows testing in [ci-daily.yml](https://github.com/quantumlib/Cirq/blob/master/.github/workflows/ci-daily.yml) in #6331, the notebook tests failed on these platforms, [example](https://github.com/quantu...
0easy
Title: Increase nbconvert timeout Body: Sometimes the CircleCI build will fail because it took too long to run the example notebooks. This is a timeout in `nbconvert`. We should increase the timeout so that we do not get spurious build failures.
0easy
Title: validate import_tasks_from Body: when loading the `import_tasks_from: file.yaml`, we are not validating its contents, if the file is empty, `yaml.safe_load` will return `None`, which will throw a cryptic error message: https://github.com/ploomber/ploomber/blob/beb625cc977bcd34481608a91daddc5493e0983c/src/ploo...
0easy
Title: Is there an example of how to integrate piccolo into an existing fastapi application? Body: Is there an example of how to integrate piccolo into an existing fastapi application? Something along the lines of the examples in the fastapi docs [here](https://fastapi.tiangolo.com/tutorial/sql-databases/) and [here...
0easy
Title: run profiling to determine loading times Body: We need to optimize the time it takes ploomber to load when running `ploomber` or `ploomber --help` We need to run profiling and see the different load times of the python packages and how we can optimize it to get a faster user response.
0easy
Title: load_cardio() and load_letter() do not work under Ubuntu 14.04 Body: While running comb_example.py, the program may fail due to loadmat() function. A quick workaround is to use synthesized data instead of real-world datasets. This only affects comb_example.py. Will be addressed in the next release.
0easy
Title: Tox v4.14.1 is no longer expanding {envtmpdir} (and potentially other variables) Body: ## Issue We are using `package = external` and `package_env = build-metatensor-core` in our tox setup, and build the wheels with `pip wheel python/metatensor-core {[testenv]build_single_wheel_flags} --wheel-dir {envtmpdir}/...
0easy
Title: Class-level decorators on Consumer classes do not apply to inherited methods Body: **Describe the bug** For consumer classes that inherit consumer methods (i.e., methods decorated with `@uplink.get`, `@uplink.post`, etc.) from one or more parent classes, uplink decorators such as`@response_handler` or `@timeout...
0easy
Title: Update SQLAlchemy-Utils Body: The current version of SQLAlchemy-Utils that we are using was yanked for some reason. We should update this soon.
0easy
Title: set_env substitution doesn't pass PYTHONHASHSEED in tox 4.x Body: ## Issue Hi, I have encountered what I believe is tox bug. With 2 test environments: base (`[testenv]`) and non-base (`[testenv:hs]`), _some_ environment variables from the base one aren't set in the non-base when they are passed as a substi...
0easy
Title: Feature: add K8S probes checker API Body: We should provides users with an ability to check application health in a some way. It can be reached by using multiple mechanism, so we can create a base `Checker` Protocol and use it the following way ```python app = FastStream(broker) app.add_checker( Socke...
0easy
Title: Make the distinction between user and team mode clearer during setup Body: We should probably have some kind of big checkbox div that explains what it means to be in user/teams mode. It would reduce the likelihood of needing to switch.
0easy
Title: Write a test Body: Any kind of test. Just to get testing rolling.
0easy
Title: Documentation wrong on page for "badges" Body: ## Description of the problem, including code/CLI snippet Documentation seems to be wrong here: https://python-gitlab.readthedocs.io/en/stable/gl_objects/badges.html#examples -> "Update a badge" ## Expected Behavior Update a badge: badge.image_url = new_im...
0easy
Title: JWTBearerTokenValidator don't send parameters now and leeway to claim.validate Body: ```python # authlib\oauth2\rfc7523\validator.py class JWTBearerTokenValidator: def authenticate_token(self, token_string): try: claims = jwt.decode( ... ) claims.validate() retur...
0easy
Title: CleanLearning default classifier Body: Currently CleanLearning can be run like this which is nice for users who don't know what classifier to use for their data: ``` cl = CleanLearning() cl.find_label_issues(data, labels) ``` but it always defaults to sklearn's LogisticRegression, which may not work for man...
0easy
Title: Add support for `UUID` Type Body: ## 🚀 Feature Request Add support for `UUID` in `sgqlc.types` ## Description <!-- Add a clear and concise description of what this new feature aims to do and achieve --> <!-- Is this new feature related to a specific problem? If so, please describe it --> There are the fo...
0easy
Title: [Track] VLM accuracy in MMMU benchmark Body: This issue keeps track of all vlm models accuracy in MMMU benchmark ``` python python benchmark/mmmu/bench_sglang.py python benchmark/mmmu/bench_hf.py --model-path model ``` | | sglang | hf | |--|--|--| | Qwen2-VL-7B-Instruct | 0.485 | 0.255 | | Qwen2.5-VL-7B-Inst...
0easy
Title: ping function call returns PONG when Redis server is not running (sock connection). Body: ``` import aioredis conn = await aioredis.create_redis_pool('unix:///var/run/redis/redis-server.sock?db=0') await conn.ping() ``` returns **b'PONG'** even though the server is not running. ``` import redis r = r...
0easy
Title: feature request: add describe support for new reduction models Body: [This](https://github.com/ContextLab/hypertools/pull/136) pull request adds support for a wide range of new data reduction models. However, there aren't equivalent `describe` methods like [this one](http://hypertools.readthedocs.io/en/latest/h...
0easy
Title: Make improve flag less intrusive by moving over files like "all_output.txt" and "file_list" to the .gpteng folder Body: This is done by simply using the new DB in #665 and writing to it
0easy
Title: Add docstrings for public packages etc Body: ## Public Packages ``` hexapod/ widgets/ pages/ tests/ ``` ## Some public methods ``` hexapod/ik_solver/ik_solver2.py - init hexapod/linkage.py - init - str - repr hexapod/points.py - init - repr - str - eq hexapod/models.py - for Virtu...
0easy
Title: [BUG]使用headers自定义User Agent时,会自动转为小写。 Body: **Describe the bug** 你好,我不清楚这是不是需求导致的问题,我通过headers修改UserAgent时,curl_cffi会自动将我的User Agent转换为小写,导致我访问网站的时候被拦截。希望能够得到解决方案,谢谢。 curl_cffi/requests/headers.py:81行 ```py self._list = [ ( normalize_header_key(k, lower=False, encodi...
0easy
Title: Web accessibility problems on document edition page Body: ## Bug Report **Problematic behavior** Here is the detailed analysis by Antoine : https://www.loom.com/share/3c9642546c2c4e5391b2ce04a5c3df93
0easy
Title: Web config tool includes \r in prompt Body: When using the web config (xonfig web), newlines are interpreted as "\r\n". On macOS (and Linux, I assume) this adds a "^M" to the prompt, before the newline. ## xonfig ``` +------------------+--------------------------------+ | xonsh | 0.13.3 ...
0easy
Title: Filter problem at the post list admin page Body: These options of filter: Title, Summary, Created At, Available At aren't working well. The first time that page is loaded and some filter is added, the filter wasn't work.
0easy
Title: Unusable password generator for Django Body: #### The problem The recently added `Password` generator for Django is helpful, but it's not clear how to use it to create an unusable password (similar to calling `set_unusable_password` on the generated user). #### Proposed solution Django's `set_unusable_p...
0easy
Title: Switch from setup.py to a build library Body: Current solution is deprecated and we need something more future proof
0easy
Title: [BUG] The README code does not immediately work Body: **Minimal Code To Reproduce** ```python from typing import Iterable, Dict, Any, List # Creating sample data data = [ ["A", "2020-01-01", 10], ["A", "2020-01-02", None], ["A", "2020-01-03", 30], ["B", "2020-01-01", 20], ["B", "...
0easy
Title: Add doc strings to argument annotation classes Body: Argument Annotation classes in `uplink/types.py` are missing class doc strings. To improve code documentation, we need to add doc strings to the following classes, adhering the [Google Style Guide](https://google.github.io/styleguide/pyguide.html?showone=Comme...
0easy
Title: improve falcon form data read part Body: > @yedpodtrzitko It depends what you are trying to achieve. Do you want to buffer whole files in memory? Or do you want to spool them to temp files like some other frameworks do? > Falcon even puts a cap on a maximum amount of data that can be referenced this way ([`aw...
0easy
Title: Add IsLeapYear primitive Body: - This primitive determine the `is_leap_year` attribute of a datetime column
0easy
Title: ruff (D): adopt some the ignored rules for the docstrings Body: we need an issue to discuss and check which of these rules we may want to have _Originally posted by @johnnv1 in https://github.com/kornia/kornia/pull/3082#discussion_r1868460841_ The ignored rules are (from https://docs.astral.s...
0easy
Title: CTFd pages route is relative when it shouldn't be Body: For some reason CTFd page routes are being generated in the navbar as relative when they shouldn't be. E.g. (`page` instead of `/page`).
0easy
Title: callbacks in autoencoder Body: How can i implement callback parameter in fit moder Autoencoder ? There is not parameter. from keras.callbacks.callbacks import EarlyStopping cb_earlystop = EarlyStopping(monitor='val_loss', min_delta=0, patience=0, verbose=0, mode...
0easy
Title: Display warning when no recommendations are generated Body: When no recommendations are generated (e.g., when [dataframe is small but not preaggregated](https://github.com/lux-org/lux/blob/master/lux/core/frame.py#L153), possibly other cases), we should display a warning that explains why the Lux view is not sho...
0easy
Title: Add more information to main Readme.md Body: - add optimized metric - add total run time - add validation metric - add parameters used in AutoML
0easy
Title: [MNT] remove mutable objects from defaults Body: We should ensure that no mutable objects are argument defaults, e.g., lists, dicts. All mutable defaults should be replaced by appropriate defaults, e.g., strings if applicable, or `None`, which internally is then replaced by a newly initialized mutable default...
0easy
Title: Improve `__pow__` for `SingleQubitCliffordGate` and `CliffordGate` class Body: **Is your feature request related to a use case or problem? Please describe.** The `__pow__` operator for `CliffordGate` is implemented only for integer powers and has complexity $\mathcal{O}(n)$ where $n$ is the exponent. https://g...
0easy
Title: [FEA] validator Body: **Is your feature request related to a problem? Please describe.** A recent viz had some null titles -- would help to check validate somehow! **Describe the solution you'd like** Ex: https://gist.github.com/lmeyerov/423df6b3b5bd85d12fd74b85eca4a17a - nodes not in edges - edges ...
0easy
Title: [Docs] Document how to configure shared memory for multi GPU deployments Body: This is a copy of https://github.com/sgl-project/sgl-project.github.io/issues/5. I did not realize the documentation content is generated, so it seems more likely the request belongs here... (?) The [documentation](https://docs.sglan...
0easy
Title: Add Support for Circular Gradients Body: Rio already ships with linear gradients, but circular gradients are conspicuously missing.
0easy
Title: [Feature]: Add Warning for Chat Template Mismatches similar to SGLang Body: I'm requesting a feature to add warnings when users supply a chat template that differs from the official template for a particular model. Currently, vLLM simply acknowledges the supplied template without alerting users to potential perf...
0easy
Title: ExportDialog Drawn Off Screen Body: Depending on the size of the scene the export dialog box can be drawn off or partially off screen. This is due to an implementation of the `show` command that allows moving the box to negative pixel indices. Problem Code: https://github.com/pyqtgraph/pyqtgraph/blob/a5f48ec...
0easy
Title: [New feature] Add apply_to_images to Equalize Body:
0easy
Title: Documentation - Update page titles to align better to writing style guide Body: Our writing style guide advises we should align with the Google developer documentation style guide. However, some page titles are still using an inconsistent style. * https://docs.wagtail.org/en/latest/contributing/documentation_gu...
0easy
Title: Add 'load new apps' admin action Body: Add an action in the django admin screen to create ORM model instances for stateless apps that are not already present.
0easy
Title: add links to cookbook/file-client in relevant sections in the docs Body: we recently added an example to use File clients, we should update the docs to link to the example wherever is relevant: https://github.com/ploomber/projects/tree/master/cookbook/file-client
0easy
Title: VOT Testing AssertionError: Body: I created VOT2018 folder and put VOT2018.json file inside, To do a quick check I run >> python -u ../../tools/test.py \ --snapshot snapshot/checkpoint_e5.pth \ --config config.yaml \ --dataset VOT2018 2>&1 | tee logs/test_dataset.log And got this error. >>...
0easy
Title: quokka.utils.paas broken in Python 3 Body: this file uses **execute** to activate a venv, find a solution for python3
0easy
Title: Default URL param value for Gravatar URL have been deprecated (`mm` -> `mp`) Body: ### Issue Summary We currently pass in `mm` to the `d` (default) param, this is used to determine what avatar will show if there's no matching avatar. However, the latest documentation advises that this should be `mp` (mystery pe...
0easy
Title: Duplicate JWT cookie descriptions Body: **Description** In the section for JWT auth & cookies, both `Lax` and `Strict` descriptions in README are the same. **Screenshots** ![image](https://github.com/igorbenav/FastAPI-boilerplate/assets/122524301/fc42b662-ccce-48f1-a353-e92e565da8e0)
0easy
Title: Unexpected exception while updating completions Body: <!--- Provide a general summary of the issue in the Title above --> When I set $UPDATE_COMPLETIONS_ON_KEYPRESS = True and type for instance /usr/bin/ls -a in terminal, following exception is thrown: "Exception [Errno 13] Permission denied: '/usr/bin/ls.json'...
0easy
Title: Improve automatic bin determination for histograms Body: Currently, the formula for histogram binning sometimes results in bins that are very "skinny" and sometimes bins that are very "wide". We need to improve histogram bin width and size determination to ensure more accurate histograms are plotted. This is e...
0easy
Title: Please support callback_on_step_end for following pipelines Body: **Is your feature request related to a problem? Please describe.** Missing callback_on_step_end in these pipeline takes away the capability to show the progress in UI **Describe the solution you'd like.** Please support callback_on_step_end **De...
0easy
Title: Change docstring style to google-style Body: Right now there is numpy-style in docstring. Please change to google-style (https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html) because I would like to integrate this doc with mkdocs-material and the only reasonable package to do this in autom...
0easy
Title: [Bug] fix DeepSeek V2/V3 awq Body: ### Checklist - [ ] 1. I have searched related issues but cannot get the expected help. - [ ] 2. The bug has not been fixed in the latest version. - [ ] 3. Please note that if the bug-related issue you submitted lacks corresponding environment info and a minimal reproducible d...
0easy
Title: [BUG-REPORT] Issue converting object to string Body: **Description** Trying to convert an "object" column to string fails. Example code: ```python import vaex import numpy as np if __name__ == "__main__": arr = np.array([123, "test", None], dtype=object) df = vaex.from_arrays(test=arr) d...
0easy
Title: Improve docs re suffixed responders Body: - [x] Add an example to the `suffix` kwarg docstring for `add_route()` - [x] Add a section about suffixed responders to the [routing](https://falcon.readthedocs.io/en/stable/api/routing.html) page
0easy
Title: Bus factor metric API Body: The canonical definition is here: https://chaoss.community/?p=3944
0easy
Title: Feature: Add ability to specify on_assign, on_revoke, and on_lost callbacks for a Confluent subscriber Body: **Is your feature request related to a problem? Please describe.** Yes, I want to know when my confluent Consumer gets topic partitions assigned and removed. Currently, I reach through FastStream into...
0easy
Title: Selecting Match phrase case to typed abbreviation also selects its opposite, Ignore case of typed abbreviation Body: ## Classification: Bug ## Reproducibility: Always AutoKey version: 0.95.10 Both If the problem is known to be present in more than one version, please list all of those. In...
0easy
Title: Process: Kill process if Robot's timeout occurs when waiting for process to end Body: Issue #5345 reported that Robot's timeouts weren't able to stop `Run Process` or `Wait For Process` keywords. That was fixed so that these keywords can be stopped, but processes that keywords were waiting for were left running....
0easy
Title: Marketplace - agent page - update font of description header Body: ### Describe your issue. <img width="598" alt="Screenshot 2024-12-17 at 18 53 43" src="https://github.com/user-attachments/assets/32fe7be0-ef3e-400b-a750-372381a8d177" /> Please update font to the "p-ui-medium" style in the typography sheet...
0easy
Title: [Reservations] Only waits for reservations Body: Reservations can be much cheaper than the on-demand instances, once a reservation is purchased for a future period of time, a user wants `sky launch` to only wait the reservation to be ready and launch the job, not risking to get an on-demand cluster with a much h...
0easy
Title: ImportError: cannot import name 'CLOSED' from 'websockets.connection' Body: ### Is there an existing issue for this? - [X] I have searched the existing issues ### Describe the bug We're using Sanic `21.12.2` at rasa and notice this bug whenever rasa tries to spin a sanic server, ``` File "/Users/zi/Work/R...
0easy
Title: Update configs to use `dataclasses` Body: We have some specific configs for some algorithms, will be nice to update them from using `dicts`/`TypedDict` to `dataclasses`. The idea here is to do it in a way that does not break things, so we should have an interface (to/from) between `dict` and the `dataclasses...
0easy
Title: Warn when chat.postMessage is called without `text` argument Body: It's a best practice to always provide a `text` argument when posting a message, even though the platform doesn't technically require it when `blocks` are provided. The `text` argument is used in places where `blocks` cannot be rendered such as: ...
0easy
Title: Add ResultMixin implementations for Dask native types Body: **Is your feature request related to a problem? Please describe.** We should implement useful implementations of: ```python class ResultMixin(object): """Base class housing the static function. Why a static function? That's because ce...
0easy
Title: CI: Add property-based testing Body: Let's adopt Quickcheck-style property-based testing throughout the library. # Details There are lots of opportunities in cleanlab to do property-based testing, because it has lots of functions where it's easy to write down a relational property about outputs that should...
0easy
Title: Fix the NPM_FILE_PATTERNS setting to work on windows Body: Instead of hardcoding the "/" to the entries `NPM_FILE_PATTERNS` you need to use `os.path.join`, as per: https://github.com/kevin1024/django-npm/issues/15 For example: ``` NPM_FILE_PATTERNS = { "a17t": [os.path.join("dist", "a17t.css"), os.pa...
0easy
Title: Explain how to force add raw data when small & necessary Body: Thanks to @epogrebnyak for reporting.
0easy
Title: leaderboard is showing negative values for f1 metric Body: when i run fit on tabular binary classification dataset i get the following leader board ![image](https://user-images.githubusercontent.com/101978729/198283721-88e00d9e-ecc7-4c3a-8e8d-5aa0bfb0dded.png) when i run model.report() it looks better , whe...
0easy
Title: Improve user method of seeing pipelines generated Body: Currently, the easiest way for a user to see the pipelines included in the ensemble is through `estimator.show_models()` which just returns a `str` which needs to be manually parsed and looked through. There could definitely be a nicer format to view any su...
0easy
Title: Implement `DataTree.persist` Body: > we're still missing an implementation for `DataTree.persist`, which I skipped mostly because I wasn't sure how to test that. _Originally posted by @TomNicholas in https://github.com/pydata/xarray/issues/9670#issuecomment-2435984448_
0easy
Title: Stress test repeated construction and fitting from same process Body: From issue #1302, it appears autosklearn is a bit unstable when run many times in the same script, i.e. in a for loop. ```python for i in range(400): automodel = AutoSklearn(full_resources) automodel.fit(x, y) ``` We currentl...
0easy
Title: Create page Themes Body: Create page themes for Quokka, http://quokkaproject.org/themes/ like http://opthemes.com/
0easy
Title: Show length error when Configs provided are too long Body: We should show an error when Configs provided are too long. This is overall part of the whole process of making the API more strict though.
0easy
Title: More convenient pagination support in SCIM / Audit Logs API clients Body: If it's possible I'd love for the SCIMClient's searches to be able to be paginated like the WebClient does with the SlackResponse. It looks like it could be done with the body returned. ### Category (place an `x` in each of the `[ ]`) ...
0easy
Title: Web Hook Rules check http headers in case sensitive manner Body: ## SUMMARY The case used for the header name in trigger.headers[<headername>] in a web-hook rule is treated in a case sensitive manner. HTTP headers are case insensitive so the case of the name in the headers should not e relevant. ### STACKS...
0easy
Title: disabled prop for dcc.Interval is not used. Body: We have a `disabled` prop in the prop type definition of the Interval component, but it is not actually used by the code to disable the interval. Either remove it as we have the max_intervals=0 logic to stop the interval or make it stop the interval. https://c...
0easy
Title: Fedora 41 compatibility — imghdr removed with python 3.13. 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 rat...
0easy
Title: Support for setting partitioned cookies Body: ### Is your feature request related to a problem? I need to use partitioned cookies to set cookies in contexts where third-party cookies are otherwise restricted. ### Describe the solution you'd like A recent addition to the Set-Cookie header is the ability to mar...
0easy
Title: [BUG] Error for pandas memoization is confusion Body: **Describe the bug** A user asked questions about the following error: ``` Failed memoization speedup attempt due to Pandas internal hash function failing. Continuing without memoization speedups ``` We can give a more constructive response like `....
0easy
Title: e_forward() not returning results without IDs named 'src' and 'dest' Body: **Describe the bug** Customer reported bug with GFQL's e_forward() not returning the correct results unless the edge df IDs are named 'src' and 'dest' **To Reproduce** ``` import graphistry import pandas as pd from graphistry...
0easy
Title: [UI][XXS] Make the logo in the sidebar have rounded edges Body: **Description:** Update the logo in the sidebar to have rounded edges for a smoother appearance. The logo is defined in the following file and line: [Sidebar.jsx](https://github.com/StructuredLabs/preswald/blob/4a04b97229185e6bc22117e0c947196f60...
0easy
Title: Improve the builder "add block" placement algorithm Body: We need a way to place blocks when you add them so that it doesn't move your screen when placing a block if there is no space and don't change the zoom level
0easy
Title: Add flag to only use already cached blocks Body: Allow users to specify the caching dir for the model's blocks **BONUS:** add flag to only use already cached blocks, excluding those which are not already on the server
0easy
Title: Set `timeout-minutes` Body: ### Summary It's a good practice to always set `timeout-minutes` for github actions workflows to fail fast when a hang occurs: ```diff diff --git a/.github/workflows/maintainer-approval.yml b/.github/workflows/maintainer-approval.yml index 083cff6ce..6bd5816f5 100644 --- a/.g...
0easy
Title: Incorrect AUC value in CatBoost chart with sample_weight Body: I trained a dataset with sample weight using 3 algos: LightGBM, Xgboost, and CatBoost. I found that the learning curve chart for CatBoost doesn't take into account the sample weight but the score in the table does. Maybe you forgot to put sample_we...
0easy
Title: Collation support Body: Collation is still missing from ODMantic, I'm pretty sure implementing this would help a lot of users! ### Discussed in https://github.com/art049/odmantic/discussions/157 <div type='discussions-op-text'> <sup>Originally posted by **tylovejoy** July 13, 2021</sup> I use `find()...
0easy
Title: docs incorrects for 'how to customize templates' section Body: Hi there! There is an error in the docs, specifically in the [how to customize templates section].(https://django-oscar.readthedocs.io/en/2.1.0/howto/how_to_customise_templates.html) According to issue #1378, the _base.html_ mentioned in the ex...
0easy
Title: Add `Toggle 2D/3D` to the View menu Body: ## 🧰 Task The View menu should include the ability to toggle 2D/3D mode. Adresses part of https://github.com/napari/napari/issues/7611 because then this will be available in the command palette.
0easy
Title: one hot encoder of frequent categories should capture top categories with similar number of observations Body: At the moment the OHE will create binary variables for the top k categories with most observations. However, if 2 categories should have similar number of observations, only 1 of them will be encoded an...
0easy