repo_name stringlengths 9 75 | topic stringclasses 30
values | issue_number int64 1 203k | title stringlengths 1 976 | body stringlengths 0 254k | state stringclasses 2
values | created_at stringlengths 20 20 | updated_at stringlengths 20 20 | url stringlengths 38 105 | labels listlengths 0 9 | user_login stringlengths 1 39 | comments_count int64 0 452 |
|---|---|---|---|---|---|---|---|---|---|---|---|
encode/databases | asyncio | 393 | SQLite transaction doesn't rollback | I have simple code
```
class SQLiteRepository:
db: Database
def __init__(self, db: Database):
self.db = db
async def create(self, model: Table, values):
await self.db.execute(model.insert().values(values))
raise ValueError(123)
repo = SQLiteRepository(Database('p... | closed | 2021-09-21T11:14:03Z | 2021-09-22T08:14:56Z | https://github.com/encode/databases/issues/393 | [] | healfy | 5 |
SciTools/cartopy | matplotlib | 2,381 | Inconsistent plots between uniform grid and non-uniform climate model grid | ### Description
<!-- Please provide a general introduction to the issue/proposal. -->
I'm using the default example with PlateCarree to plot the SSH map form CESM2 model using non-uniformly spaced longitudes/latitudes. The plots are different from what I get when I run a interpolation to 1 °-grid then plot the map.... | closed | 2024-05-07T05:14:34Z | 2024-10-06T19:34:50Z | https://github.com/SciTools/cartopy/issues/2381 | [
"Bug: transforming filled paths"
] | ayghri | 2 |
lukas-blecher/LaTeX-OCR | pytorch | 293 | TypeError: Can't convert ['label.txt'] to Trainer | when i run the following code to generate my own tokenizer.json,
python -m pix2tex.dataset.dataset --equations /mypath/label.txt --vocab-size 8000 --out tokenizer_cg.json
i got this error:
TypeError: Can't convert ['/mypath/label.txt'] to Trainer
anyone can help me | closed | 2023-07-13T10:08:44Z | 2023-07-20T09:53:20Z | https://github.com/lukas-blecher/LaTeX-OCR/issues/293 | [] | hideinhat | 0 |
kornia/kornia | computer-vision | 2,377 | Augmentation yields NaN value. | ### Describe the bug
The output of augmentation contains nan value.
Script:
```python
from PIL import Image
import kornia.augmentation as K
from torchvision import transforms
image=Image.open("temp.jpg")
w,h=224,224
preprocess=transforms.Compose([transforms.Resize((h,w)),
... | closed | 2023-05-12T02:11:03Z | 2023-05-17T01:11:09Z | https://github.com/kornia/kornia/issues/2377 | [
"help wanted"
] | bot66 | 5 |
nltk/nltk | nlp | 2,378 | Update various regex escape sequences | The latest versions of Python are more strict wrt. escape in regex.
For instance with 3.6.8, there are 10+ warnings like this one:
```
...
lib/python3.6/site-packages/nltk/featstruct.py:2092: DeprecationWarning: invalid escape sequence \d
RANGE_RE = re.compile('(-?\d+):(-?\d+)')
```
The regex(es) should be... | closed | 2019-08-28T10:48:54Z | 2021-07-20T03:41:54Z | https://github.com/nltk/nltk/issues/2378 | [
"good first issue",
"pythonic"
] | pombredanne | 14 |
pydata/pandas-datareader | pandas | 930 | YahooDailyReader - ValueError: Index contains duplicate entries, cannot reshape | I started having an issue with the YahooDailyReader a few weeks ago.
When requesting a single stock, everything works as expected:
```
daily_reader = pdr.yahoo.daily.YahooDailyReader(symbols='AAPL', start='2017-03-27', adjust_price=True, interval='d', get_actions=False, adjust_dividends=True)
ticker_data = dai... | closed | 2022-03-26T18:13:22Z | 2022-04-12T11:23:43Z | https://github.com/pydata/pandas-datareader/issues/930 | [] | nmaiorana | 3 |
home-assistant/core | asyncio | 141,109 | Tractive integration fails to create entities for one tracker (no errors, no entities) | ### The problem
I have two Tractive trackers on the same account, same subscription (Premium), and both are active and reporting correctly in the Tractive app.
In Home Assistant:
- Only one tracker creates sensor entities (activity, sleep, etc.)
- The second tracker appears in core.device_registry but has no entities... | open | 2025-03-22T12:12:02Z | 2025-03-22T12:25:35Z | https://github.com/home-assistant/core/issues/141109 | [
"needs-more-information",
"integration: tractive"
] | guychozaicho | 2 |
psf/black | python | 3,889 | Lines with power operator `**` with simple operands are wrapped too early | **Describe the bug**
Black miscomputes the horizontal space required for lines containing the power operator `**` with simple operands, and rewraps them much earlier than the expected 88-character line length. Perhaps that computation wasn’t adjusted for #538/#2726.
**To Reproduce**
Run Black with no arguments... | closed | 2023-09-13T20:40:47Z | 2023-10-16T14:08:24Z | https://github.com/psf/black/issues/3889 | [
"T: bug"
] | andersk | 0 |
matplotlib/matplotlib | data-visualization | 28,985 | [ENH]: Cannot disable coordinate display in ToolManager/Toolbar (it's doable in NavigationToolbar2) | ### Problem
When creating NavigationToolbar2, you can disable coordinates display with a simple constructor argument (at least in Qt backend):
`navbar = NavigationToolbar2QT(canvas, parent_widget, coordinates=False)`
There doesn't seem to be a similar feature in ToolManager API. Judging from the code, its messag... | closed | 2024-10-16T15:57:26Z | 2024-10-23T16:01:19Z | https://github.com/matplotlib/matplotlib/issues/28985 | [
"New feature",
"MEP: MEP22"
] | positron96 | 7 |
google-research/bert | nlp | 453 | What is is_impossible for run_squad.py ? | I am trying to understand the code from the paper. I am not sure what is_impossible means for a SquadExample. Any help would be greatly appreciated. | closed | 2019-02-24T06:10:24Z | 2019-02-25T12:16:29Z | https://github.com/google-research/bert/issues/453 | [] | aman31saxena | 1 |
datadvance/DjangoChannelsGraphqlWs | graphql | 38 | Intergrating with Apollo. | @prokher @kingtimm Hey, I'm trying to integrate this package with react apoolo using this [client setup](https://www.apollographql.com/docs/react/data/subscriptions/#client-setup)
But, I can't get the subscriptions to load.
This led me to adding this other django.url.path but when I use it now query and mutation ... | closed | 2020-02-07T08:13:15Z | 2020-02-17T19:29:15Z | https://github.com/datadvance/DjangoChannelsGraphqlWs/issues/38 | [] | johnpaul89 | 6 |
thp/urlwatch | automation | 14 | sendmail binary for sending email | It would be useful if there was an option to use the sendmail binary instead of SMTP.
| closed | 2015-04-15T20:00:17Z | 2016-06-27T08:39:32Z | https://github.com/thp/urlwatch/issues/14 | [] | kyrias | 8 |
ludwig-ai/ludwig | computer-vision | 3,353 | Warning: reader on shard 0 of the pipeline has been blocked more than 10.0s waiting for other readers to catch up. All pipeline shards must be read from concurrently. | This is my config file to fine tune bloom1b1 model for classification task.
____________
`input_features:
- name: title
type: text
encoder:
type: auto_transformer
pretrained_model_name_or_path: bigscience/bloom-1b1
trainable: true
pretrained_kwargs: null
output_features:
- name: clas... | closed | 2023-04-17T11:57:03Z | 2024-10-18T13:35:12Z | https://github.com/ludwig-ai/ludwig/issues/3353 | [] | pushkarraj | 3 |
koxudaxi/datamodel-code-generator | fastapi | 1,907 | Nullability info excluded from templates for optional, no-default OpenAPI fields | **Describe the bug**
When using custom templates, the `field.nullable` value can be `None`, even though one is set from the provided OpenAPI spec. We only seem to pass it along [with `--strict-nullable` and for required fields, or fields with a default, otherwise we pass `None`](https://github.com/koxudaxi/datamodel... | open | 2024-04-08T20:31:46Z | 2024-10-30T02:52:42Z | https://github.com/koxudaxi/datamodel-code-generator/issues/1907 | [] | Melinysh | 1 |
mars-project/mars | numpy | 3,036 | [BUG] `groupby` failed when using categorical columns with `as_index=False` | <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Describe the bug**
`groupby` failed when using categorical columns with `as_index=False`.
**To Reproduce**
``` Python
In [14]: a = pd.DataFrame({'a':['a','b'... | open | 2022-05-13T15:59:46Z | 2022-05-28T09:43:55Z | https://github.com/mars-project/mars/issues/3036 | [
"type: bug",
"mod: dataframe"
] | hekaisheng | 1 |
FactoryBoy/factory_boy | django | 1,093 | Officially support Django 5.0 on PyPI | Django 5.1 is supported on PyPI but Django 5.0 is not. Officially support Django 5.0 on PyPI. | closed | 2024-09-10T14:30:53Z | 2025-02-03T09:48:23Z | https://github.com/FactoryBoy/factory_boy/issues/1093 | [] | uri-rodberg | 2 |
Avaiga/taipy | automation | 1,621 | [DOCS] editable__columnname is not documented | ### Issue Description
The proper syntax to make the "Demand" column of a table editable in tgb is:
```python
tgb.table("{demand_table}", on_edit=edit_demand, editable__Demand=True)
```
But this syntax is not documented in the docs:
https://docs.taipy.io/en/develop/manuals/userman/gui/viselements/generic/table/
h... | closed | 2024-07-31T10:34:27Z | 2024-10-05T21:35:12Z | https://github.com/Avaiga/taipy/issues/1621 | [
"📄 Documentation",
"🖰 GUI",
"🟨 Priority: Medium"
] | AlexandreSajus | 4 |
ivy-llc/ivy | tensorflow | 28,213 | Fix Frontend Failing Test: numpy - vision_functions.torch.nn.functional.interpolate | To-do List:https://github.com/unifyai/ivy/issues/27497 | open | 2024-02-07T16:47:28Z | 2024-02-07T16:47:28Z | https://github.com/ivy-llc/ivy/issues/28213 | [
"Sub Task"
] | marvlyngkhoi | 0 |
allure-framework/allure-python | pytest | 211 | Behave Allure reports include Skipped tests when using --no-skipped or show_skipped = false | #### I'm submitting a ...
- [ x] bug report
- [ ] feature request
#### What is the current behavior?
Skipped issues appear in Allure Results even if Skipped `--no-skipped` flag is set or behave.ini is set to `show_skipped = false`.
#### Steps:
1. Create two senarios with different tags (for example 1 tes... | closed | 2018-03-20T23:43:16Z | 2019-10-31T14:25:23Z | https://github.com/allure-framework/allure-python/issues/211 | [
"work:selected for dev",
"theme:behave",
"theme:core",
"type:enhancement"
] | Jiff21 | 4 |
OthersideAI/self-operating-computer | automation | 33 | Proposal for Codebase Refactoring to Enhance Readability and Maintainability | I've been reviewing the project's codebase and noticed that all the logic and functions are currently contained within a single file. This structure, while functional, can make the code challenging to read and maintain. To improve the readability and maintainability of the code, I propose restructuring it by:
1. Sep... | closed | 2023-12-01T09:44:59Z | 2024-02-09T05:36:45Z | https://github.com/OthersideAI/self-operating-computer/issues/33 | [] | gtlYashParmar | 10 |
STVIR/pysot | computer-vision | 169 | help . how to print Channels of depthwise correlation output in conv4 response? thanks | help . how to print Channels of depthwise correlation output in conv4 response?
thanks | closed | 2019-09-04T03:25:10Z | 2019-12-18T16:18:36Z | https://github.com/STVIR/pysot/issues/169 | [
"duplicate"
] | ghost | 1 |
akfamily/akshare | data-science | 5,460 | match_main_contract这个接口好像出了点问题 | `dce_text = ak.match_main_contract(symbol="dce")`
返回
`pvc_qh 无主力合约
zly_qh 无主力合约
de_qh 无主力合约
dp_qh 无主力合约
tks_qh 无主力合约
jd_qh 无主力合约
lldpe_qh 无主力合约
jbx_qh 无主力合约
xwb_qh 无主力合约
jhb_qh 无主力合约
dy_qh 无主力合约
hym_qh 无主力合约
dd_qh 无主力合约
jt_qh 无主力合约
jm_qh 无主力合约
ymdf_qh 无主力合约
yec_qh 无主力合约
RR2502
byx_qh 无主力合约
pg_qh 无主... | closed | 2024-12-25T11:50:48Z | 2024-12-26T09:57:51Z | https://github.com/akfamily/akshare/issues/5460 | [
"bug"
] | skysunsun | 4 |
tensorpack/tensorpack | tensorflow | 681 | ERR Exception in EnqueueThread QueueInput/input_queue: | I try imagenet-resnet.py following the instructions. But I get some errors.
`[0301 09:29:21 @logger.py:102] WRN Log directory train_log/imagenet-resnet-d18 exists! Use 'd' to delete it.
[0301 09:29:21 @logger.py:105] WRN If you're resuming from a previous run, you can choose to keep it.
Press any other key to exit.... | closed | 2018-03-01T01:36:36Z | 2018-05-30T20:59:38Z | https://github.com/tensorpack/tensorpack/issues/681 | [
"unrelated"
] | souxun2015 | 11 |
NullArray/AutoSploit | automation | 629 | Unhandled Exception (105ce3f8c) | Autosploit version: `3.0`
OS information: `Linux-4.18.0-17-generic-x86_64-with-Ubuntu-18.10-cosmic`
Running context: `autosploit.py`
Error meesage: `global name 'Except' is not defined`
Error traceback:
```
Traceback (most recent call):
File "/home/heli/AutoSploit/autosploit/main.py", line 113, in main
loaded_expl... | closed | 2019-04-04T16:50:27Z | 2019-04-18T17:31:35Z | https://github.com/NullArray/AutoSploit/issues/629 | [] | AutosploitReporter | 0 |
jofpin/trape | flask | 361 | Feg | Egj | closed | 2022-07-10T23:49:28Z | 2022-07-12T04:10:48Z | https://github.com/jofpin/trape/issues/361 | [] | Sergo2106 | 1 |
tatsu-lab/stanford_alpaca | deep-learning | 102 | How to load model in all gpus during generation? | I have completed fine-tuning in 8 A100 gpus, when loading the ft model by "model=model.to("cuda")" it appeared OOM. And I have set 'os.environ['CUDA_VISIBLE_DEVICES'] = "0,1,2,3,4,5,6,7"' during generation. | open | 2023-03-20T06:52:20Z | 2023-03-20T06:52:20Z | https://github.com/tatsu-lab/stanford_alpaca/issues/102 | [] | Hins | 0 |
kubeflow/katib | scikit-learn | 1,664 | Use distroless image as the base image, run Katib components as a non-root user | /kind discussion
Once the ephemeral debug containers feature is available by default, we might better change the base image from the alpine to the distroless image, run Katib components as a non-root user.
Ref:
- https://github.com/kubeflow/katib/pull/1662#discussion_r706635579
- [Debugging with an ephemeral d... | open | 2021-09-14T12:37:56Z | 2022-03-02T16:14:09Z | https://github.com/kubeflow/katib/issues/1664 | [
"kind/discussion",
"lifecycle/frozen"
] | tenzen-y | 8 |
redis/redis-om-python | pydantic | 493 | Error while having multiple levels of Embedded Json Model | I'm trying out the following example:
```
from redis_om import Migrator, Field, JsonModel, get_redis_connection, EmbeddedJsonModel, HashModel
from pydantic import BaseModel
from typing import Optional
class Level2(EmbeddedJsonModel):
c: str
class Level1(EmbeddedJsonModel):
a: Optional[Level2]
... | open | 2023-03-13T18:58:50Z | 2024-12-09T08:33:41Z | https://github.com/redis/redis-om-python/issues/493 | [] | Mograbi | 1 |
ckan/ckan | api | 8,190 | Parse malformed requests properly | ## CKAN version
2.10.4
## Describe the bug
Somebody or something is occasionally flooding my CKAN instance with malformed GET requests. These sometimes cause a 500 internal server error.
### Steps to reproduce
Click one of these links:
- https://demo.ckan.org/organization/?q=%25SYSTEMROOT%25%5Cwin.ini%00&so... | open | 2024-04-17T21:14:55Z | 2024-05-20T09:13:50Z | https://github.com/ckan/ckan/issues/8190 | [
"Good for Contribution"
] | paulmueller | 1 |
aio-libs/aiomysql | sqlalchemy | 731 | Any way to remove this deprecation warning - python verison: 3.9.0? | ### Is your feature request related to a problem?
```
DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
self._cond = asyncio.Condition(loop=loop)
C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.2800.0_x64__qbz5n2kfra8p0\lib\asyncio... | closed | 2022-02-15T17:08:18Z | 2022-02-16T15:05:39Z | https://github.com/aio-libs/aiomysql/issues/731 | [
"bug"
] | timotei-za | 3 |
aminalaee/sqladmin | asyncio | 489 | Cannot sort by Foreign Key | ### Checklist
- [X] The bug is reproducible against the latest release or `master`.
- [X] There are no similar issues or pull requests to fix it yet.
### Describe the bug
When I'm trying to sort a table using foreign key value, I got an error. My question is: is it even possible?
Error I have:
sqlalchemy.exc.Com... | closed | 2023-05-11T16:09:01Z | 2023-08-01T07:05:53Z | https://github.com/aminalaee/sqladmin/issues/489 | [] | patrykko-intel | 5 |
jonaswinkler/paperless-ng | django | 1,236 | [Other] Docker secrets support / _FILE environment variables | Hi,
I have notices an issue with using _FILE environment variables / docker secrets.
I have all my passwords, keys, etc. stored in files, name them in my docker-compose as secrets, give the container access to the needed secrets and then pass them to the environment variable.
For this you usually just append _FILE... | open | 2021-08-16T17:31:35Z | 2021-08-21T07:02:35Z | https://github.com/jonaswinkler/paperless-ng/issues/1236 | [] | KillerTic | 1 |
vitalik/django-ninja | django | 989 | [BUG] Setting auth=None at the router level doesn't disable auth for the router when using global auth | **Bug Description**
When using global auth like this:
```python
api = NinjaAPI(auth=SomeAuth())
```
I expect to be able to exempt some routers by using `auth=None` at the router level:
```python
# Either when creating the router
some_router = Router(auth=None)
# Or when registering the router
api.ad... | open | 2023-12-08T03:53:31Z | 2023-12-08T07:56:14Z | https://github.com/vitalik/django-ninja/issues/989 | [] | joseph-sabido | 0 |
quantumlib/Cirq | api | 6,733 | Scripts in dev_tools would benefit from updated and additional documentation | **Description of the issue**
Most of the scripts in `dev_tools/` do are not described anywhere, most don't support a `--help` or similar command-line argument, and most either lack a usage description in comments within the file, or what _is_ there is out of date. For example, `dev_tools/modules.py` has a usage docs... | open | 2024-09-18T14:17:01Z | 2025-03-19T18:35:15Z | https://github.com/quantumlib/Cirq/issues/6733 | [
"triage/accepted",
"area/ci",
"area/docs"
] | mhucka | 0 |
microsoft/nni | data-science | 5,760 | ChildProcessError: Command failed due to the wrong path? | **Describe the issue**:
Hi, here is part of the error log:
ChildProcessError: Command failed: powershell.exe New-Item -Path "C:\Users\DAYINC~1\AppData\Local\Temp/Dayin Chen/nni/script" -ItemType "directory" -Force
New-Item : A positional parameter cannot be found that accepts argument 'Chen/nni/script'.
At line... | open | 2024-03-20T06:42:47Z | 2024-03-20T06:42:47Z | https://github.com/microsoft/nni/issues/5760 | [] | 534145232 | 0 |
browser-use/browser-use | python | 415 | Use generated code without LLM | ### Problem Description
Let say I'm running browser use one time.
I would like to be able to take generated code and run it for the same scenario without the need to call LLM again.
It'll be best for recurring activities and reduce LLM usage.
Moshe
### Proposed Solution
I would like to be able to take generated co... | open | 2025-01-26T14:15:46Z | 2025-02-07T15:03:29Z | https://github.com/browser-use/browser-use/issues/415 | [
"enhancement"
] | moshere-cirm | 3 |
huggingface/transformers | pytorch | 36,686 | Component loading incorrect dtype | ### System Info
- `transformers` version: 4.50.0.dev0
- Platform: Linux-6.8.0-52-generic-x86_64-with-glibc2.39
- Python version: 3.12.3
- Huggingface_hub version: 0.29.3
- Safetensors version: 0.4.5
- Accelerate version: not installed
- Accelerate config: not found
- DeepSpeed version: not installed
- PyTorch version ... | closed | 2025-03-12T19:39:53Z | 2025-03-13T21:18:52Z | https://github.com/huggingface/transformers/issues/36686 | [
"bug"
] | dsocek | 3 |
smarie/python-pytest-cases | pytest | 21 | Add the possibility to use pytest marks on cases | For example I would like to mark a particular case as skipped
```python
@pytest.mark.skip("skipped because it's too easy")
def case_skipped():
return "hello"
```
| closed | 2019-02-01T13:21:43Z | 2019-02-01T14:29:52Z | https://github.com/smarie/python-pytest-cases/issues/21 | [
"enhancement"
] | smarie | 0 |
SciTools/cartopy | matplotlib | 2,391 | Broken WMTS examples in gallery | ### Description
<!-- Please provide a general introduction to the issue/proposal. -->
At least since the version 0.23 release, the three WMTS examples in the documentation/gallery have been broken. A minimal example of the problem is attached below. After investigating the issue, it results from owslib throwing an ex... | closed | 2024-05-24T03:22:45Z | 2024-06-22T18:48:22Z | https://github.com/SciTools/cartopy/issues/2391 | [] | lgolston | 1 |
matterport/Mask_RCNN | tensorflow | 2,998 | MRCNN-TF2.5 upgrade: Exception has occurred: TypeError unhashable type: 'ListWrapper' when adding loss to keras model | I am updating MRCNN to work on TF2.5 and am running into this issue:
Exception has occurred: TypeError
unhashable type: 'ListWrapper'
coming from: ----------------------------------------------------------
loss_orig = tf.reduce_mean(layer.output, keepdims=True) * self.config.LOSS_WEIGHTS.get(name, 1.) #origi... | open | 2023-11-02T18:21:24Z | 2024-06-14T15:16:45Z | https://github.com/matterport/Mask_RCNN/issues/2998 | [] | lrpalmer27 | 2 |
sinaptik-ai/pandas-ai | data-visualization | 1,231 | Unnecessary datatype mismatch error | Pandas AI | ### System Info
OS version: Windows 11 pro
Python version: 3.9
The current version of pandasai being used: 2.2
### 🐛 Describe the bug
Hi @gventuri, hope this message finds you well.
I am here with an unexpected behaviour that I am experiencing for so long. Please look into it:
PROMPT
show last 10 records
... | closed | 2024-06-13T20:21:23Z | 2024-09-19T16:07:43Z | https://github.com/sinaptik-ai/pandas-ai/issues/1231 | [
"bug"
] | usmanbinimran-octopus | 2 |
gradio-app/gradio | data-visualization | 10,223 | Request for Adding error handling for gradio_client's TypeError: can only concatenate str (not "bool") to str | gradio_client/client.py has an issue at the line 1181. The issue seem to be same as described in [#4884](https://github.com/gradio-app/gradio/issues/4884) which has been fixed in [PR #4886](https://github.com/gradio-app/gradio/pull/4886).
https://github.com/gradio-app/gradio/blob/501adefd0c3d5769055ef2156c85e586eb60... | closed | 2024-12-18T02:28:42Z | 2024-12-18T17:20:33Z | https://github.com/gradio-app/gradio/issues/10223 | [
"needs repro"
] | yokomizo-tech | 3 |
JaidedAI/EasyOCR | machine-learning | 1,321 | training not giving the expected results | hi ,
I'm trying to train EasyOCR on Arabic new fonts, we created a dataset of 1200 image with the labels after training the new model used to check some images where the results are very poor , the yaml file, sample of the images and labels attached
Anyone can support in this or guide me if I'm doing something wrong... | open | 2024-10-15T17:57:16Z | 2025-03-08T15:36:45Z | https://github.com/JaidedAI/EasyOCR/issues/1321 | [] | RamadanHussein | 8 |
onnx/onnx | pytorch | 6,226 | External Data Conversion is not saving most data with alignment support. Therefore, mmap support disabled for these initializers | # Bug Report
### Is the issue related to model conversion?
Yes, but the conversion is taking place in ONNX code
### Describe the bug
External Data Conversion is not saving most data in page aligned 4k sizes. Therefore, mmap support disabled for these initializers.
Here is the doc for External Data format - h... | closed | 2024-07-11T19:16:36Z | 2024-10-15T23:54:00Z | https://github.com/onnx/onnx/issues/6226 | [
"bug"
] | ivberg | 2 |
keras-team/keras | pytorch | 21,076 | calculate score calculation within callback | ```python
import keras
def get_model():
model = keras.Sequential()
model.add(keras.layers.Dense(1))
model.compile(
optimizer=keras.optimizers.RMSprop(learning_rate=0.1),
loss="mean_squared_error",
metrics=["mean_absolute_error"],
)
return model
(x_train, y_train), (x_test, ... | open | 2025-03-20T20:18:57Z | 2025-03-21T11:10:29Z | https://github.com/keras-team/keras/issues/21076 | [
"keras-team-review-pending"
] | pure-rgb | 2 |
strawberry-graphql/strawberry | asyncio | 3,443 | Feature Request: Info context in scalar serialization | <!--- Provide a general summary of the changes you want in the title above. -->
<!--- This template is entirely optional and can be removed, but is here to help both you and us. -->
<!--- Anything on lines wrapped in comments like these will not show up in the final text. -->
## Feature Request Type
- [ ] Cor... | open | 2024-04-08T15:39:57Z | 2025-03-20T15:56:40Z | https://github.com/strawberry-graphql/strawberry/issues/3443 | [] | Skeen | 4 |
labmlai/annotated_deep_learning_paper_implementations | machine-learning | 245 | ppo code running error | Hello, can you take a look at the following error? Thanks.
run code [experiment.py
](https://github.com/labmlai/annotated_deep_learning_paper_implementations/blob/master/labml_nn/rl/ppo/experiment.py)
https://github.com/labmlai/annotated_deep_learning_paper_implementations/blob/a0679ecd90b41b8e012995a6bdf095edae... | open | 2024-02-28T16:43:08Z | 2024-06-24T10:34:48Z | https://github.com/labmlai/annotated_deep_learning_paper_implementations/issues/245 | [] | cxw-droid | 1 |
sammchardy/python-binance | api | 651 | BinanceAPIException: APIError(code=-1100): Illegal characters found in parameter 'symbol' | **Describe the bug**
A clear and concise description of what the bug is.
I saw this error for many of the other parameters too. I'm trying to get historical_klines Before I used a hardcode value and it worked fine, now I get the symbol from a querystring, which results in this error
**To Reproduce**
@app.route('/... | open | 2021-01-23T23:17:35Z | 2021-01-27T00:39:06Z | https://github.com/sammchardy/python-binance/issues/651 | [] | ufotje | 4 |
widgetti/solara | flask | 735 | Apply solara theming to arbitrary HTML page elements | Consider a case where css rules apply styling to a page's `body` HTML element:
```python
import solara as sl
from solara import lab as sl_lab
@sl.component
def Page():
sl.Style(
"""
body {
max-width: 800px;
margin: 30px auto 2em auto !important;
... | open | 2024-08-15T16:07:30Z | 2024-08-19T14:53:53Z | https://github.com/widgetti/solara/issues/735 | [] | ntjess | 1 |
wagtail/wagtail | django | 12,563 | 🎛️ Create a new `ZoneController` to remove reliance on jQuery for toggling classes based on DOM events | ### Is your proposal related to a problem?
Currently we use jQuery for common behaviour such as 'add this class when hovered' or 'remove this class when event fires', these are common use cases that would be great candidates for our Stimulus migration.
As a start, we should replace this specific jQuery usage with a n... | closed | 2024-11-11T02:29:13Z | 2024-11-20T06:31:50Z | https://github.com/wagtail/wagtail/issues/12563 | [
"type:Enhancement",
"type:Cleanup/Optimisation",
"component:Images",
"component:Documents",
"javascript",
"component:Stimulus"
] | lb- | 5 |
modelscope/data-juicer | streamlit | 164 | pip install -v -e .报错 Removed pypdfium2>=4.18.0 from https://files.pythonhosted.org/packages/7b/d1/d05fad9041c3f1e31dcb53f0bbb4d41ffec99b8b4d523ac527b6b908e4ed/pypdfium2-4.25.0.tar.gz#sha256=1691bfa3e65bc84fd8b1d26a6d68af90f9662771a647dd6c4e031d81c4a72037 (from pdfplumber->py-data-juicer==0.1.2) from build tracker '/... | ### Before Asking 在提问之前
- [X] I have read the [README](https://github.com/alibaba/data-juicer/blob/main/README.md) carefully. 我已经仔细阅读了 [README](https://github.com/alibaba/data-juicer/blob/main/README_ZH.md) 上的操作指引。
- [X] I have pulled the latest code of main branch to run again and the problem still existed. 我已经拉取了主分... | closed | 2023-12-30T11:27:10Z | 2024-01-29T09:31:53Z | https://github.com/modelscope/data-juicer/issues/164 | [
"question",
"stale-issue"
] | THUchenzhou | 3 |
BeanieODM/beanie | pydantic | 783 | [BUG] BackLink error when keep_nulls is set to False | **Describe the bug**
BackLinks results in a value error when keep_nulls is set to False. Specifically fails at this line of code: `return {key: self.encode(value) for key, value in obj.items()}`.
**To Reproduce**
```python
class House(Document, extra="allow"):
name: str
door: Link["Door"]
c... | closed | 2023-11-13T22:54:40Z | 2024-06-18T12:47:21Z | https://github.com/BeanieODM/beanie/issues/783 | [
"Stale"
] | Ky73 | 3 |
HumanSignal/labelImg | deep-learning | 739 | Can't use labelImg.py on Windows | <!--Can't use labelImg.py on Windows
-->I have installed Python, PyQt5 and install lxml,but when I run labelImg.py ,there are some error run,like this:
-->(tf2) D:\Programming\tool\labelImg>pyrcc5 -o libs/resources.py resources.qrc
-->(tf2) D:\Programming\tool\labelImg>python labelImg.py
Traceback (most recent call... | open | 2021-04-23T03:45:42Z | 2023-08-20T18:44:05Z | https://github.com/HumanSignal/labelImg/issues/739 | [] | KCSoftDL | 4 |
junyanz/pytorch-CycleGAN-and-pix2pix | pytorch | 1,268 | 256 pixel output, not 512, despite training on --load_size 512 | I've read the FAQ and training tips carefully. Nonetheless, my 512 height images are being output as 256 at test time. Why?
Train:
```
!python train.py --continue_train --gpu_ids 0 --dataroot ./datasets/joseph--name joseph --model pix2pix --preprocess crop --no_flip --load_size 512 --crop_size 256 --display_winsi... | open | 2021-04-05T11:40:24Z | 2022-02-15T20:59:40Z | https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/1268 | [] | turian | 3 |
thp/urlwatch | automation | 352 | 404 Client Error | Could anyone help to find out why 404 error occurs? The url opens well with browser.
```
$ cat ~/.config/urlwatch/urls.yaml
kind: url
name: RN6Pro_3-32
url: https://pandao.ru/product/751adf5b-306d-4ca8-bed1-7733219f992f
filter: element-by-tag:title
```
```
$ urlwatch
==========================================... | closed | 2019-01-25T15:16:13Z | 2019-01-30T07:54:38Z | https://github.com/thp/urlwatch/issues/352 | [] | spvkgn | 5 |
tox-dev/tox | automation | 2,552 | tox4: regression automatic provisioning is broken | Apparently in tox4 (rewrite branch), automatic provisioning is broken, causing creation of an invalid environment inside `.tox/.tox`, one which seems to have `deps` from `testenv` instead of those from `requires`.
It is easy to reproduce the problem by adding `tox-extra` to requires. Latest version of `tox-extra==1.... | closed | 2022-11-27T23:32:55Z | 2022-11-28T10:50:49Z | https://github.com/tox-dev/tox/issues/2552 | [
"bug:critical :scream:",
"tox4"
] | ssbarnea | 1 |
sngyai/Sequoia | pandas | 60 | 有没有程序运行之后的结果展示图,windows怎么取用 | 有没有程序运行之后的结果展示图,windows怎么取用 | closed | 2024-05-10T16:36:59Z | 2025-03-05T09:46:56Z | https://github.com/sngyai/Sequoia/issues/60 | [] | Franklyn1987 | 1 |
robinhood/faust | asyncio | 351 | "Monitor lost event in state for ..." warning when using Stream.take | ## Checklist
- [x] I have included information about relevant versions
- [ ] I have verified that the issue persists when using the `master` branch of Faust.
## Steps to reproduce
Use [Stream.take](https://faust.readthedocs.io/en/latest/reference/faust.streams.html#faust.streams.Stream.take) on a simple strea... | closed | 2019-05-15T13:00:10Z | 2019-06-20T18:41:47Z | https://github.com/robinhood/faust/issues/351 | [] | jsundh | 4 |
allenai/allennlp | pytorch | 5,495 | Updating model for Coreference Resolution | I noticed a new SoTA on Ontonotes 5.0 Coreference task on [paperswithcode](https://paperswithcode.com/paper/word-level-coreference-resolution#code)
The author provides the model (.pt) file in [their git repo](https://github.com/vdobrovolskii/wl-coref#preparation) and claims it to be faster (since it uses RoBERTa) wh... | closed | 2021-12-06T05:26:48Z | 2022-01-06T15:57:46Z | https://github.com/allenai/allennlp/issues/5495 | [
"question"
] | aakashb95 | 2 |
jpadilla/django-rest-framework-jwt | django | 235 | last_login does not get updated | There is a field in the user model of the django.contrib.auth called last_login. This gets updated by the update_last_login function of which I think is fired upon login to the admin.
neither
rest_framework_jwt.views.obtain_jwt_token
or
rest_framework_jwt.views.refresh_jwt_token
updates this field in the user model.... | closed | 2016-04-19T14:46:25Z | 2019-09-18T09:53:21Z | https://github.com/jpadilla/django-rest-framework-jwt/issues/235 | [] | djorgesen | 6 |
graphql-python/graphene-sqlalchemy | sqlalchemy | 291 | How to set resolver in SQLAlchemyObjectType after declare? | For example:
```python
import graphene
from graphene_sqlalchemy import SQLAlchemyObjectType, SQLAlchemyConnectionField
class UserNode(SQLAlchemyObjectType):
class Meta:
model = User
interfaces = (Node,)
setattr(UserNode, 'resolve_cool_filed' resolver)
class Query(graphene.ObjectType... | closed | 2020-10-02T20:51:45Z | 2023-02-24T14:55:37Z | https://github.com/graphql-python/graphene-sqlalchemy/issues/291 | [
":eyes: more info needed"
] | Baddhizm | 3 |
Miserlou/Zappa | django | 1,414 | Make an HTTPS request to endpoint instead of touch after deploy/update | <!--- Provide a general summary of the issue in the Title above -->
## Context
<!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug -->
<!--- Also, please make sure that you are running Zappa _from a virtual environment_ and are using Python 2.7/3.6 -->
When a zappa pr... | open | 2018-02-23T17:16:48Z | 2019-03-02T16:24:46Z | https://github.com/Miserlou/Zappa/issues/1414 | [
"enhancement",
"feature-request",
"good-idea"
] | mcrowson | 3 |
FlareSolverr/FlareSolverr | api | 372 | [idope] (testing) Exception (idope): Challenge detected but FlareSolverr is not configured: Challenge detected but FlareSolverr is not configured | **Please use the search bar** at the top of the page and make sure you are not creating an already submitted issue.
Check closed issues as well, because your issue may have already been fixed.
### How to enable debug and html traces
[Follow the instructions from this wiki page](https://github.com/FlareSolverr/Fl... | closed | 2022-04-21T09:31:28Z | 2022-04-21T22:38:11Z | https://github.com/FlareSolverr/FlareSolverr/issues/372 | [] | nabilxkhabir | 0 |
jupyter/nbviewer | jupyter | 769 | How to add custom domain to the nbviewer rendered url? | How I can run the nbviewer in my servers and return URL should contain public IP/domain name.
For example:
https://nbviewer.jupyter.org/github/Srinivasb0/Data_Science_tutorial/blob/master/Job_Analysis_for_DataScientist.ipynb
To:
https://xyz.com/github/Srinivasb0/Data_Science_tutorial/blob/master/Job_Analysis_fo... | closed | 2018-05-20T00:25:08Z | 2018-09-01T17:14:36Z | https://github.com/jupyter/nbviewer/issues/769 | [
"type:Question",
"status:Need Info"
] | Srinivasb0 | 3 |
litestar-org/litestar | api | 3,650 | Bug(OpenAPI): Schema generation doesn't resolve signature types for "nested" objects | ### Description
OpenAPI schema generation fails if it encounters a "nested" object with a type which is not available at runtime but could be resolved using `signature types/namespaces`.
### URL to code causing the issue
_No response_
### MCVE
main.py
```py
from litestar import Litestar, get
from ... | open | 2024-08-02T11:26:08Z | 2025-03-20T15:54:51Z | https://github.com/litestar-org/litestar/issues/3650 | [
"Bug :bug:",
"OpenAPI"
] | floxay | 0 |
ultralytics/ultralytics | deep-learning | 19,237 | Add Reinforcement Learning to YOLOv8 Training for Reducing False - Positives and Over - detections | ### Search before asking
- [x] I have searched the Ultralytics [issues](https://github.com/ultralytics/ultralytics/issues) and found no similar feature requests.
### Description
Computer vision researchers, developers, and engineers who are using YOLOv8 for object detection tasks such as autonomous driving, securit... | open | 2025-02-14T01:40:42Z | 2025-02-15T06:14:46Z | https://github.com/ultralytics/ultralytics/issues/19237 | [
"enhancement",
"detect"
] | yxl23 | 4 |
httpie/cli | python | 1,418 | --help fails with a traceback when pip is not installed | ## Checklist
- [x] I've searched for similar issues.
- [x] I'm using the latest version of HTTPie.
---
## Minimal reproduction code and steps
1. `http --help` or `https --help`
## Current result
<details><summary>output with traceback</summary>
```py
$ http --help
Traceback (most recent call las... | closed | 2022-06-22T16:16:32Z | 2022-07-21T04:07:41Z | https://github.com/httpie/cli/issues/1418 | [
"bug",
"new"
] | classabbyamp | 1 |
napari/napari | numpy | 7,707 | [0.6.0a, ipykernel 7a1] Console viewer button doesn't open console | ### 🐛 Bug Report
Fresh install, python 3.13
`pip install --pre napari[pyqt6, optional]`
Clicking the viewer button (or using palette) to open the console gives a traceback:
`AttributeError: 'QtViewer' object has no attribute 'console'`
<details>
```
-------------------------------------------------------------------... | open | 2025-03-15T18:05:41Z | 2025-03-16T14:57:17Z | https://github.com/napari/napari/issues/7707 | [
"bug",
"priority:high"
] | psobolewskiPhD | 6 |
ploomber/ploomber | jupyter | 514 | Stale ploomber versions | After checking through pipy stats which versions users use I discovered a gap between the current available version and the one people uses, I was able to see that even though the current version is 0.14.7, some users still leverage really old versions like 0.12.2, 0.7.3 and 0.2.
The goal here is to make sure users ... | closed | 2022-01-31T16:36:48Z | 2022-03-16T14:32:13Z | https://github.com/ploomber/ploomber/issues/514 | [] | idomic | 3 |
jupyter/nbviewer | jupyter | 226 | Non-ipynb links within the GitHub repo get handled as ipynb | closed | 2014-03-20T18:08:03Z | 2014-03-20T18:51:38Z | https://github.com/jupyter/nbviewer/issues/226 | [] | rgbkrk | 1 | |
dynaconf/dynaconf | flask | 1,186 | [bug] setup.py deprecation on pip 25.0 - move to pyproject/uv | ```bash
DEPRECATION: Legacy editable install of dynaconf==3.3.0.dev0 from file:///src/dynaconf
(setup.py develop) is deprecated.
pip 25.0 will enforce this behaviour change.
A possible replacement is to add a pyproject.toml or enable --use-pep517,
and use setuptools >= 64. If the resulting installation is ... | open | 2024-10-11T12:38:41Z | 2024-10-11T12:38:42Z | https://github.com/dynaconf/dynaconf/issues/1186 | [
"bug",
"HIGH"
] | rochacbruno | 0 |
2noise/ChatTTS | python | 793 | 请问支持实时流式输出吗,看了一下接口,不是真正的实时流式 | closed | 2024-10-21T02:55:47Z | 2024-12-16T04:01:34Z | https://github.com/2noise/ChatTTS/issues/793 | [
"documentation",
"stale"
] | wu-tender | 4 | |
sgl-project/sglang | pytorch | 4,501 | [Feature] support sgl-kernel cu128 build | ### Checklist
- [ ] 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.
- [ ] 2. Please use English, otherwise it will be closed.
### Motivation
for blackwell
### Related resources
_No re... | open | 2025-03-17T09:16:55Z | 2025-03-20T10:47:42Z | https://github.com/sgl-project/sglang/issues/4501 | [
"good first issue",
"help wanted",
"high priority"
] | zhyncs | 5 |
miguelgrinberg/Flask-Migrate | flask | 450 | Some tables are not recognized when using migration | closed | 2021-12-29T20:33:09Z | 2021-12-29T21:59:27Z | https://github.com/miguelgrinberg/Flask-Migrate/issues/450 | [] | samira-karimi | 1 | |
QingdaoU/OnlineJudge | django | 415 | 代码中包含多次的cout<<endl提交判题会发生RE | 

