text
stringlengths
20
57.3k
labels
class label
4 classes
Title: Add support for distinct to filter duplicate content in one field Body: ## Problem Some task requires me to search for orphaned records in database. For example, I have two table, one has reference to the other, and I seek the element on one table that have no item on the other table that reference it. For th...
1medium
Title: Improve error message when running prisma with an outdated client Body: ## Problem When upgrading to a newer version of prisma python client - let's say, 0.13.1 to 0.14.0, if you forget to run `prisma generate` again, you'll get an error message like this > File "/Users/adeel/Documents/GitHub/my-project/...
1medium
Title: [FEATURE] Support `jsonschema` 4.18.0+ Body: **Is your feature request related to a problem? Please describe.** As of v4.18.0, `jsonschema` emits the following warnings: ``` DeprecationWarning: jsonschema.exceptions.RefResolutionError is deprecated as of version 4.18.0. If you wish to catch potential refe...
1medium
Title: Profile memory usage Body: I have got simple test (with LOOP to reproduce my problem): ``` *** Test Cases *** Mem Leak Log Start Sleep ... console=${True} Sleep 3s ${l} = Create List FOR ${i} IN RANGE ${30000} ${a} = Set Variable XXX END Log End Test ... console=${True}...
1medium
Title: Deprecate setting tags starting with a hyphen like `-tag` in `Test Tags` Body: The plan is to allow using the `-tag` syntax in `Test Tags` like ```robotframework *** Settings *** Test Tags -example ``` for removing tags set earlier, for example, in suite initialization files or by using the `--set-...
1medium
Title: Add type hints to parsing API Body: At least `get_tokens`, `get_model`, and their resource and init file variants need to get type hints and adding them is easy. Adding types to the whole parsing module would be good too, but that may be too much work for RF 6.1. If it is, a separate issue about that should be s...
1medium
Title: Add support for more options in `update` and `update_many` nested types Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> There a couple of open TODOs for missing fields for these types, https://github.com/RobertCraigie/prisma-client-py/b...
1medium
Title: Make Robot Framework compatible with `zipapp` Body: Hi, as just shown at the open space after applying some small changes, we can have zipapps that do contain a viable robotframework installation. There is a pull request for this feature. https://github.com/robotframework/robotframework/pull/4612 Bes...
1medium
Title: Improve import error message when the client is imported before generation Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Currently it may not be immediately clear to users that they have to run `prisma generate` when they encounter th...
1medium
Title: Websocket invalid upgrade exception handling b0rkage Body: ### Is there an existing issue for this? - [X] I have searched the existing issues ### Describe the bug A client apparently sent no Upgrade header to a websocket endpoint, leading to an error as it should. An ugly traceback is printed on terminal even...
1medium
Title: Warn if the client is instantiated with an outdated schema Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> If this warning was present it would've made #180 easier for the user to solve by themselves. ## Suggested solution <!-- A clear an...
1medium
Title: [DOC] `groupby_agg` naming and documentation Body: `groupby_agg` is possible to implement with method-chaining in native pandas, contrary to what the documentation seems to imply; native pandas would use `groupby(...).transform`, e.g. ```python df = df.assign(new_column=lambda x: x.groupby("col")["col_to_agg"]...
1medium
Title: Hook to optionally skip specific failures Body: Users sometimes encounter errors during testing that they don't wish to address for various reasons, like server issues out of their control. Current options like disabling checks lack the required granularity, and Schemathesis halts on these failures, disrupting t...
1medium
Title: Support Prisma TS's `findUniqueOrThrow` Body: ## Problem Often when fetching a model by ID I expect the result not to be `None`. If for some reason it is, an error should be raised, rather than always returning an optional type which needs a manual guard. ## Suggested solution Follow the pattern from th...
1medium
Title: All iterations of templated tests should be executed even if one is skipped Body: In the documentation, it is written that : > Templated tests are also special so that all the rounds are executed even if one or more of them fails. It is possible to use this kind of [continue on failure](https://robotframework...
1medium
Title: Support inline flags in test cases Body: Currently, our test cases are executed with different flags based on some combination of their filename and what directory they are in. I would prefer a system where we define the flags in a directive inline, e.g. like this: ``` # flags: --target-version=py38 --previe...
1medium
Title: Add support for PyPy Body: - [ ] Run tests using PyPy - [ ] Add PyPi classifiers mentioning support
1medium
Title: Recognize library classes decorated with `@library` decorator regardless their name Body: project structure: ``` shell my_module sub_module lib.py __init__.py __init__.py test.robot ``` `lib.py` ``` python from robot.api.deco import library, keyword @library(scope="GLOBAL") ...
1medium
Title: [TST] Investigate Windows Build Body: # Brief Description The Windows build never fails when it should. #738 comments out the windows build in `.azure-pipelines/pipeline-master.yml` so that it doesn't run until properly debugged. # Notes - This issue is a placeholder for reminding the dev team to debug the ...
1medium
Title: Feature: Add get_selection() to MycroftSkill class Body: A common need for Skill developers is to present a list of options to the user and ask them to make a selection. This is possible using a combination of existing methods, however it requires each developer to work out their own pattern. Adding a standard m...
1medium
Title: CLI is not thread-safe Body: <!-- Thanks for helping us improve Prisma Client Python! 🙏 Please follow the sections in the template and provide as much information as possible about your problem, e.g. by enabling additional logging output. See https://prisma-client-py.readthedocs.io/en/stable/reference/loggi...
1medium
Title: Cache Control: Conditional Request and 304 Response Support Body: A previous [PR](https://github.com/sanic-org/sanic/pull/2447) provides `cache-control` HTTP header to `file` function in Sanic, but the best practice is to also implement the etag and the file validator. **Correct me if I am wrong:** With cach...
1medium
Title: Implement Detection Error Tradeoff Curves (DET) Visualizer Body: A community suggestion from reddit, implement a DET curve visualizer for model comparison. From [wikipedia](https://en.wikipedia.org/wiki/Detection_error_tradeoff): `A detection error tradeoff (DET) graph is a graphical plot of error rates fo...
1medium
Title: New API for using named arguments programmatically Body: RF 7.0 attempted to provide a more convenient API for setting keyword arguments programmatically (#5000). The idea was to both support named arguments with non-string values and to avoid the need for escaping `\` and other special characters in strings. Un...
1medium
Title: Add support for batching raw queries Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> This is currently not supported. ## Suggested solution <!-- A clear and concise description of what you want to happen. --> It is unknown if P...
1medium
Title: Libdoc doesn't handle parameterized types like `list[int]` properly Body: Like in Browser lib, `List[Permission]` or `Dict[str, int]`. See https://marketsquare.github.io/robotframework-browser/Browser.html#New%20Context
1medium
Title: Make result file paths hyperlinks on terminal Body: Terminal emulators nowadays support hyperlinks pretty well.The [standard emerged in 2017](https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda) and the current list of [supporting terminal emulators](https://github.com/Alhadis/OSC8-Adoption/?tab=r...
1medium
Title: `Async for` can be used to iterate over a websocket's incoming messages Body: **Is your feature request related to a problem? Please describe.** When creating a websocket server I'd like to use `async for` to iterate over the incoming messages from a connection. This is a feature that the [websockets lib](htt...
1medium
Title: Collapse long failure messages in log and report Body: Currently long failure messages (over 40 lines by default, configurable with `--max-error-lines` (#2576)) are cut from the middle. This is done to avoid huge messages messing up logs and reports, but the problem is that some valuable information may be lost....
1medium
Title: [BUG/ENH] deconcatenate_columns should inform users how many columns need to be provided Body: Currently, an `AssertionError` is raised if the number of columns provided to `new_column_names` is not correct, and the error message is not very informative, stating only, "number of new column names not correct." ...
1medium
Title: Use `jsonschema.Draft202012Validator` in response validation for Open API 3.1 Body: > Hey @Stranger6667! > Since Schemathesis does support `jsonschema` >= 4, would it make sense at least for the time being to make `validate_response` support 3.1 by using `jsonschema.Draft202012Validator`? Maybe as a configurabl...
1medium
Title: Handler would be modify after wrapped by `app.route` Body: **Is your feature request related to a problem? Please describe.** Handler would be modify after wrapped by `app.route` ```python from sanic import Sanic from sanic.response import text app = Sanic("test") @app.get("/") def get(request):...
1medium
Title: Give local keywords in resource files precedence over keywords in test case files Body: Currently if you have a test case file like ```robotframework *** Settings *** Resource example.resource *** Test Cases *** Example Keyword 1 *** Keywords *** Keyword 2 Log Keyword in test cas...
1medium
Title: Allow setting variables with TEST scope in suite setup/teardown (not visible for tests or child suites) Body: **Description** For better readability, I sometimes use variables with TEST scope, which allows passing a value to multiple keywords within a single test, ensuring that the value is not misused in anoth...
1medium
Title: Report syntax errors better in log file Body: Currently when you have an invalid setting like `[Setpu]` in a test (or keyword, or task), error is reported on the console, but the test is nevertheless executed and in the log file the invalid setting isn't visible under the test at all. This isn't great. It would ...
1medium
Title: Add support metric to ClassificationReport Body: Currently, the ClassificationReport omits support because it is difficult to put into the heatmap scale of (0.0, 1.0). We should still include it, however and _color_ it as the percent of the total number of records, while _labeling_ it with the actual support num...
1medium
Title: Extend the InterclusterDistance visualizer Body: The `InterclusterDistance` visualizer is our newest cluster visualization, and while it's been implemented completely, there are still a few updates I'd like to make to it: - [ ] Ensure it works for a large range of clustering algorithms (and remove skipped tes...
1medium
Title: Listeners cannot set timeouts Body: **Description:** I want to use a Robot Framework listener to dynamically set the execution time for each test case during test execution. For example, in a CI scenario, I can define a total execution time, and during the Robot Framework run, dynamically adjust the remaining ex...
1medium
Title: Failed imports should fail suite they belong to Body: We encountered follwoing scenario while using a custom library: (RF 6.0, Python 3.10.8) When the initialization of the custom library fails, the test execution is continued until the first keyword provided by that library is used. The result is a rather misl...
1medium
Title: [INF] Don't require column name arguments to be strings Body: It occurs to me that there are methods within `pyjanitor` that require column name method arguments to be strings (specified in the docs and/or validated in the actual code). Examples are `engineering.convert_units()` and the two methods in the finan...
1medium
Title: Extend PCA Visualizer with Component-Feature Strength Body: **Describe the solution you'd like** Provide an optional heatmap and color bar underneath the PCA visualizer (by shifting the lower axes) that shows the magnitude of each feature value to the component. This provides an explanation of which features ...
1medium
Title: Add basic testcases for the audioservice interface Body: Add tests for the [audioservice](https://github.com/MycroftAI/mycroft-core/blob/dev/mycroft/skills/audioservice.py) interface for skills. Basically the tests need to create a mock bus and create the audioservice with ```python bus_mock = Mock()` as...
1medium
Title: Problems with non-string arguments when using `BuildIn.run_keyword` Body: When using `BuildIn.run_keyword` the (positional) arguments that follow the target keyword name should be passed to the keyword "as is". A change in RF7 changed this behavior in a specific situation; if there are (exactly) 2 positional ...
1medium
Title: Result model: Loudly deprecate not needed attributes and remove already deprecated ones Body: The result model (`robot.result.TestSuite`) got separate objects for representing control structures (`For`, `If`, ...) only in RF 4.0 (#3749). Before that control structures were modeled as keywords with a `type` attri...
1medium
Title: Support setting values for child suites with `VAR` syntax using `scope=SUITES` Body: The current VAR syntax does not support the children argument offered by the `Set Suite Variable` Keyword. https://robotframework.org/robotframework/latest/libraries/BuiltIn.html#Set%20Suite%20Variable ``` Set Suite Varia...
1medium
Title: Keyword timeout is not effective in teardown if keyword uses `Wait Until Keyword Succeeds` Body: When using `Wait Untless Keyword Succeeds` in test teardown, it is possible to have much longer execution time than allowed by the "user keyword timeout". In practice, in teardown, `Wait Untless Keyword Succeeds` ...
1medium
Title: Docs: showcase converting raw JSON into a structured type Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> https://discord.com/channels/933860922039099444/933898994923470848/1132948924915777556 ## Suggested solution <!-- A clear an...
1medium
Title: Libdoc's default language selection does not support all available languages Body: The CLI help and input validation only allow FI, and EN as input for the `--language` switch, but more languages are currently available. Ideally this should be dynamic, but at least both the helptext for libdoc language switch a...
1medium
Title: Failure in suite setup initiates exit-on-failure even if all tests have skip-on-failure active Body: ### Summary I am running `robot` with `--skiponfailure skip-on-failure` and `--exitonfailure`. Test cases I expect to fail are tagged with `skip-on-failure`. The behavior I desire the following: * If a failur...
1medium
Title: [DOC] Create release docs Body: This issue is to remind myself to create docs for doing releases. Quoting from @hectormz: ----- 🤙🤙 @ericmjl I think in the checklist after `bumpversion` we can add: ``` git push <remote> <branch> --follow-tags ``` which according to this [SO answer](https://st...
1medium
Title: [Actions][7.x] Move saved object fields to references for action_task_params Body: Relates to https://github.com/elastic/kibana/issues/100067 To prepare for the upcoming saved object ID migration, we need to move saved object fields to use references properly so the 8.0 migration will automatically update the...
1medium
Title: Rename code and files to use new rule terminology Body: This issue covers the last part of https://github.com/elastic/kibana/issues/90375 for the new rule terminology. We should go through our codebase and change it to reflect the new terminology of rule.
1medium
Title: Remove deprecated alert HTTP APIs Body: This issue covers the fifth part of https://github.com/elastic/kibana/issues/90375. We should remove any deprecated alert APIs when telemetry from https://github.com/elastic/kibana/issues/108716 shows usage is below 1% or deprecated for > 2.5 years (see: https://github.com...
1medium
Title: Remove deprecated action HTTP APIs Body: This issue covers the fifth part of https://github.com/elastic/kibana/issues/90375. We should remove any deprecated action APIs when telemetry from https://github.com/elastic/kibana/issues/108716 shows usage is below 1% or deprecated for > 2.5 years (see: https://github.c...
1medium
Title: Further tweak the alerting functional test to use limited privileges. Body: As a follow up to https://github.com/elastic/kibana/pull/88727, we could further tweak this test to use limited set of privileges ( roles) assigned to the `test_user` instead of giving it `all` . Here is a Meta issue linked for this eff...
1medium
Title: The Actions terminology in the code has diverged from the terminology we use verbally and in the UI Body: This issue covers the last part of https://github.com/elastic/kibana/issues/90375 for the new rule terminology. We should go through our codebase and change it to reflect the new terminology of connector. ...
1medium
Title: Add UI test to ensure each alert and action type renders in the management app's create flyout Body: Sometimes a new alert or action type is added to the front-end registry and doesn't render in the management app's create flyout (causing errors to be thrown). Adding a UI test that ensures the create flyout will...
1medium
Title: [Alerting] We do not have E2E Tests under Basic license Body: We have several features that are specific to limited licensing, such as a banner on the Connectors flyout, encouraging users to start a trial or look at our subscriptions pages. We do not currently have a config for the functional tests suite thou...
1medium
Title: Create alert and actions security only test suite Body: Cleanup the test suites at the same time. Make it easier to create documents in different spaces when in `security_and_spaces` mode. Also handle scenario from: https://github.com/elastic/kibana/pull/52967#discussion_r357828034 where we have pre-created s...
1medium
Title: Remove the restriction that tier 0 alias has to be "MEM" Body: **Summary** There are some assumptions about our tier 0 alias being "MEM", we should not rely on that.. **Urgency** not urgent
1medium
Title: Inline exception messages inside ExceptionMessage.java and remove this class Body: **Summary** In Alluxio source code, there is `ExceptionMessage.java` which is only used to contain a lot of exception messages. This was initially aim to help Unit Tests to avoid hard-code exception strings in the tests but usi...
1medium
Title: Alluxio documentation defects Body: **Summary** This pinned issue is a running list of all documentation defects. If you find any defects or have any suggestions to our documentation site (https://docs.alluxio.io), you can also post under this issue. Maintainers will periodically clean up issues listed her...
1medium
Title: Add verbose mode to fs mount Body: **Is your feature request related to a problem? Please describe.** When mounting an UFS, a list of UFS factories are checked to find one supporting this specific UFS. If none is found working with this UFS, then an warning will be printed `LOG.warn("No factory implementation s...
1medium
Title: Refactor SetAttribute API Body: **Summary** https://github.com/Alluxio/alluxio/pull/9460 was a workaround. As a long term solution, we should separate `setAttribute` API into 1. APIs change Alluxio and UFS both, e.g., `chmod`, `chgrp` and `chown` and 2. APIs change attribute that apply to Alluxio only ...
1medium
Title: Add documentation to explain more on "Safe Mode" Body: **Summary** When seeing messages like "alluxio.exception.status.UnavailableException: Alluxio master is in safe mode. Please try again later.", users don't know what it means and how to resolve it **Urgency** Median
1medium
Title: Remove unknown block size logic Body: **Is your feature request related to a problem? Please describe.** Unknown block sizes are no longer required. **Describe the solution you'd like** Remove unknown block size logic. **Describe alternatives you've considered** **Urgency** Adds unnecessary code to t...
1medium
Title: Use JCommander for CLI opts parsing Body: **Is your feature request related to a problem? Please describe.** CLI opts parsing is not consistent across different Alluxio modules. Both `jcommand` and `commons-cli` are used. Proposing to use `jcommand` consistently across modules. **Describe the solution you'...
1medium
Title: Make recursive options consistent in the filesystem shell Body: **Is your feature request related to a problem? Please describe.** We should try to make the usage and options in our filesystems shell mirror the most commonly used commands. For this issue I'm specifically requesting that options dealing with r...
1medium
Title: Strange margin in the Mesh-ish material. Body: ![ASUS1](https://user-images.githubusercontent.com/42407840/136804377-434ac274-05cc-490c-9c58-08c35c514e01.jpg) ![output1](https://user-images.githubusercontent.com/42407840/136804398-e51d852f-feb6-409e-866e-9bf28f7f62fd.png) Using realesrgan-x4plus-anime. The s...
2hard
Title: API Discussion for Figures and Axes Body: This issue is to discuss the open letter regarding Yellowbrick's API roadmap. To summarize, we currently attempt to only manage matplotlib `Axes` objects so that visualizers can be embedded into more complex plots and reports. However, many of our visualizers are getting...
2hard
Title: [FEATURE] Negative tests for GraphQL Body: ### Checklist - [x] I checked the [FAQ section](https://schemathesis.readthedocs.io/en/stable/faq.html#frequently-asked-questions) of the documentation - [x] I looked for similar issues in the [issue tracker](https://github.com/schemathesis/schemathesis/issues) - [...
2hard
Title: Use function summaries instead of inlining Body: We [currently use inlining instead of summaries](https://github.com/python-security/pyt/tree/master/pyt/cfg), for inter-procedural analysis, which makes PyT slower than it needs to be. Here are some videos, specifically the last one, explains function summarie...
2hard
Title: Caption-Based Image Retrieval Model Body: We want to implement the Caption-Based Image Retrieval task from https://api.semanticscholar.org/CorpusID:199453025. The [COCO](https://cocodataset.org/) and [Flickr30k](https://www.kaggle.com/hsankesara/flickr-image-dataset) datasets contain a large number of images ...
2hard
Title: PCA projections on biplot are not clear for datasets with large number of features Body: **Problem** The PCA projections visualized on a biplot are not clear, and various feature's projection can be seen to overlap with each other when working with a dataset with a large number of features. e.g. with credit dat...
2hard
Title: Mapped columns cannot be used with type safe raw queries Body: <!-- Thanks for helping us improve Prisma Client Python! 🙏 Please follow the sections in the template and provide as much information as possible about your problem, e.g. by enabling additional logging output. See https://prisma-client-py.readth...
2hard
Title: Improve partial model generation API for dynamic creation Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> A user on the Prisma Python discord showcased their partial model generator which is highly dynamic and makes use of internal feat...
2hard
Title: Really remove the 10000-token limit in [Word2Vec, FastText, Doc2Vec] Body: The *2Vec models have an underdocumented implementation limit in their Cython paths: any single text passed to training that's more than 10000 tokens is silently truncated to 10000 tokens, discarding the rest. This may surprise users with...
2hard
Title: Expand List input types Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Our query input types use `List` (e.g. `{'string': {'not_in': ['a', 'b']}}`), this severely limits the types that users can pass to these methods. We should aim to ...
2hard
Title: Feature Parity with the TypeScript Client Body: - [ ] #10 - [x] #19 - [ ] #25 - [ ] #26 - [ ] #27 - [x] #28 - [ ] #31 - [x] #39 - [x] #42 - [x] #52 - [x] #53 - [x] #54 - [ ] #64 - [ ] #76 - [ ] #103 - [x] #106 - [ ] #107 - [x] #134 - [ ] #314 - [x] #434 - [ ] #676 - [ ] #714 - [x] #719 ...
2hard
Title: Libdoc: Support documentation written with Markdown Body: It seems this was [discussed briefly back in 2016](https://github.com/robotframework/robotframework/issues/2476) but I wanted to see if there was any thoughts on supporting the Markdown format for Libdoc in 2015. With Markdown being the preferred(curre...
2hard
Title: Add support for inline conditionals for query building Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Currently it is annoying to write update mutation data with conditional inputs, for example: ```py data: UserUpdateInput = {} if...
2hard
Title: Add `MATCH/CASE` syntax similarly as in Python Body: Hello everyone, I would like to suggest to add match statement in robot framework. Match statement is support in python [Match Statement](https://docs.python.org/3/tutorial/controlflow.html#match-statements) This suggestion is to add another method b...
2hard
Title: Improve type checking experience using a type checker without a plugin Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> For example, using `pyright` to type check would result in false positive errors that are annoying to fix when includ...
2hard
Title: Support raw query methods with MongoDB Body: # Problem The internal `executeRaw` and `queryRaw` methods are not available when using MongoDB, we should not include them in the generated client.
2hard
Title: [Doc][Dashboard] Add Documentation about TPU Logs Body: ### Description Tracking issue to add documentation about libtpu logs written to `/tmp/tpu_logs` and how they're exposed on the Ray dashboard. ### Link Related PR: https://github.com/ray-project/ray/pull/47737 The documentation should be added to the ge...
2hard
Title: Referring Expressions with COCO, COCO+, and COCOg Body: In the referring expressions task, the model is given an image and an expression, and has to find a bounding box in the image for the thing that the expression refers to. Here is an example of some images with expressions: <table width="100%"> <tr> <t...
2hard
Title: Validate query arguments using pydantic Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Currently if any invalid arguments are passed then a very verbose and potentially confusing error message is raised, for example: ```prisma mode...
2hard
Title: VersionStore: Incorrect number of segments without daterange Body: #### Arctic Store ``` VersionStore ``` #### Description of problem and/or code sample that reproduces the Reading a symbol from VersionStore causes an error like: OperationFailure: Incorrect number of segments returned for XXX. Ex...
2hard
Title: Train a region detector on the features from Visual Genome Body: This is a project in computer vision, rather than natural language processing. It is here because we have found this `RegionEmbedder` to be important for down-stream tasks that combine vision and language features. In AllenNLP, `RegionDetector`s...
2hard
Title: Use strongly typed IDs Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Currently the following code (given that user and post have the same type for their ID field) will type check but is an obvious logical error: ```py post = await...
2hard
Title: Responsive design rendering issue Body: Renders like sh*t. logged in as admin http://demo.quokkaproject.org/admin/contentview/ ![2013-11-09 23 19 07](https://f.cloud.github.com/assets/1472728/1507300/dd469694-4973-11e3-8714-e3d6a499d8c1.png)
2hard
Title: Optimize iterative tiling via pruning intermediate chunks Body: <!-- Thank you for your contribution! Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue. --> ## Background Iterative tiling is used during `tile` of an operand when the input tileable ...
2hard
Title: Scope Management Body:
2hard
Title: ProjectionVisualizer: unifying functionality of PCA and Manifold Body: One of the basic high-dimensional visualization techniques that Yellowbrick makes use of is to decompose or project a high dimensional space into 2 or 3 dimensions to display the data as a scatter plot. Projections of this kind reduce the amo...
2hard
Title: Consider supporting multiple data container frameworks Body: ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> - Some users may not be fans of pydantic and would prefer to use a different data container framework. - Some frameworks may not be ...
2hard
Title: Supporting static graphics rendering Body: Scatterplots with large number of data points take a disproportionately long time to render on the frontend, due to the large number of points we have to draw. We should explore other rendering options that are faster, even if that means that the visualizations are non...
2hard
Title: [FEATURE] Display progress on all API operations simultaneously when multiple workers are used Body: ### Checklist - [x] I checked the [FAQ section](https://schemathesis.readthedocs.io/en/stable/faq.html#frequently-asked-questions) of the documentation - [x] I looked for similar issues in the [issue tracker](h...
2hard
Title: Installer for Quokka Package Index qpi Body: There is a new repo https://github.com/quokkaproject/qpi we need to develop a command line app ``` pip install quokka-installer ``` Now user can use this to install themes and modules ``` quokka-installer install theme material ``` The above code reads qpi/themes...
2hard
Title: Provide cython compiled wheels Body:
2hard
Title: Revisit save/load architecture Body: _Originally posted by @gojomo in https://github.com/RaRe-Technologies/gensim/issues/3065#issuecomment-793064538_ > My understanding is that pickle v5 has the hooks needed for the sort of custom-separate-serialization of things like numpy arrays, but it's not yet automatic/...
2hard