text stringlengths 20 57.3k | labels class label 4
classes |
|---|---|
Title: Drop milliseconds from plot titles
Body: Time with milliseconds is a bit overkill on plot titles, and takes extra space too. I propose these changes to drop milliseconds from plot titles:
`return num2date(times, units, calendar)` by `return num2date(times, units, calendar).replace(microsecond=0)` in functions... | 0easy |
Title: greeting note from alphavantage raises an error
Body: Reading currencies, alphavantage returns a greeting note ("welcome") and this note raises an error in alphavantage.py line 363.
```
elif "Note" in json_response and self.treat_info_as_error:
raise ValueError(json_response["Not... | 0easy |
Title: Plotting model with second spectrum then removing it does not work
Body: Something goes wrong with the navigator when adding and then removing a second navigator.
Example:
```python
import numpy as np
import hyperspy.api as hs
data = np.random.random((10, 20, 500))
s = hs.signals.Signal1D(data)
m = ... | 0easy |
Title: Update or remove outdated files in the repository root directory
Body: ## Classification:
Bug, Enhancement
## Summary
Update the supplementary files in the autokey repository root to the current state.
Currently, several files are out-of-date and unusable.
Update:
- [ ] - `autokey.spec` The openSU... | 0easy |
Title: Kagi
Body: Can you add Kagi? | 0easy |
Title: HTTP Error 429: too many requests causes tests to fail
Body: Occasionally, the test suite can fail when it fetches the data from the same URL too frequently, we should replace the URL link with local versions of the cars.csv if possible. In addition, any remote fetches of the data should catch the HTTP 429 error... | 0easy |
Title: fails to find .desktop file to create autostart .desktop (autokey should search `$XDG_DATA_DIRS`)
Body: ## Classification:
Bug
## Reproducibility:
Always
## Version
AutoKey version: 0.95.10
Used GUI (Gtk, Qt, or both): GTK (but shouldn't depend on GUI)
If the problem is known to be present i... | 0easy |
Title: [ENH] deduplicate `polars` and `gluonts` check logic in `datatypes` module
Body: Logic related to checking and conversion of `polars` and `gluonts` data types seems to be scattered across the `datatypes` module. This is also highly duplicative.
Optimally, the logic gets moved and deduplicated inside `datatype... | 0easy |
Title: [QOL] Add way to dynamically find out the correct GraphQL endpoint
Body: Possible endpoints are usually paths like
`/graphql`
`/graphiql`
`/api`
We can check for this if the user doesn't know what the endpoint is | 0easy |
Title: PauliString.after() crashes for Clifford gate PhXZ(a=0.25,x=-1,z=0) in _decompose_into_cliffords
Body: **Description of the issue**
PauliString.after() should be able to return a PauliString with Clifford ops input, but failed for the Clifford gate `PhasedXZGate(axis_phase_exponent=0.25, x_exponent=-1,z_expo... | 0easy |
Title: [Detections] - `from_inference` should include `'class_name'` key in `Detections.data` even if result is empty
Body: ### Bug
[`from_inference`](https://github.com/roboflow/supervision/blob/0ccb0b85adee4202f5fe96834a374a057bbbd9da/supervision/detection/core.py#L448) should include `'class_name'` key in `Detect... | 0easy |
Title: Remove deprecated support from scrapy.utils.log.logformatter_adapter()
Body: This helper was added in 1.0.0 (I think), it looks like the parts of it that don't show warnings are still useful, though I haven't looked closely at them. | 0easy |
Title: Ask to run code after improvement
Body: Unlike after code creation, after code improvement(i.e., the `-i` flag) gtp-engineer doesn't ask if the code should be run.
## Feature description
When using the `-i` flag and gpt-engineer has finished improving code, the use should be asked if they want to run the cod... | 0easy |
Title: [New feature] Add apply_to_images to GlassBlur
Body: | 0easy |
Title: Improve feedback when running `ploomber task`
Body: User executes this:
```sh
ploomber task some-task
```
Print something like this:
```
'some-task' executed successfully!
Products:
products/report.html
products/data.csv
``` | 0easy |
Title: Weird stacking auto-complete
Body: It happens a lot and is pretty annoying, anyone get this/know a fix?
https://user-images.githubusercontent.com/34655998/153747557-fc8d07f3-78e4-4606-b8f6-415c26a5503d.mp4
Here are my custom environment variables
```
$DOTGLOB = True
$COMPLETIONS_CONFIRM = False
$COMPL... | 0easy |
Title: deprecate and remove the --boxed option
Body: the related code has been moved to the pytest-forked plugin and wont ever support coverage or windows sanely | 0easy |
Title: Test is not failed if listener sets keyword status to fail and leaves message empty
Body: RF 7.1 enhanced the listener interface so that listeners can affect the execution status (#5090). For example, the following listener ought to be able to fail a keyword if "something bad happened" so that the execution stop... | 0easy |
Title: provide a way to use deep neural networks
Body: ### Description
Igel is built on top of sklearn at the moment. Therefore, All sklearn models can be used. This includes of course the neural network models integrated in sklearn (MLP classifier and MLP regressor). However, sklearn is not powerful enough when it ... | 0easy |
Title: [ENH]: Groupby Top K
Body: # Brief Description
<!-- Please provide a brief description of what you'd like to propose. -->
I would like to propose a function that allows users to take in a dataframe and return another dataframe that has the top "k" values after grouping by another column.
This has come u... | 0easy |
Title: Add KDE functionality to hist and hist2d plots
Body: I'd like to add KDE (kernel density estimation) functionality for the 1D and 2D histogram plotting functions, `hist`, `hist2d`, and maybe `hexbin`. Users can then optionally add marginal distribution panels with `panel_axes`.
Currently, the only matplotlib ... | 0easy |
Title: Convert incremental coverage scripts to use json coverage report
Body: **Description of the issue**
The current coverage checking script [check/pytest-and-incremental-coverage](https://github.com/quantumlib/Cirq/blob/9fbaa05433237fbf427de4dd1e70adfbd908d618/check/pytest-and-incremental-coverage) relies on the... | 0easy |
Title: Python version in setup.py is outdated
Body: **Describe the bug**
#140 suggests that the projects supports Python 3.8.1, however the Python version specifier is `~3.6` which is equivalent of `>=3.6.0 <3.7.0`.
**To Reproduce**
When trying to install the package with poetry (`poetry add syrupy`) I get:
... | 0easy |
Title: [DOC] How does one initialise a network without `from_dataset`?
Body: ### Expected behavior
Code:
```
from pytorch_forecasting.models import NBeats, BaseModel
from pytorch_lightning import Trainer, LightningModule
model = NBeats()
trainer.fit(model, train, valid)
```
Result:
```
---------------... | 0easy |
Title: Accept JSON type
Body: ### Checklist
- [X] There are no similar issues or pull requests for this yet.
### Is your feature related to a problem? Please describe.
I want to be able to show JSON column in detail page.
Could not find field converter for column *questions* (<class 'sqlalchemy.dialects.postgres... | 0easy |
Title: Documentation issue for pn.pane.Image and others
Body: I noticed that the reference for pn.pane.Image, pn.pane.PNG, and pn.pane.JPG (and I suspect some of the other image related panes) says to use `style` to denote CSS style, when it's `styles` as the actual parameter keyword that should be used.
Sorry if th... | 0easy |
Title: Add animation to thumbsup/down in chat when user not voted yet
Body: maybe something like this is ok
https://www.vecteezy.com/video/10877395-like-loop-motion-graphics-video-transparent-background-with-alpha-channel | 0easy |
Title: Edge case: `xonsh --no-rc --no-env`: `TERM environment variable not set`
Body: ```xsh
xonsh --no-rc --no-env
clear
# TERM environment variable not set
```
We need to have default TERM in `--no-env` if it's needed or close this issue with clarification why we don't.
## For community
⬇️ **Please click t... | 0easy |
Title: Forbid path-like child names
Body: It would also be nice to add a check like this for child names.
_Originally posted by @shoyer in https://github.com/pydata/xarray/pull/9378#pullrequestreview-2301368526_
| 0easy |
Title: How to display percentage number on top of arc aka. the pie chart?
Body: now, there isn't such function yet? also, is there any way to annotate numbers on any chart generated?
so that pygwalker at current stage is for prototyping? | 0easy |
Title: Presets for ProfilerOptions/Profiler
Body: **Is your feature request related to a problem? Please describe.**
The Profiler can be slow with all options enabled. Most users won't need all of the settings to be enabled. Changing the settings one by one takes quite a bit of time and you need to study the docs qu... | 0easy |
Title: Update `dbapi` method to `import_dbapi` for `APSWGSheetsDialect` to remove warning at the start of program
Body: **Is your feature request related to a problem? Please describe.**
For newer versions of SQLAlchemy (2.0), usage of `dbapi()` class method is deprecated. It is recommended to implement `import_dbapi(... | 0easy |
Title: Tox4: Django test suite database can not be recreated in Tox 4 (works in Tox 3)
Body: ## Issue
I want to update the test suite of a library from tox 3 to tox 4. I am running tox in parallel mode in Github actions.
Part of the test suite are Django tests that create a test Postgres database (that is supplie... | 0easy |
Title: Make text monospace
Body: - [x] Hexapod robot dimensions label
- [x] Hexapod Robot dimensions input
- [x] Kinematics control input | 0easy |
Title: [Docs] Remove redundant CI when docs merged into main
Body: ### Checklist
- [x] 1. If the issue you raised is not a feature but a question, please raise a discussion at https://github.com/sgl-project/sglang/discussions/new/choose Otherwise, it will be closed.
- [x] 2. Please use English, otherwise it will be cl... | 0easy |
Title: Support string `SELF` (case-insenstive) when library registers itself as listener
Body: Currently if a library registers itself to be a listener, it needs to do it like this:
```python
class Library:
def __init__(self):
self.ROBOT_LIBRARY_LISTENER = self
def start_test(self, data, resu... | 0easy |
Title: [Refactor] Informative error messages on Scenario build failure
Body: ### Description
The error message `raise InvalidScenario(scenario.id)` when scenario building fails is not very informative, because it leads to something like:
```
taipy.core.exceptions.exceptions.InvalidScenario: SCENARIO_MS_analysis_afc... | 0easy |
Title: [TRACKER] More useful error messages
Body: ### NOTE:
For users encountering poor UX related to Tracecat errors, please kindly add your error message to this issue. We aim to have a <24 hour turnover for every insufficiently useful error message.
## Problem
We designed the parser from first principles that f... | 0easy |
Title: k8s file-mounted secrets
Body: In K8S, it is common to mount secrets to a file such as tmpfs.
The typical format puts each secret into a separate file inside a mounted volume, where the key is the filename and the content is the value.
Is there a way to achieve loading this in Dynaconf?
If not, what is the b... | 0easy |
Title: custom validation set
Body: Great lib !
Greater with a possibility to input a custom validation set. In my case, I have correlation between the train points so I cannot use a cross val, neither a split val with or without shuffle. I need to input a dedicated validation "far" in time from the train data points. | 0easy |
Title: [Feature request] Add apply_to_images to ImageCompression
Body: | 0easy |
Title: Extra sliders on the GT management pages
Body: ### Actions before raising this issue
- [x] I searched the existing issues and did not find anything similar.
- [x] I read/searched [the docs](https://docs.cvat.ai/docs/)
### Steps to Reproduce
[random_200.zip](https://github.com/user-attachments/files/19027349/r... | 0easy |
Title: Changing color theme
Body: ### Checklist
- [X] There are no similar issues or pull requests for this yet.
### Is your feature related to a problem? Please describe.
This feature request is not related to a problem.
### Describe the solution you would like.
I would like to see some documentation on how the c... | 0easy |
Title: Add alpha support for scatter plots
Body: **Describe the solution you'd like**
When I'm plotting scatter plots (such as PCA), oftentimes there is a bunch of data. By using the ``alpha`` parameter on matplotlib (also available through the pandas plotting interface), it allows you to discern the data and amount o... | 0easy |
Title: Broken documentation links on Gensim's PyPI page
Body: Links in the `Documentation` section of our official PyPI page are broken (return 404):
https://pypi.org/project/gensim/#documentation-1
OTOH, links at https://github.com/RaRe-Technologies/gensim#documentation work, so it looks like the PyPI version con... | 0easy |
Title: Create tests for try_orelse_with_no_variables_to_save.py and try_orelse_with_no_variables_to_save_and_no_args.py
Body: In this commit https://github.com/python-security/pyt/pull/59/commits/23e6412a20cec20b66508950440bb293279b8265 you can see where this would affect the program. (Search for "# raise")
The test... | 0easy |
Title: "as_categorical"
Body: Another idea!
```python
@pf.register_dataframe_method
def as_categorical(df, column_name, categories=None, ordered=True):
"""
Convert one column in the dataframe to a categorical one.
"""
if categories is None:
categories = sorted(df[column_name].unique())... | 0easy |
Title: [misc] Adapt to django-debug-toolbar breaking change
Body: The django-debug-toolbar [`4.4.0` release](https://django-debug-toolbar.readthedocs.io/en/latest/changes.html#id3) added a check that disallows running tests with django_toolbar installed, which broke our CI ([example](https://github.com/dynaconf/dynacon... | 0easy |
Title: Document deployment
Body: uwsgi -s /tmp/uwsgi.sock -w quokka:app
gunicorn
heroku
etc
| 0easy |
Title: DOC: Add note about installing requirements for `10 minutes to xorbits.numpy`
Body: Doc of [10 minutes to xorbits.numpy](https://doc.xorbits.io/en/latest/getting_started/numpy.html) requires for some third-party libraries like `hdf5`, maybe we need add a note to tell users how to install them. | 0easy |
Title: In all modes the `eval_metric` should be set as in AutoML constructor (not tuned)
Body: `eval_metric` should be used for early stopping for all modes and all algorithms (if early stopping applicable) | 0easy |
Title: Add a changelog file
Body: ## Description
Create a changelog file. More info at: https://keepachangelog.com/en/1.0.0/ | 0easy |
Title: [BUG] AttributeError: 'series' object has no attribute 'array' when calling np.array(df)
Body: ### Describe the bug
When calling `np.array(df)` in my code, I encountered the following error: "`AttributeError: 'series' object has no attribute '__array__'`".
### To Reproduce
To help us to reproduce this bug, ... | 0easy |
Title: Fix and re-enable `unnecessary-comprehension` and `use-dict-literal` pylint tags
Body: Both are valid simplification hints. | 0easy |
Title: [ENH] Friendlier error when neo4j creds not provided
Body: Community user usability report: If Neo4j creds or a driver are not provided, the error currently looks like:
```
/path/to/conda_env/lib/python3.8/site-packages/graphistry/plotter.py in cypher(self, query, params)
1504 res = copy.copy(sel... | 0easy |
Title: Work Pool and Work Queue update events
Body: ### Describe the current behavior
The current behavior of work pool and work queue updates are if work pool/work queue status is updated then only creates a Event record in database. If Work Pool/Work Queue any other fields are updated then there is no event is creat... | 0easy |
Title: Deprecate `xr.cftime_range` in favor of `xr.date_range`
Body: ### What is your issue?
`xr.date_range` automatically chooses a return type based on calendar and can take `use_cftime=True` to always return CFTimeIndex, so I don't see why we need `xr.cftime_range` any more | 0easy |
Title: Tell mypy et.al that Unset is always falsy
Body: **Is your feature request related to a problem? Please describe.**
mypy doesn't understand that `Unset` is always falsy
```python
if api_object.neighbours:
for x in api_object.neighbours: # <-- mypy: error: Item "Unset" of "Union[Unset, None, List[Nei... | 0easy |
Title: Remove `APIKeyMissingError`
Body: Remove `APIKeyMissingError`. We are not using it anymore, we are using `MissingMandatoryKeyError` instead.
We only need to delete [it](https://github.com/scanapi/scanapi/blob/master/scanapi/errors.py#L15-L20)
```
class APIKeyMissingError(MalformedSpecError):
"""Rais... | 0easy |
Title: Incorrect example in BooleanWidget docstring
Body: The docstring in BooleanWidget in
https://github.com/django-import-export/django-import-export/blob/e855fcf8ed43af4dd681435f516e9f50ee19613d/import_export/widgets.py#L119
shows example usage with missing brackets (the `widget` kwarg must be instance not a ... | 0easy |
Title: Tox not stripping ticks from paths in commands anymore
Body: ## Issue
I have a tox test env which calls pytest like this:
```
commands =
python -Wdefault -b -m pytest tests/unit \
--in_memory=False \
--basetemp="tests/tmp/{envname}" \
--junitxml="tests/tmp/results/junit-out_m... | 0easy |
Title: Add transforms from Augraphy
Body: For every transform:
1. Double check that there is no
2. Create separate Pull request.
3. Add the code and check where possible that numpy operations are replaced by the similar OpenCV code.
4. Use vectorized operations where possible.
5. Add link to the original implemen... | 0easy |
Title: MongoDB Connector for PandasAI
Body: ### 🚀 The feature
Integrate a MongoDB connector into PandasAI to allow users to easily access and manipulate data stored in MongoDB databases. This connector will leverage PyMongoArrow to efficiently convert MongoDB query results into Apache Arrow, Numpy, and Pandas forma... | 0easy |
Title: [Feature request] Add apply_to_images to ConstrainedCoarseDropout
Body: | 0easy |
Title: Mention other, preferred, packages in docs
Body: [`QuantileRegressor`](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.QuantileRegressor.html#sklearn.linear_model.QuantileRegressor) made it into scikit-learn some time ago already.
As in the future other features could lose the _experime... | 0easy |
Title: Feature Request: Add JSON logging to Robusta Runner
Body: We use Kibana for logs and use structured JSON logs where possible.
It would be great if the `runner` could be configured to emit JSON logs.
| 0easy |
Title: [Feature]在async_session结束后继续使用该对象,需要报错
Body: ```
async with curl_cffi.requests.AsyncSession() as c:
r1=await c.get('https://www.baidu.com')
print(r)
r2=await c.get('https://www.baidu.com')
```
在生成r2时, async_session已被关闭, 需要抛出会话已被关闭异常
| 0easy |
Title: Fix capitalisation of `Jupyter notebook` to `Jupyter Notebook`
Body: - Do a quick search and find for any `Jupyter notebook` version and replace with `Jupyter Notebook` where suitable | 0easy |
Title: Offer order export from offer detail view only includes page 1 in export.
Body: If you go to the offer detail view in the dashboard, and this offer has been used in orders, you can generate an export.
See:
https://github.com/django-oscar/django-oscar/blob/1d1590f2a69ee75723482afb135b24c5c3523838/src/oscar/ap... | 0easy |
Title: [NEED HELP] UNABLE TO RUN THE CODE ON MY PC
Body: ### Issue summary
Effectively Running the Code issue
### Detailed description
Hello I am not tech savvy. I'm attempting to put the software/code in place so I can use it on a job application website (monster, fintalent, indeed etc.) Is there anyone I can hire... | 0easy |
Title: Add DNS endpoint support for GKE Hooks and Operators
Body: ### Description
Current GKE Hook only supports IP based endpoints for accessing control plane of GKE, they should now also support access using DNS endpoint.
### Use case/motivation
A Cloud Composer environment that is in a separate VPC network than t... | 0easy |
Title: Groups REST API - Add DELETE /api/groups/(int: id)/roles/(int: role_id)
Body: ### Describe the problem
https://docs.weblate.org/en/weblate-5.10.2/api.html#groups
`components`, `projects`, `languages`, `componentlists`, and `admins` all have their corresponding POST and DELETE methods.
`roles` has only POST meth... | 0easy |
Title: Bill Williams Fractals with Alligator Indicators
Body: **Which version are you running? The lastest version is on Github. Pip is for major releases.**
```python
import pandas_ta as ta
print(ta.version)
```
0.2.23b0
**Upgrade.**
```sh
$ pip install -U git+https://github.com/twopirllc/pandas-ta
```
0.2... | 0easy |
Title: [Bug] Bark Model can not generate special sounds
Body: ### Describe the bug
I have encountered an issue where the output I receive differs from the output shown in the official repository, even though I am using the same prompt that is provided. This discrepancy is creating confusion and making it difficult fo... | 0easy |
Title: Add celery
Body: | 0easy |
Title: Better error message when missing the IRKernel
Body: When running an R pipeline, an error will show if the IRKernel is not installed, it'd be better to improve the error message stating that that the kernel is missing and the link to the installation instructions
https://docs.ploomber.io/en/latest/user-guide/... | 0easy |
Title: [Feature request] Add apply_to_images to ISONoise
Body: | 0easy |
Title: Enhanced object creation, using column references
Body: When instantiating a Table object, we do this (like in 99% of ORMs):
```python
Band(name="Pythonistas", popularity=1000)
```
Some Piccolo queries allow you to pass in a dictionary mapping column references to values, instead of using kwargs. It's ni... | 0easy |
Title: [Feature request] Add apply_to_images to BboxSafeRandomCrop
Body: | 0easy |
Title: Custom labels for get_topic_tree
Body: ### Discussed in https://github.com/MaartenGr/BERTopic/discussions/2122
<div type='discussions-op-text'>
<sup>Originally posted by **clfkenny** August 17, 2024</sup>
Hi there, I noticed the `visualize_hierarchy` method has a `custom_labels` parameter. Is there anythi... | 0easy |
Title: 'Last run X minutes ago' compares UTC to naive timestamp
Body: This means they're incorrect unless your local timezone is equal to UTC.
In general, any newly generated report will have a 'last run' time of
babel.dates.format_timedelta(datetime.datetime.utcnow() - datetime.datetime.now())
and will just... | 0easy |
Title: Implement Graceful Cache Failure Handling and Logging in Initialization
Body: ## Issue Summary
Currently, when the cache fails, an "AssertionError: You must call init first!" error is thrown, which is not user-friendly. Instead, the system should provide a warning message indicating that the results are not cac... | 0easy |
Title: replace load_blueprints to a better version
Body: ``` python
# coding: utf-8
import os
import random
import logging
from werkzeug.utils import import_string
logger = logging.getLogger()
def load_blueprints_from_folder(app, folder_path=None, object_name=None):
folder_path = (
folder_path or
... | 0easy |
Title: Selecting a use case selects a non-.py file
Body: 
| 0easy |
Title: Add generation time from output.xml to `Result` object
Body: The `output.xml` has `<robot generated="year-month-dayTHH:MM:SS.milliseconds" …>` in the xml. It would be handy to expose the `generated` attribute from the RF result package. We have a need to use the `generated` attribute when reading test result f... | 0easy |
Title: [Bug]: ScalarFormatter cant be forced to use an offset of 1
Body: ### Bug summary
The ScalarFormatter class takes an argument useOffset, either True, which will determine an automatic offset, False, which disables an offset or an numeric value, which is the used as an offset.
Since in python 1 == True --> True,... | 0easy |
Title: AttributeError: 'Merge' object has no attribute 'fit_transform'
Body: Hi everyone,
I got a problem when running the example from autokeras website. It returns "AttributeError: 'Merge' object has no attribute 'fit_transform'". It reports the same error when I do not use Merge(), say only use ConvBlock (output_... | 0easy |
Title: Marketplace - Change "build AI agents and share you vision" font to Poppins font
Body: ### Describe your issue.
Can we change this to the Poppins font?
Font: poppins
weight: semibold
size: 48px
line-height: 54px
The "your" should be the same color as the other sentence, not purple 🙂
` escape reserved Windows filenames
Body: @CaselIT noticed that we didn't hold Windows hand regarding device file names, like
https://github.com/pallets/werkzeug/blob/7868bef5d978093a8baa0784464ebe5d775ae92a/src/werkzeug/utils.py#L229-L237
(_Originally posted by @CaselIT in https://git... | 0easy |
Title: Duplicated pokemon-species in evolution-trigger #1
Body: Dear PokeAPI team,
**https://pokeapi.co/api/v2/evolution-trigger/1/** contains Magnezone 4 times. At index 192, 262, 294 and 298.
Some others like leafeon and glaceon do also exist more than once.
Is it possible to reduce the linked species that every... | 0easy |
Title: [FEA] Quickly compute multiple algorithms
Body: **Is your feature request related to a problem? Please describe.**
I'll often write:
```python
g = g.compute_cugraph('weakly_connected_components')
g = g.compute_cugraph('pagerank')
g = g.compute_cugraph('betweenness_centrality')
`... | 0easy |
Title: [BUG][DOC] Translation wrong in cluster deployment
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**
Translation wrong in cluster deployment.
English version works well.
![... | 0easy |
Title: OpenAI should automatically switch to the model with more context
Body: ### 🚀 The feature
Currently, when users encounter errors due to a context window that exceeds the model's capacity, they need to manually adjust their model choice to a larger version, which can be cumbersome and may disrupt the workflow. ... | 0easy |
Title: Enhancement: Support all kwargs for `model_dump` in PydanticPlugin
Body: ### Summary
`litestar.contrib.pydantic.PydanticPlugin` has the argument `prefer_alias` which sets the `by_alias` argument of the created Pydantic type encoders. The type encoders are based on `pydantic.BaseModel.model_dump` which also has ... | 0easy |
Title: NumbaDeprecationWarning: numba.generated_jit is deprecated.
Body: ### Current Behaviour
This is a follow-on to https://github.com/ydataai/ydata-profiling/issues/1419 .
Create new environment with just ydata-profiling as described there, see `python -c 'import ydata_profiling'` succeed silently, and then add:... | 0easy |
Title: Time to Close metric API
Body: The canonical definition is here: https://chaoss.community/?p=3446 | 0easy |
Title: New Contributors metric API
Body: The canonical definition is here: https://chaoss.community/?p=3613 | 0easy |
Title: Queries that Return Zero Rows Raise Exception
Body: e.g. if you run:
```python
from sqlalchemy.engine import create_engine
engine = create_engine("shillelagh://")
connection = engine.connect()
query = """SELECT country, SUM(cnt)
FROM "https://docs.google.com/spreadsheets/d/1_rN3lm0R_bU3NemO0s9pbFkY5LQP... | 0easy |
Title: Optuna Mode doesn't work when tuning LightGBM
Body: Great package, I love that it supports a wide range of functionalities.
However, when I try to create an AutoML instance in Optuna mode for Light GBM, it fails and gives the following error message, it works when I use other ML models though:
```[I 2023-... | 0easy |
Title: better error message when NotebookRunner is initialized with a string instead of a path
Body: `NotebookRunner` expects a string with Python code or a `pathlib.Path` object to a `.py` file. However, new users may do this:
```python
NotebookRunner('script.py')
```
But instead they should do:
```python
... | 0easy |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.