问题代码
```C++
#include <bits/stdc++.h>
using namespace std;
int main(){
for (int i=0;i<4... | open | 2022-05-15T10:51:53Z | 2022-05-15T10:52:35Z | https://github.com/QingdaoU/OnlineJudge/issues/415 | [] | CsomePro | 1 |
matterport/Mask_RCNN | tensorflow | 2,284 | tensorflow v2.2 cuda 10.1 Training error | I am upgrading to TensorFlow 2.2 CUDA 10.1 and changing the code. But there is one problem.
There is no problem with the existing mask detection. However, there is a problem in training.
The h5 model is created but not recognized. Is it a version problem?
For reference, I did a training test in TensorFlow v1.14 a... | open | 2020-07-16T12:11:15Z | 2020-08-23T16:15:38Z | https://github.com/matterport/Mask_RCNN/issues/2284 | [] | moonplay85 | 2 |
mars-project/mars | scikit-learn | 2,651 | Adapt to deprecation of `Int64Index` in pandas 1.4 | In pandas 1.4, `Index` is to replace `Int64Index`, `UInt64Index` and `FloatIndex`. The latter will be dropped in pandas 2.0. It is needed for Mars to adapt to this API change. | closed | 2022-01-23T08:11:07Z | 2022-02-16T22:26:05Z | https://github.com/mars-project/mars/issues/2651 | [
"type: enhancement",
"mod: dataframe",
"task: medium"
] | wjsi | 0 |
DistrictDataLabs/yellowbrick | matplotlib | 1,240 | Unable to Use Keras Model for Visualizations | Hi all
Great work. I am trying to use a keras trained model (with 30~ classes) with the classification visualizers ?
But I get the following error. -
`yellowbrick.exceptions.YellowbrickTypeError: This estimator is not a classifier; try a regression or clustering score visualizer instead!`
Is there a way to ... | closed | 2022-04-27T23:11:46Z | 2022-07-12T13:48:09Z | https://github.com/DistrictDataLabs/yellowbrick/issues/1240 | [
"type: question"
] | raghavgurbaxani | 1 |
jina-ai/serve | machine-learning | 5,510 | feat: implement unordered results when using grpc client unary RPC interface | **Describe the feature**
<!-- A clear and concise description of what the feature is. -->
The unary RPC interface was introduced in #5499 to improve performance of gRPC client requests. The implementation in #5499 only supports returning responses in order even though the requests are handled asynchronously.
| closed | 2022-12-12T16:03:59Z | 2022-12-15T16:57:56Z | https://github.com/jina-ai/serve/issues/5510 | [] | girishc13 | 0 |
ScrapeGraphAI/Scrapegraph-ai | machine-learning | 746 | Error when using DocumentScraperGraph: AttributeError: 'str' object has no attribute 'page_content' | import os,json
from dotenv import load_dotenv
from scrapegraphai.graphs import DocumentScraperGraph
from pdfminer.high_level import extract_text
load_dotenv()
# Define the configuration for the graph
graph_config = {
"llm": {
"api_key": os.getenv("OPENAI_API_KEY"), # Use the OpenAI API key
... | closed | 2024-10-12T04:07:17Z | 2024-10-14T15:25:49Z | https://github.com/ScrapeGraphAI/Scrapegraph-ai/issues/746 | [] | 22sauravt | 3 |
JaidedAI/EasyOCR | deep-learning | 456 | TRGB command used in Data synthesis |
I understand that 'TextRecognitionDataGenerator' was used to generate learning data.
I want to know the data generation command.
1. how many words should be included in each generated image ( 1 ? 1 more word?)
2. Do images created with the command use 'basic', 'text-skew', 'text-distortion', 'text-blurring', and... | closed | 2021-06-11T09:04:37Z | 2022-03-02T09:25:01Z | https://github.com/JaidedAI/EasyOCR/issues/456 | [] | pennant97 | 0 |
tensorflow/datasets | numpy | 8,981 | NonMatchingChecksumError when loading cnn_dailymail dataset in Google Colab | **Description:**
I encountered a NonMatchingChecksumError while trying to load the cnn_dailymail dataset using TensorFlow Datasets in Google Colab. The error indicates that the checksum of the downloaded file does not match the expected checksum.
**Environment information**
Operating System: Google Colab
Pytho... | closed | 2024-11-30T08:53:24Z | 2025-01-15T12:36:29Z | https://github.com/tensorflow/datasets/issues/8981 | [
"bug"
] | Tkag0001 | 1 |
pyeve/eve | flask | 875 | Filtering objectid field on Pre-Request Event Hooks | Hi, thank you for this awesome project!
I am having trouble trying go filtering an objectid field on_pre_<method>_<resource> event hooks.
the domain:
```
store = {
'source': 'store',
'item_title': 'store',
'url': 'store',
'schema': {
'supplier_id': { 'type': 'objectid' },
'nam... | closed | 2016-06-12T07:26:02Z | 2016-06-21T16:39:39Z | https://github.com/pyeve/eve/issues/875 | [] | simiwe | 0 |
modelscope/modelscope | nlp | 584 | train.evalue()评价时报错 please check whether model config exists in {ModelFile.CONFIGURATION} | closed | 2023-10-12T07:02:06Z | 2024-06-30T01:55:04Z | https://github.com/modelscope/modelscope/issues/584 | [
"Stale"
] | CourseAI2015 | 3 | |
NullArray/AutoSploit | automation | 1,013 | Ekultek, you are correct. | Kek | closed | 2019-04-19T16:46:51Z | 2019-04-19T16:57:50Z | https://github.com/NullArray/AutoSploit/issues/1013 | [] | AutosploitReporter | 0 |
thtrieu/darkflow | tensorflow | 588 | Evaluation metrics: mAP | How do I evaluate mAP (mean average precision) of my own dataset?
@thtrieu on issue #70 suggested outputting the JSON file and then create a script to report mAP on your own.
But anyone did that already?
If so please share the script.
I need a way to evaluate my test set or my training set. If mAP is not possible... | closed | 2018-02-19T16:04:29Z | 2018-12-20T22:45:38Z | https://github.com/thtrieu/darkflow/issues/588 | [] | offchan42 | 2 |
comfyanonymous/ComfyUI | pytorch | 6,884 | Image Sharpen node broken on mac | Currently using a M1 MBP with device set to MPS and `PYTORCH_ENABLE_MPS_FALLBACK=1` set to prevent errors from some nodes.
The Image Sharpen node seems to be broken (produces garbage results).
Seems this PR wasn't ever merged?
https://github.com/comfyanonymous/ComfyUI/issues/3383
When I copy the PR manually it fixed... | open | 2025-02-19T21:45:43Z | 2025-02-19T21:45:58Z | https://github.com/comfyanonymous/ComfyUI/issues/6884 | [
"Potential Bug"
] | austinmw | 0 |
littlecodersh/ItChat | api | 632 | 如何解决被封问题 | 这个问题无解了吗?那还怎么玩?
网上有一些专门做群转发服务的商家,好像可以避免这个问题
他们是怎么实现的呢? | closed | 2018-04-12T01:48:26Z | 2018-06-05T15:54:20Z | https://github.com/littlecodersh/ItChat/issues/632 | [] | ymli1981 | 2 |
ludwig-ai/ludwig | computer-vision | 3,377 | Render config CLI test fails | In the CI, the following test fails with Python 3.8, PyTorch 1.13.0, Ray 2.2: https://github.com/ludwig-ai/ludwig/actions/runs/4856799639/jobs/8656710939?pr=3351#step:12:1872
It does not reproduce locally, which may mean it has to do with some underlying dependency. To execute the test, run this command:
```
pytes... | closed | 2023-05-02T14:16:44Z | 2024-10-18T13:35:22Z | https://github.com/ludwig-ai/ludwig/issues/3377 | [
"bug"
] | geoffreyangus | 0 |
nschloe/tikzplotlib | matplotlib | 425 | TeX code changes after calling pyplot.savefig() | Calling `plt.savefig()` changes the tikzplotlib result. A minimized example is the following. Complicated examples of this bug can be found in #416 and #400 .
```py
from matplotlib import pyplot as plt
import tikzplotlib
import numpy as np
plt.plot([-1, 0])
code_before = tikzplotlib.get_tikz_code()
plt.savefig... | open | 2020-07-22T09:38:14Z | 2021-02-08T10:45:28Z | https://github.com/nschloe/tikzplotlib/issues/425 | [] | MaxGaukler | 1 |
Asabeneh/30-Days-Of-Python | python | 406 | png on introduction is broken | png on introduction is broken | closed | 2023-06-19T10:41:42Z | 2023-06-20T10:28:35Z | https://github.com/Asabeneh/30-Days-Of-Python/issues/406 | [] | CR00N0S | 0 |
pydantic/bump-pydantic | pydantic | 64 | "Usage" reference in README seems incomplete | … or at least can be confusing.
If I read https://docs.pydantic.dev/latest/migration/#code-transformation-tool it seem I have to `cd` inside the package directory:
> The usage is simple. If your project structure is:
>
>
> ```
> * repo_folder
> * my_package
> * <python source files> ...
> ```
... | closed | 2023-07-10T08:16:03Z | 2023-07-11T15:39:57Z | https://github.com/pydantic/bump-pydantic/issues/64 | [] | keul | 5 |
fastapiutils/fastapi-utils | fastapi | 67 | simplifiy_operation_ids is sometimes mangling API names | I'm using simplify_operation_ids to generate user friendly client API names. Most of the time this works well, but sometimes the names get mangled. I've created a simplified example below.
```
from fastapi import FastAPI
from pydantic import BaseModel
from fastapi_utils.openapi import simplify_operation_ids
... | closed | 2020-06-18T18:42:43Z | 2020-06-20T16:00:44Z | https://github.com/fastapiutils/fastapi-utils/issues/67 | [
"question"
] | jsilverpa | 1 |
miguelgrinberg/python-socketio | asyncio | 121 | How to add http header Access-Control-Allow-Origin in order to cross domain? | closed | 2017-07-26T14:13:36Z | 2017-07-26T14:29:38Z | https://github.com/miguelgrinberg/python-socketio/issues/121 | [] | qwIvan | 0 | |
modelscope/data-juicer | data-visualization | 621 | 算子的使用方法 | ### Before Asking 在提问之前
- [x] I have read the [README](https://github.com/alibaba/data-juicer/blob/main/README.md) carefully. 我已经仔细阅读了 [README](https://github.com/alibaba/data-juicer/blob/main/README_ZH.md) 上的操作指引。
- [x] I have pulled the latest code of main branch to run again and the problem still existed. 我已经拉取了主分... | open | 2025-03-15T11:49:01Z | 2025-03-15T11:49:01Z | https://github.com/modelscope/data-juicer/issues/621 | [
"question"
] | tiandidatongJLR | 0 |
saleor/saleor | graphql | 16,950 | Add pricePrior field to ProductVariantChannelListing | ## Problem
EU Omnibus directive (https://eur-lex.europa.eu/eli/dir/2019/2161/oj) creates an obligation to present "prior price" in case of products with discount. This price should cover period of 30 days and include all price changes (prior promotions or changes of regular price). Details of the implementation vary... | closed | 2024-10-30T09:25:29Z | 2025-02-24T13:11:05Z | https://github.com/saleor/saleor/issues/16950 | [
"product"
] | delemeator | 2 |
plotly/dash-table | dash | 244 | Publish dash-table on conda-forge | I would love to be able to install via conda like the other dash libraries! | open | 2018-11-16T05:05:34Z | 2019-07-06T12:24:35Z | https://github.com/plotly/dash-table/issues/244 | [
"dash-type-enhancement"
] | bu-ra3y | 4 |
litestar-org/litestar | asyncio | 3,780 | Docs: testing + debug mode | ### Summary
As a new litestar user, I've just started looking at documentation to test my application.
With the default example, un-handled errors are simply turning up as 500 internal server error without much to use.
Simply setting `app.debug = True` inside the test module is enough to have a proper traceback.... | closed | 2024-10-07T14:21:48Z | 2025-03-20T15:54:57Z | https://github.com/litestar-org/litestar/issues/3780 | [
"Documentation :books:"
] | romuald | 0 |
ccxt/ccxt | api | 24,856 | Kraken client removes "Z" from the "ZEUS" currency, rendering its symbols invalid (e.g. "ZEUS/USD") | ### Operating System
Linux, MacOS
### Programming Languages
PHP, JavaScript
### CCXT Version
4.4.47
### Description
During `load_markets`, the function `kraken::safe_currency` is applied to each currency returned by Kraken. This function removes a leading "Z" or "X" character from the currency code... | closed | 2025-01-12T21:00:12Z | 2025-01-13T09:32:50Z | https://github.com/ccxt/ccxt/issues/24856 | [
"bug"
] | adriangligor | 1 |
deepset-ai/haystack | pytorch | 8,036 | Build a CSVToDocument Component | **Is your feature request related to a problem? Please describe.**
Haystack currently supports conversion of several file formats such as `.txt`, `.pdf` and `markdown`. It would be very useful to also have a Component that converts a csv format file into a list of `Document` objects.
**Describe the solution you'd l... | closed | 2024-07-17T09:26:26Z | 2024-09-06T08:59:13Z | https://github.com/deepset-ai/haystack/issues/8036 | [
"type:feature",
"Contributions wanted!"
] | tradicio | 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.