text stringlengths 20 57.3k | labels class label 4
classes |
|---|---|
Title: Adding Example for FastApi OpenAPI documentation
Body: ## Problem
Currently for my pydantic models, I use the example field to document FastAPI:
` = Field(..., example="This is my example for SwaggerUI")`
## Suggested solution
Would it be possible through comment in the schema.prisma to add these exa... | 1medium |
Title: [Call for contributions] help us improve LoKr, LoHa, and other LyCORIS
Body: Originally reported by @bghira in https://github.com/huggingface/peft/issues/1931.
Our LoKr, LoHA, and other LyCORIS modules are outdated and could benefit from your help quite a bit. The following is a list of things that need mo... | 1medium |
Title: Incorrect CBOW implementation in Gensim leads to inferior performance
Body: #### Problem description
According to this article https://aclanthology.org/2021.insights-1.1.pdf:
<img width="636" alt="Screen Shot 2021-11-09 at 15 47 21" src="https://user-images.githubusercontent.com/610412/140945923-7d279468-a... | 1medium |
Title: Manifold Feature Engineering
Body: 
Currently we have a t-SNE visualizer for text, but we can create a general manifold learning visualizer for projecting high dimensional data into 2 dimensions that respect non-... | 1medium |
Title: [BUG] --report flag without arguments is broken.
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/... | 1medium |
Title: connect() fails if /etc/os-release is not available
Body: ## Bug description
App fails if `/etc/os-release` is missing.
## How to reproduce
```
sudo mv /etc/os-release /etc/os-release.old
#start app
````
## Environment & setup
<!-- In which environment does the problem occur -->
- OS: Cloud ... | 1medium |
Title: Consider renaming root `OR` query to `ANY`
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
The root `OR` part of a query can be confusing: https://news.ycombinator.com/item?id=30416531#30422118
## Suggested solution
<!-- A clear a... | 1medium |
Title: Change "alpha" parameter to "opacity"
Body: In working on issue #558, it's becoming clear that there is potential for naming confusion and collision around our use of `alpha` to mean the opacity/translucency (e.g. in the matplotlib sense), since in scikit-learn, `alpha` is often used to reference other things, ... | 1medium |
Title: Remove old datasets code and rewire with new datasets.load_* api
Body: As a follow up to reworking the datasets API, we need to go through and remove redundant old code in these locations:
- [x] `yellowbrick/download.py`
- [ ] `tests/dataset.py`
Part of this will be a requirement to rewire tests and exa... | 1medium |
Title: Add typing to all modules under `robot.api`
Body: Currently, the `@keyword` and `@library` functions exposed through the `robot.api` module have no annotations. This limits the type-checking that tools like mypy and Pylance / pyright can perform, in turn limiting what types of issues language servers can detect.... | 1medium |
Title: [BUG] Optimization that compacts multiple filters into `eval` generates unexpected node in graph
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Describe the bug**
Optimization that compacts mult... | 1medium |
Title: Allow ModelVisualizers to wrap Pipeline objects
Body: **Describe the solution you'd like**
Our model visualizers expect to wrap classifiers, regressors, or clusters in order to visualize the model under the hood; they even do checks to ensure the right estimator is passed in. Unfortunately in many cases, pass... | 1medium |
Title: Provide a JSON Schema generator
Body: ## Problem
This would be useful as a real world example of a custom Prisma generator.
It could also help find any features we could add that would make building custom Prisma generators easier.
## Additional context
This has already been implemented in TypeScript: https:... | 1medium |
Title: Allow removing tags using `-tag` syntax also in `Test Tags`
Body: `Test Tags` from `*** Settings ***` and `[Tags]` from Test Case behave differently when removing tags: while it is possible to remove tags with Test Case's `[Tag] -something`, Settings `Test Tags -something` introduces a new tag `-something`.
... | 1medium |
Title: Add fail-safe for downloading binaries.
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
Whenever I wish to run the prisma command after installation, it will download binaries. Whenever I CTRL+C the task through the download process. It w... | 1medium |
Title: Word2vec: loss tally maxes at 134217728.0 due to float32 limited-precision
Body:
<!--
**IMPORTANT**:
- Use the [Gensim mailing list](https://groups.google.com/forum/#!forum/gensim) to ask general or usage questions. Github issues are only for bug reports.
- Check [Recipes&FAQ](https://github.com/RaRe-Tech... | 1medium |
Title: Add optional typed base classes for listener API
Body: Issue #4567 proposes adding a base class for the dynamic library API and having similar base classes for the listener API would be convenient as well. The usage would be something like this:
```python
from robot.api.interfaces import ListenerV3
class Li... | 1medium |
Title: [BUG] Failed to create Mars DataFrame when mars object exists in a list
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Describe the bug**
Failed to create Mars DataFrame when mars object exists ... | 1medium |
Title: Propose using `$var` syntax if evaluation IF or WHILE condition using `${var}` fails
Body: A common error when evaluating expressions with IF or otherwise is using something like
```
IF ${x} == 'expected'
Keyword
END
```
when the variable `${x}` contains a string. Normal variables are resolved _befo... | 1medium |
Title: Stacked bar plots helper function
Body: Create a helper function in the `yellowbrick.draw` module that can create a stacked bar chart from a 2D array on the specified axes. This function should have the following basic signature:
```python
def bar_stack(data, ax=None, labels=None, ticks=None, colors=None, **... | 1medium |
Title: [Documentation]: More FastAPI examples and clearer ASGI/WSGI sections
Body: Our documentation currently falls short in providing comprehensive examples for FastAPI and ASGI. This gap has led to user confusion. Additionally, the WSGI & ASGI topics are combined in a way that muddles the information.
### Propose... | 1medium |
Title: Add support for middleware
Body: [https://www.prisma.io/docs/concepts/components/prisma-client/middleware](https://www.prisma.io/docs/concepts/components/prisma-client/middleware)
```py
client = Client()
async def logging_middleware(params: MiddlewareParams, next: NextMiddleware) -> MiddlewareResult:
... | 1medium |
Title: Using aggregation instead of transform to perform `df.groupby().nunique()`
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
Now, `df.groupby().nunique()` would be delegated to `transform` to perform ex... | 1medium |
Title: [BUG] NameError raised when comparing string inside agg function.
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Describe the bug**
NameError raised when comparing string inside agg function.
*... | 1medium |
Title: Audit usage of `Any` throughout the code base
Body: Currently there are a couple of places that we use `Any` when we should instead use a more accurate type or just fallback to `object`. For example, the `DataError` class, https://github.com/RobertCraigie/prisma-client-py/blob/5fe90fa3e09918f289aab573cdce79985c2... | 1medium |
Title: Make it possible for custom converters to get access to the library
Body: Custom converters are a handy feature added in RF 5.0 (#4088). It would be convenient if converters would be able to access the library they are attached to. This would allow conversion to be dependent on the state of the library or the au... | 1medium |
Title: Script to autogenerate images in docs
Body: Currently in our `docs` folder, we have code that generates png files to be used in the generated docs. It would be helpful to have a script to generate images and save them in the appropriate folder location.
related to: https://github.com/DistrictDataLabs/yellowb... | 1medium |
Title: Maximize whitespace with feature-reordering optimization in ParallelCoordinates and RadViz
Body: Both `RadViz` and `ParallelCoordinates` would benefit from increased whitespace/increased transparency that is achieved simply by recording the columns around the circle in `RadViz` and along the horizontal in `Paral... | 1medium |
Title: Request: Add Flash Attention 2.0 Support for ViTMAEForPreTraining
Body: Hi Hugging Face team!
I am currently working on pre-training a Foundation Model using ViTMAEForPreTraining, and I was hoping to use Flash Attention 2.0 to speed up training and reduce memory usage. However, when I attempted to enable Flash ... | 1medium |
Title: [FEATURE] graphql not required handling
Body: Currently when fields in graphql schemas are not required, schemathesis can send `null` to them.
According to the graphql specs this is valid and it is useful to find bugs.
But sometimes it would be easier to not send null values
Is there a way to turn the nul... | 1medium |
Title: [BUG] index out of range when using Mars with XGBOOST
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Describe the bug**
IndexError: list assignment index out of range
**To Reproduce**
To he... | 1medium |
Title: add Flash Attention Support for Helsinki-NLP/opus models
Body: ### Feature request
I would like to propose adding support for flash attention to the Helsinki-NLP/opus models in the Hugging Face library. Judging by what I am seeing [here](https://github.com/huggingface/transformers/blob/main/src/transformers/mod... | 1medium |
Title: [FEATURE] More control over explicit test example sources
Body: ### Is your feature request related to a problem? Please describe
Right now if OpenAPI endpoint has an example under `requestBody` AND request schema has an example value for each field, Schemathesis generates 2 separate requests with different p... | 1medium |
Title: [ENH] deconcatenate_column to preserve the original column location
Body: # Brief Description
<!-- Please provide a brief description of what you'd like to propose. -->
I would like to propose an enhancement to `deconcatenate_column` for preserving the original column position.
The current implementation ... | 1medium |
Title: Support accessing the DMMF at runtime
Body: ## Problem
Using typescript, I some times have to map all the schema with the following code:
```
async function generatePrismaVariablesDescriptions(): Promise<any> {
const a = {};
//return Prisma.dmmf.datamodel.models;
Prisma.dmmf.datamodel.models.map(... | 1medium |
Title: Adapting Whisper to the new loss_function attribute
Body: @ArthurZucker @muellerzr Following up on #35838, #34191, #34198, #34283
I would like to help bring in Whisper into this. I see it was not included in the last #35875 round of fixes related to the loss function bug fix (grad acc.) nor the new global "loss... | 1medium |
Title: Run load tests
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
We have not yet tested how well Prisma Client Python scales. Scalability is a core concern with ORMs / database clients.
## Suggested solution
<!-- A clear and concise descrip... | 1medium |
Title: [BUG] df.loc[:, [fields]] triggered unnecessary iterative tiling
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Describe the bug**
df.loc[:, [fields]] triggered unnecessary iterative tiling.
... | 1medium |
Title: Fields nested within a list are not correctly serialised
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... | 1medium |
Title: Raise a warning on multiple rapid connections / disconnections
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
Currently an easy mistake to make is to use the client's context manager feature on every database query e.g.
```py
async with c... | 1medium |
Title: Improve support for usage within multiprocessing environments
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
Currently you cannot create a connection to the database & then pass the connected `Prisma` instance to a new process.
## S... | 1medium |
Title: Result model: Add `message` to keywords and control structures and remove `doc` from controls
Body: Currently some control structures in the result model have a `doc` attribute that's represented in output.xml as a `<doc>` element. This attribute is used for storing information about removing or flattening items... | 1medium |
Title: Integrate paddlepaddle or Mindspore
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the prob... | 1medium |
Title: Ensure multi schema models work
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
Prisma added [preview feature support](https://github.com/prisma/prisma/issues/1122#issuecomment-1231773471) for `multiSchema` in `v4.3.0`, we should make s... | 1medium |
Title: Regarding additional feature on Incremental SVD over available SVD_COMPRESSED method.
Body: Hi, @hendrikmakait and other teams members,
I am working on implementation of DeepLearning Models using SVD specifically SVD_Compressed method available in Dask using dask.array.linalg.svd_compressed especially using CuP... | 1medium |
Title: In a Jupyter notebook, no display when poof is in a separate cell
Body: if visualizer.poof() is called in a separate cell, no visualization appears, as the empty plot has already been rendered in the call for fit(). Workaround is to access visualizer.ax.get_figure().
### Issue
For extra detail, see demo no... | 1medium |
Title: [ENH] Add ability to flag null values in columns
Body: # Brief Description
Hello everyone, I'd like to suggest a new method (I'll tentatively call it `flag_nulls`) that adds a new column to the dataframe to indicate if there are null values in the row.
If you are preparing a dataframe for machine learning ... | 1medium |
Title: Invalid string representation for bytes outside ASCII range
Body: Currently output from `Should be Equal` as well as `Should Contain` for bytes is not useful.
Consider following tests:
```robot
*** Test Cases ***
Test Should be Equal
${binary1Var} = Convert To Bytes \x00\x01\x02\xA0\xB0
${b... | 1medium |
Title: Add support for filtering by null values
Body: I couldn't find anything in documentation how filtering fields with null works.
I got it working with this:
```
await db.profile.find_many(where={"NOT": [{"first_name": "null"}]})
```
I don't know if this is the correct way. Because it would also filter a p... | 1medium |
Title: Perform syntax check after client generation
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
It is possible that the generator will generate invalid python code leading to the user having to uninstall and reinstall the prisma package
... | 1medium |
Title: Deserialize raw query types into richer python types
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
We currently deserialize raw query fields into types that are different than what the core ORM uses, e.g. `Decimal` becomes `float` ins... | 1medium |
Title: Improve error message for http timeouts
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
The current error message when a HTTP timeout error is raised doesn't provide any details on how to fix the issue.
## Suggested solution
<!-- ... | 1medium |
Title: [BUG] Error is just ignored in `Actor.__pre_destroy__`
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Describe the bug**
For now, error is just ignored in `Actor.__pre_destroy__`, if error occur... | 1medium |
Title: [BUG] `mars.tensor.array_equal` raises error when input tensor's dtype is string
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Describe the bug**
`mars.tensor.array_equal` raises error when inp... | 1medium |
Title: Support (> 10000)-token texts in `infer_vector()`
Body: As `infer_vector()` uses the same optimized Cython functions as training behind-the-scenes, it also suffers from the same fixed-token-buffer size as training, where texts with more than 10000 tokens have all overflow tokens ignored.
But, this might be e... | 1medium |
Title: Add support for filtering by `in` and `not_in` for `Bytes` types
Body: Prisma added support for this in v3.6.0 | 1medium |
Title: Precision-Recall Curve does not show class labels
Body: **Describe the bug**
When labels are passed into the `PrecisionRecallCurve` the visualization is not drawn correctly.
**To Reproduce**
```python
from yellowbrick.classifier import PrecisionRecallCurve
from yellowbrick.dataset import load_game
... | 1medium |
Title: Add explicit command line option to limit which files are parsed
Body: When execution just some tests from a big directory structure, parsing only relevant files instead of the whole structure makes parsing faster. We don't currently have any explicit option for limiting parsing like that, but when the `--suite`... | 1medium |
Title: [INF] Implement utils pytest mark
Body: # Brief Description
When updating the tests for #510, I noticed that `test_check_columns` had a `pytest.mark.utils` decorator but, when running the code, `utils` was not a a valid mark. I updated the `pytest.ini` file to have it, but AFAICT `test_check_columns` is the o... | 1medium |
Title: Nicer error handling with mishandled responses
Body: ```python
@app.get("/")
async def handler(request):
response1 = await request.respond(headers={"one": "one"})
response2 = await request.respond(headers={"two": "two"})
await response1.send("One")
await response2.send("Two")
await... | 1medium |
Title: Add client option to log SQL queries
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
Performance issues with ORMs can be hard to debug, we should add an option to log generated SQL queries.
## Suggested solution
<!-- A clear and concise d... | 1medium |
Title: Consider refactoring Base64 API
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
It is not obvious how `Base64` objects should be constructed, it would be a very easy mistake to construct the object like so:
```py
data = Base64(b'my ... | 1medium |
Title: Create target package for supervised target visualizers
Body: For supervised machine learning, there is some independent analysis that must be conducted on the target vector; for example label encoding, "bucketization", etc.
For visualizers:
- move the class balance here without requiring a model, fit, or... | 1medium |
Title: Scripts to Regenerate Tutorial and Quickstart Documentation Images
Body: In the documentation, the tutorial and quickstart need a script that can autogenerate the images similar to how they are done in the `doc/api/` section. The code to generate the images is located in the rst files and can be simple extracted... | 1medium |
Title: Add internal tests against a clean installation
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
We need to add additional safeguards for using the package pre-generation to avoid issues like #182
## Suggested solution
<!-- A clear... | 1medium |
Title: guvectorize does not check contiguity, breaks indexing
Body: numba 0.59.0
- [x] I have tried using the latest released version of Numba (most recent is
visible in the release notes
(https://numba.readthedocs.io/en/stable/release-notes-overview.html).
- [x] I have included a self contained code sample t... | 1medium |
Title: Support item assignment with lists and dicts like `${x}[key] = Keyword`
Body: These aren't currently supported:
```
${dict} = Create Dictionary key=initial
${dict}[key] = Set Variable new
${list} = Create List one two
${list}[0] = Set Variable new
```
Especially setting dic... | 1medium |
Title: Remove deprecated constructs from Libdoc spec files
Body: `datatypes` were deprecated in favor of more generic `typedocs` in RF 5.0 (#4160) and in RF 6.1 there were argument type related changes (#4538). We have preserved old data in specs for backwards compatibility reasons but now it's time remove it. The main... | 1medium |
Title: Support DataFrame indexing with mars Tensor
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
Currently the following snippets causes error, which is quite surprising for users coming from Pandas backgr... | 1medium |
Title: User-agent parser / accessor on Request
Body: ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Is your feature request related to a problem? Please describe.
The user-agent string is notoriously difficult to decipher. Suggesting to have `request.user_agent` with propertie... | 1medium |
Title: Output a warning when an unknown config option is present
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
Someone may misspell a config option and not realise until they don't get the behaviour that they want. This would be confusing
... | 1medium |
Title: New `robot:flatten` tag for "flattening" keyword structures
Body: Introduction
------------
With nested keyword structures, especially with recursive keyword calls and with WHILE and FOR loops, the log file can get hard do understand with many different nesting levels. Such nested structures also increase ou... | 1medium |
Title: Allow listeners to change execution status
Body: Listeners using the v3 API can set the status and message of each executed keyword and a control structure, but these changes do not affect the actual test execution. For example, changing keyword status from PASS to FAIL changes the status of the keyword in the ... | 1medium |
Title: Automatic argument conversion and validation for `Literal`
Body: Look at this moment:
```py
def foo(a: Literal[1, 2, 3]): ...
```
```robot
Something
foo 1
```
Currently, robot will send a `"1"` to this function, which is invalid, I would expect robot to convert the string to an int.
- #4630 | 1medium |
Title: Make `FOR IN ZIP` loop behavior if lists have different lengths configurable
Body: Robot `FOR IN ZIP` loop behaves like Python's [zip](https://docs.python.org/3/library/functions.html#zip) so that if lists lengths aren't the same, items from the longest one are ignored. For example, the following loop would be ... | 1medium |
Title: Support type aliases in formats `'list[int]'` and `'int | float'` in argument conversion
Body: Our argument conversion typically uses actual types like `int`, `list[int]` and `int | float`, but we also support type aliases as strings like `'int'` or `'integer'`. The motivation for type aliases is to support type... | 1medium |
Title: Support Werkzeug 3.0+
Body: Currently, it is pinned to `<3.0`, but it will be nice to support both | 1medium |
Title: Include tzinfo in returned datetime instances
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
As far as I am aware, all Prisma DateTimes are in UTC. We should represent this on model's datetime objects too.
| 1medium |
Title: IBM Watson STT not working
Body: The IBM STT interface is not currently working as IBM have changed their authentication mechanism.
The existing implementation uses the [SpeechRecognition Python package](https://github.com/Uberi/speech_recognition) which has not been updated to use the new API key.
The s... | 1medium |
Title: Argument list too long when connecting to a database with a large schema
Body: ## Bug description
The query engine cannot spawn the query engine child process when the schema is too large.
The error is coming from that line https://github.com/RobertCraigie/prisma-client-py/blob/main/src/prisma/generator/te... | 1medium |
Title: Add `nunique` support for DataFrameGroupBy
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Is your feature request related to a problem? Please describe.**
Support `df.groupby().nunique()` for re... | 1medium |
Title: Keyword accepting embedded arguments cannot be used with variable containing characters used in keyword name
Body: Variable file, var.py:
```python
class myClass(object):
def __init__(self):
self.attr = '1/1/1'
obj = myClass()
```
Test file, test.robot:
```robotframework
*** Settings ***
Var... | 1medium |
Title: Support `[Setup]` with user keywords
Body: As per the discussion in #4745, this is a separate issue to add a `[Setup]` setting to user keywords.
The reason for wanting it in our usecase is to indicate a semantic differance between regular steps in a keyword and the Setup/Teardown. This differance is used by o... | 1medium |
Title: Automatic probe for engine configuration
Body: If we can detect certain tested app behaviors like fails on the framework level due to the NULL bytes (I guess some web servers do it), then we may consider automatically re-configuring certain aspects of data generation in order to avoid failing on issues that are ... | 1medium |
Title: Allow listeners to remove log messages by setting them to `None`
Body: ## Context
Issue #5089 proposed making it possible for listeners to remove log messages altogether by setting them to an empty string. It was not implemented for the following reasons:
- It turned out that there are valid reasons to log e... | 1medium |
Title: as_numba_type fails to parse tuples
Body: `numba.extending.as_numba_type()` currently fails to parse tuples that are passed to it in the python type hint style. This behavior seems to be caused by the type not being an instance of `typing._GenericAlias`. I have also replicated this for `list` and `dict`.
- [x] ... | 1medium |
Title: Setting `PYTHONWARNDEFAULTENCODING` causes warnings
Body: If environment variable PYTHONWARNDEFAULTENCODING is set (and at least when running on MacOS), `_get_python_system_encoding()` from `robot/utils/encodingsniffer.py` in triggers following warning;
```
/Users/rasjani/src/duunit/energy-meter/venv/lib/py... | 1medium |
Title: Document and communicate dropped support for win32
Body: The 0.57.x line of Numba is the last to support `win32` -- that is the Windows 32 bit platform as per the LLVM target identifier.
This means, that for 0.58 this drop in supported platforms must be communicated, that is to say:
* [ ] Find all occurren... | 1medium |
Title: Update the bad_values notebook to show use of update_where for fixing ranges
Body: # Brief Description
One issue I've run into trouble with when working with data is that I need to define a range of bad values - for example, sale price should always be > 0. It looks like the `update_where` function would be a... | 1medium |
Title: Add Sklearn pipeline test for more complicated Visualizers
Body: There are some visualizers that require additional work in order to write sklearn pipeline test. It is likely that the underlying visualizer needs to expose learned attributes needed to generate the visualizers. The following is an example using ... | 1medium |
Title: Automate simple tests cases
Body: not for this pull request, but to ease development we could consider to somehow automate the old abstract methods (maybe with some decorators)
_Originally posted by @edgarriba in https://github.com/kornia/kornia/pull/2745#discussion_r1461614395_
just for the ... | 1medium |
Title: [ENH] Implement framework for adding xarray methods
Body: See PR #585 and general discussion #394
I've currently implemented two methods, one that wraps a numpy array with the metadata from an xarray dataarray [`dataarray.clone_using(numpy_array)`] (kind of like the xarray equivalent of `np.zeros_like`), and... | 1medium |
Title: Add support for `connectOrCreate`
Body: ## Problem
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
## Suggested solution
<!-- A clear and concise description of what you want to happen. -->
## Alternatives
<!-- A clear and concise description o... | 1medium |
Title: Unnecessary access log when socket disconnects before sending any bytes
Body: **Describe the bug**
A socket connection request to server will cause following error:
```
[2021-08-30 10:29:31 +0800] - (sanic.access)[INFO][UNKNOWN]: NONE http:///* 503 666
[2021-08-30 10:29:31 +0800] [6386] [ERROR] Connection l... | 1medium |
Title: Convert ScatterVisualizer to a mixin
Body: **Describe the solution you'd like**
Convert `ScatterVisualizer`, currently in contrib, into a YB mixin.
**Is your feature request related to a problem? Please describe.**
Besides `ScatterVisualizer` many YB visualizers implement some kind of scatterplot:
- [Ra... | 1medium |
Title: Color document boundaries (or classes) in dispersion plot
Body: **Describe the solution you'd like**
I work with text data a lot and am very excited about the new [`DispersionPlots`](http://www.scikit-yb.org/en/latest/api/text/dispersion.html)! As a future feature, it would be very useful to indicate document b... | 1medium |
Title: [DOC] PyPI page has no project description
Body: # Brief Description of Fix
The PyPI page for `pyjanitor` has no project description. I'm not sure if it previously did, and was lost in a recent version update. I'm not sure how to fix it, but I assume it's something that @ericmjl would be able to change.
#... | 1medium |
Title: Implements `sklearn.ensemble.RandomForestClassifier`
Body: <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Is your feature request related to a problem? Please describe.**
Random forest classifier is w... | 1medium |
Title: Libdoc: Show type information of embedded paramters
Body: When generating libdoc documentation, keywords with embedded arguments do not show the type hints.
This is a significant disadvantage to the "regular" parameter use case as in many cases the type information is clearer and more concise than free text wo... | 1medium |
Title: Prisma CLI and Client use different base paths for relative SQLite files
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-... | 1medium |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.