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
pallets/flask
flask
4,976
mypy 1.0 no longer accepts flask.Response as redirect type
``` from __future__ import annotations from flask import Response, redirect def handler() -> Response: return redirect("") ``` ``` ❯ .tox/type/bin/mypy magic.py magic.py:7: error: Incompatible return value type (got "werkzeug.wrappers.response.Response", expected "flask.wrappers.Response") [return-va...
closed
2023-02-13T20:16:49Z
2023-03-02T00:06:54Z
https://github.com/pallets/flask/issues/4976
[ "typing" ]
gaborbernat
2
MagicStack/asyncpg
asyncio
605
Passing table name as a parameter
Hi there, Thanks for a great library. I just swapped from `aiopg` and I'm impressed with `asyncpg` so far. I'm trying to pass a table name as an input parameter, like this: ```python await conn.fetchrow("select count(*) as count from $1", table) ``` And getting: ```txt asyncpg.exceptions.PostgresSynta...
closed
2020-08-09T18:03:02Z
2025-01-09T20:22:42Z
https://github.com/MagicStack/asyncpg/issues/605
[]
hawkaa
7
jonaswinkler/paperless-ng
django
1,552
[BUG] password authentication failed for user "paperless"
<!--- => Before opening an issue, please check the documentation and see if it helps you resolve your issue: https://paperless-ng.readthedocs.io/en/latest/troubleshooting.html => Please also make sure that you followed the installation instructions. => Please search the issues and look for similar issues before open...
closed
2022-01-16T20:19:40Z
2022-01-18T19:16:33Z
https://github.com/jonaswinkler/paperless-ng/issues/1552
[]
miknuc
1
tox-dev/tox
automation
2,872
set_env substitution doesn't pass PYTHONHASHSEED in tox 4.x
## Issue Hi, I have encountered what I believe is tox bug. With 2 test environments: base (`[testenv]`) and non-base (`[testenv:hs]`), _some_ environment variables from the base one aren't set in the non-base when they are passed as a substitution, like: ```ini [testenv] setenv = PYTHONHASHSEED=0 O...
open
2023-01-16T15:23:34Z
2024-03-05T22:15:13Z
https://github.com/tox-dev/tox/issues/2872
[ "bug:minor", "help:wanted" ]
mgoral
3
holoviz/panel
matplotlib
7,567
Make TextInput work for forms
When comparing to [Reflex](https://reflex.dev/) its clear they have given more thought to their TextInput for forms. We are missing basic attributes like - `required` (`True` or `False`) - `type` (for example `"email"`) - `pattern` (`".+@example\.com"`) That can help users when they enter text. Reflex will - make...
open
2024-12-23T07:18:32Z
2025-01-20T21:32:15Z
https://github.com/holoviz/panel/issues/7567
[ "type: enhancement" ]
MarcSkovMadsen
3
oegedijk/explainerdashboard
plotly
32
Problem with deploying a custom dashboard using waitress
I am currently trying to deploy explainer dashboards using waitress. Whereas it's working fine using the vanilla regression dashboard, there is an error when running _waitress-serve --call "dashboard:create_c_app"_ where dashboard.py is ``` from explainerdashboard import ExplainerDashboard from custom_tabs import ...
closed
2020-12-01T13:38:12Z
2020-12-01T20:18:58Z
https://github.com/oegedijk/explainerdashboard/issues/32
[]
hkoppen
6
flasgger/flasgger
api
487
Sorting tags in swagger UI
How do I sort only the tags in alpha order (I don't really care about the order of API and Operations) ? I have tried adding config similar to the ones mentioned in issue #277 but the UI is sorted based on API end point instead of tags. Kindly let me know if any other details are needed.
open
2021-07-25T14:07:02Z
2023-09-22T11:04:07Z
https://github.com/flasgger/flasgger/issues/487
[]
ajaynarayanan
10
LAION-AI/Open-Assistant
machine-learning
3,429
Download links in sft training folder
Please add links or cite to the opensource data in sft training.
closed
2023-06-14T06:04:57Z
2023-06-14T08:14:46Z
https://github.com/LAION-AI/Open-Assistant/issues/3429
[]
lucasjinreal
1
Sanster/IOPaint
pytorch
152
Error when using cpu text encoder
This error happens when using the cpu text encoder with 0.29.0: ``` ... File ".\lama-cleaner\lama_cleaner\server.py", line 159, in process res_np_img = model(image, mask, config) File ".\lama-cleaner\lama_cleaner\model_manager.py", line 38, in __call__ return self.model(image, mask, config) File "....
closed
2022-12-04T13:32:06Z
2022-12-04T14:24:21Z
https://github.com/Sanster/IOPaint/issues/152
[]
fiskbil
1
dynaconf/dynaconf
fastapi
322
[RFC] Merge all settings files before merging defaults and environment settings
**Is your feature request related to a problem? Please describe.** Currently, a default setting from settings.local.yaml takes precedence over an environment-specific setting in settings.yaml. To me, the intuitive behaviour would be that default settings in settings.local.yaml only would be used if no environment-spec...
closed
2020-03-21T13:21:29Z
2022-07-02T20:12:26Z
https://github.com/dynaconf/dynaconf/issues/322
[ "wontfix", "hacktoberfest", "Not a Bug", "RFC" ]
tjader
3
cvat-ai/cvat
computer-vision
8,504
I created a Cvat account but I did not receive the verification email
### 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 _No response_ ### Expected Behavior _No response_ ### Possible Solution _No response_ ### Context I can see that peop...
closed
2024-10-03T11:01:44Z
2024-12-07T08:17:33Z
https://github.com/cvat-ai/cvat/issues/8504
[ "bug" ]
aerngren
4
airtai/faststream
asyncio
1,181
Feature: add K8S probes checker API
We should provides users with an ability to check application health in a some way. It can be reached by using multiple mechanism, so we can create a base `Checker` Protocol and use it the following way ```python app = FastStream(broker) app.add_checker( SocketChecker("/sock"), # HTTPChecker(port=8000)...
closed
2024-01-29T16:41:18Z
2024-08-07T19:36:48Z
https://github.com/airtai/faststream/issues/1181
[ "enhancement", "good first issue" ]
Lancetnik
3
docarray/docarray
fastapi
1,324
Improve fastapi-docarray compatibility
Improve the way we send/receive DocArray objects with FastAPI. ### Context Currently, DocArray objects are received as lists, so we have to construct an actual DocArray inside the function, and in case of returning, we have to convert it into a list ourselves (done in https://github.com/docarray/docarray/pull/1320)...
closed
2023-04-02T18:03:18Z
2023-04-26T09:41:43Z
https://github.com/docarray/docarray/issues/1324
[]
jupyterjazz
1
litestar-org/litestar
api
3,130
Enhancement: Have OpenAPI Schema generation respect route handler ordering
### Summary Opening a new issue as discussed [here](https://github.com/litestar-org/litestar/issues/3059#issuecomment-1960609250). From a DX perspective I personally find very helpful to have ordered routes in the `Controller`, that follow a certain logic: - Progressive nesting (`GET /` comes before `GET /:id`...
open
2024-02-23T02:21:14Z
2025-03-20T15:54:26Z
https://github.com/litestar-org/litestar/issues/3130
[ "Enhancement" ]
ccrvlh
8
huggingface/pytorch-image-models
pytorch
1,396
Swin transformer feature extraction: same input image but get different feature vectors
Hi there, when I used pre-trained 'swin_base_patch4_window7_224_in22k' to extract a 224 feature vector for an input image, every time I called net.forward_features(INPUT), I got a different vector. Is there anything I should be aware? Thanks in advance
closed
2022-08-05T16:21:17Z
2022-08-05T16:25:06Z
https://github.com/huggingface/pytorch-image-models/issues/1396
[ "bug" ]
Dadatata-JZ
1
microsoft/qlib
machine-learning
1,284
Can i use a dataset other than the one provided by Qlib to learn the model?
## ❓ Questions and Help Can I use a dataset other than the one provided by Qlib to learn the model? If possible, is it correct to follow the contents of [Converting CSV Format into Qlib Format](https://qlib.readthedocs.io/en/latest/component/data.html#converting-csv-format-into-qlib-format)?
closed
2022-09-08T04:38:58Z
2023-03-02T09:35:36Z
https://github.com/microsoft/qlib/issues/1284
[ "question", "stale" ]
Haaae
4
Miserlou/Zappa
django
1,267
Need an improved way to distinguish Django from Flask
<!--- Provide a general summary of the issue in the Title above --> cli.py has the code ``` # Detect Django/Flask try: # pragma: no cover import django has_django = True except ImportError as e: has_django = False ``` But some people have both and don't alwa...
closed
2017-11-28T23:24:19Z
2017-11-29T01:20:52Z
https://github.com/Miserlou/Zappa/issues/1267
[]
grfiv
0
ray-project/ray
pytorch
51,135
CI test windows://python/ray/tests:test_logging is consistently_failing
CI test **windows://python/ray/tests:test_logging** is consistently_failing. Recent failures: - https://buildkite.com/ray-project/postmerge/builds/8722#01956cdc-3ef9-480f-934c-c866f9d45f90 - https://buildkite.com/ray-project/postmerge/builds/8722#01956c6c-bdef-45b6-9e8e-d051acbaa89e DataCaseName-windows://python/ra...
closed
2025-03-06T20:18:20Z
2025-03-07T20:44:30Z
https://github.com/ray-project/ray/issues/51135
[ "bug", "triage", "core", "flaky-tracker", "ray-test-bot", "ci-test", "weekly-release-blocker", "stability" ]
can-anyscale
4
allenai/allennlp
pytorch
4,855
Models: missing None check in PrecoReader's text_to_instance method.
<!-- Please fill this template entirely and do not erase any of it. We reserve the right to close without a response bug reports which are incomplete. If you have a question rather than a bug, please ask on [Stack Overflow](https://stackoverflow.com/questions/tagged/allennlp) rather than posting an issue here. --...
closed
2020-12-09T14:16:36Z
2020-12-10T20:30:06Z
https://github.com/allenai/allennlp/issues/4855
[ "bug" ]
frcnt
0
littlecodersh/ItChat
api
514
发送消息的时候,返回1024是什么原因?
`{u'MsgID': u'', u'LocalID': u'', u'BaseResponse': {u'ErrMsg': u'', u'Ret': 1204, 'RawMsg': u''}}`
closed
2017-09-20T02:24:07Z
2017-09-20T02:36:51Z
https://github.com/littlecodersh/ItChat/issues/514
[]
ysnows
2
CTFd/CTFd
flask
1,935
Make the distinction between user and team mode clearer during setup
We should probably have some kind of big checkbox div that explains what it means to be in user/teams mode. It would reduce the likelihood of needing to switch.
closed
2021-07-02T05:01:12Z
2021-07-17T19:44:24Z
https://github.com/CTFd/CTFd/issues/1935
[ "easy" ]
ColdHeat
0
ymcui/Chinese-LLaMA-Alpaca
nlp
376
为什么我训练总结提示缺失output_dir
(torch) root@autodl-container-ce8743b1d5-46215747:~/autodl-tmp/LLAMA_cn/src/Chinese-LLaMA-Alpaca/scripts# bash run_pt.sh run_pt.sh: line 7: $'\r': command not found run_pt.sh: line 17: $'\r': command not found run_pt.sh: line 19: $'\r': command not found ===================================BUG REPORT==============...
closed
2023-05-18T08:25:55Z
2023-09-22T06:52:26Z
https://github.com/ymcui/Chinese-LLaMA-Alpaca/issues/376
[ "stale" ]
fan159159
4
nok/sklearn-porter
scikit-learn
63
Fails with big dataset
train_X, val_X, train_y, val_y = train_test_split(X, y, random_state=1, train_size=0.0001) clf = DecisionTreeClassifier() clf.fit(train_X, train_y) # Export: porter = Porter(clf, language='java') output = porter.export(embed_data=True) print(output) fails with bigger train sizespython3.7/site-packages/sklear...
closed
2020-01-31T10:25:56Z
2020-01-31T10:38:13Z
https://github.com/nok/sklearn-porter/issues/63
[]
mmhobi7
2
qwj/python-proxy
asyncio
152
Is this project still maintained?
### What happened? I still use this package and still running on prod now, but I'm now a little worried that the project might be unmaintained. last PR over 7 months ago. and no new release for more than one year. this is a cool project I hope this project still continue
open
2022-07-25T03:23:16Z
2023-03-27T12:09:11Z
https://github.com/qwj/python-proxy/issues/152
[]
aarestu
1
keras-team/autokeras
tensorflow
1,853
Is there a table of Keras and AutoKeras, or which TF2 version should be installed for the latest AutoKeras?
I'm using Tensorflow 2.11 now, will it automatically uninstall keras when I install autokeras? Is there a table of Keras and AutoKeras, or which TF2 version should be installed for the latest AutoKeras?
open
2023-02-15T22:18:00Z
2023-02-16T12:04:34Z
https://github.com/keras-team/autokeras/issues/1853
[ "feature request" ]
Prince5867
1
CorentinJ/Real-Time-Voice-Cloning
tensorflow
1,314
vioce clone
please i need your help on my set up, am unable to get librispeech on my file, what should i do have downloaded it so manytime
open
2024-10-22T18:30:18Z
2024-10-22T18:30:18Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/1314
[]
richmind1
0
RobertCraigie/prisma-client-py
asyncio
661
Deserialize raw query types into richer python types
## 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` instead of `decimal.Decimal`, this was implemented this way for backw...
open
2022-12-31T23:18:37Z
2022-12-31T23:18:37Z
https://github.com/RobertCraigie/prisma-client-py/issues/661
[ "kind/improvement", "topic: client", "level/intermediate", "priority/low", "topic: raw queries" ]
RobertCraigie
0
gradio-app/gradio
deep-learning
10,411
`show_row_numbers` in `gr.Dataframe` doesn't work
### Describe the bug According to the [change log](https://github.com/gradio-app/gradio/blob/main/CHANGELOG.md), #10376 is included in `gradio==5.13.0`, but row numbers are not displayed when setting `show_row_numbers=True`. Also, when using the wheel in #10376 , row numbers is shown, but it's rendered like this: ![...
closed
2025-01-23T03:01:52Z
2025-02-05T20:20:45Z
https://github.com/gradio-app/gradio/issues/10411
[ "bug" ]
hysts
2
unit8co/darts
data-science
1,812
Please help me
Please help me I'm having problems with the tool. I'm training the model using RNNModel using yahoo finance only the close values. The loss values are: train_loss=0.000101, val_loss=0.00272 But when making the prediction (model.predict) the forecasting values are very bad. I know this is just for reporting bugs...
closed
2023-06-02T17:29:33Z
2023-08-07T08:13:35Z
https://github.com/unit8co/darts/issues/1812
[ "question" ]
rafaepires
1
cuemacro/chartpy
matplotlib
2
any difference from altair?
open
2016-08-25T15:18:03Z
2016-08-28T08:13:41Z
https://github.com/cuemacro/chartpy/issues/2
[]
den-run-ai
1
coqui-ai/TTS
deep-learning
3,574
Not working for multiple sentences
### Describe the bug When I send more than one sentence, it is giving me the error. ### To Reproduce Input Text: a tree is a perennial plant with an elongated stem, or trunk, usually supporting branches and leaves. In some usages, the definition of a tree may be narrower, including only woody plants with seco...
closed
2024-02-13T06:46:54Z
2024-06-26T16:49:25Z
https://github.com/coqui-ai/TTS/issues/3574
[ "bug", "wontfix" ]
ayushi15092002
1
qubvel-org/segmentation_models.pytorch
computer-vision
287
RuntimeError: cuDNN error: CUDNN_STATUS_NOT_INITIALIZED
`RuntimeError: cuDNN error: CUDNN_STATUS_NOT_INITIALIZED` I have tried many pytorch versions. The error is still there. Could anyone help me?
closed
2020-12-02T09:56:50Z
2020-12-03T07:58:51Z
https://github.com/qubvel-org/segmentation_models.pytorch/issues/287
[]
somebodyus
2
roboflow/supervision
tensorflow
1,042
[Detections] extend `from_transformers` with segmentation models support
### Description Currently, Supervision only supports Transformers object detection models. Let's expand [`from_transformers`](https://github.com/roboflow/supervision/blob/781a064d8aa46e3875378ab6aba1dfdad8bc636c/supervision/detection/core.py#L391) by adding support for segmentation models. ### API The code bel...
closed
2024-03-25T12:58:25Z
2024-04-11T18:03:26Z
https://github.com/roboflow/supervision/issues/1042
[ "enhancement", "good first issue", "api:detection" ]
SkalskiP
8
satwikkansal/wtfpython
python
87
Is this organization related to this repository?
I wanted to know if the following organization is connected with this project as it seems to have no connection with you, with respect to membership. **_https://github.com/wtfpython-web_**
closed
2018-06-20T22:26:34Z
2018-06-21T19:47:27Z
https://github.com/satwikkansal/wtfpython/issues/87
[]
0x48piraj
2
dropbox/sqlalchemy-stubs
sqlalchemy
194
Add "common issues" doc to cover known workarounds
I'm happy to write a first draft of this if the maintainers would like it. But I don't want to put in the effort if it's not wanted. I've run into two issues which really puzzled me in terms of what to do until I poked around in issues here. I'm sure there are others. `hybrid_property` can't use the special magic...
open
2020-12-11T15:28:53Z
2021-04-22T13:47:35Z
https://github.com/dropbox/sqlalchemy-stubs/issues/194
[]
sirosen
1
huggingface/transformers
deep-learning
36,322
Look like there is error with `sentencepiece ` and `protobuf`
### System Info Hi, I'm install transformers to convert Llama-11B-Vision-Instruct `.pth` to HF format `.safetensors`. I was carefully install follow the https://github.com/huggingface/transformers?tab=readme-ov-file#with-pip Then I run my bash command: ```sh python /home/chwenjun225/.llama/checkpoints/transformers/sr...
closed
2025-02-21T07:39:19Z
2025-02-21T15:44:31Z
https://github.com/huggingface/transformers/issues/36322
[ "bug" ]
chwenjun225
1
huggingface/transformers
machine-learning
36,272
Device Movement Error with 4-bit Quantized LLaMA 3.1 Model Loading
### System Info ```shell I'm running into a persistent issue when trying to load the LLaMA 3.1 8B model with 4-bit quantization. No matter what configuration I try, I get this error during initialization: pgsql Copy CopyValueError: `.to` is not supported for `4-bit` or `8-bit` bitsandbytes models. Please use the mode...
open
2025-02-19T07:33:39Z
2025-03-13T13:29:01Z
https://github.com/huggingface/transformers/issues/36272
[]
Pritidhrita
2
AirtestProject/Airtest
automation
883
在执行用例的过程中,会频繁发生微信闪退的问题
**描述问题bug** 测试**微信小程序** 在执行用例的过程中,会频繁发生微信闪退的问题,导致后续测试用例无法执行 **预期效果** 执行过程中能够稳定 **python 版本:** `python3.7` **airtest 版本:** `1.1.8` **设备:** - 型号: [HUAWEI Mate 10] - 系统: [Android 10]
open
2021-03-31T02:09:03Z
2021-03-31T02:09:03Z
https://github.com/AirtestProject/Airtest/issues/883
[]
DDDDanny
0
ray-project/ray
machine-learning
51,207
[Data] Adding streaming capability for `ray.data.Dataset.unique`
### Description The current [doc](https://docs.ray.io/en/latest/data/api/doc/ray.data.Dataset.unique.html) indicates that `ray.data.Dataset.unique` is a blocking operation: **_This operation requires all inputs to be materialized in object store for it to execute._**. But I presume, conceptually, it's possible to imp...
open
2025-03-10T05:26:33Z
2025-03-13T12:37:57Z
https://github.com/ray-project/ray/issues/51207
[ "enhancement", "triage", "data" ]
marcmk6
7
lux-org/lux
pandas
169
[SETUP] Support for Google Colab
How to use this libary in colab
open
2020-12-01T11:07:56Z
2022-08-01T22:02:23Z
https://github.com/lux-org/lux/issues/169
[ "enhancement", "setup" ]
rizwannitk
11
google-research/bert
nlp
1,177
3090
I used a 3090 graphics card, TensorFlow1.14. There will be a problem. The same code will work on 2080. Have you come across anything like this?
open
2020-11-23T06:50:48Z
2020-11-23T06:50:48Z
https://github.com/google-research/bert/issues/1177
[]
Mbdn
0
lucidrains/vit-pytorch
computer-vision
52
How to run this model on linear data?
How to run this model on image features rather than image data like image features generated from pretrained ResNet?
closed
2020-12-26T20:14:21Z
2020-12-29T17:57:51Z
https://github.com/lucidrains/vit-pytorch/issues/52
[]
purbayankar
9
FujiwaraChoki/MoneyPrinter
automation
152
[BUG] More than 5 videos are downloaded
Caused by this: main.py ``` # Check for duplicates for url in found_urls: if url not in video_urls: video_urls.append(url) ``` found_urls is a list that contains all urls of a given search term. We only want the first one of those that isn't a dup...
closed
2024-02-10T14:47:02Z
2024-02-10T15:18:10Z
https://github.com/FujiwaraChoki/MoneyPrinter/issues/152
[]
radry
0
unionai-oss/pandera
pandas
1,866
Empty (all-null) or missing fields with Python (non-Pandas) types fail validation despite `coerce=True` and `nullable=True`
**Describe the bug** Pandera raises `SchemaError` when passed data with an entirely empty or missing non-Pandas type column, despite use of `coerce=True`, `nullable=True` and `add_missing_columns=True`, whereas an equivalent Pandas-type column _is_ filled with null values as expected. - [x] I have checked that this...
open
2024-11-29T18:03:51Z
2024-11-29T18:08:41Z
https://github.com/unionai-oss/pandera/issues/1866
[ "bug" ]
stainbank
0
harry0703/MoneyPrinterTurbo
automation
159
cannot unpack non-iterable NoneType object
TypeError: [Uploading 075251ac-edaa-4e24-b72a-03530e5336a1.zip…]() Traceback: File "C:\Users\hourp\anaconda3\envs\MoneyPrinterTurbo\lib\site-packages\streamlit\runtime\scriptrunner\script_runner.py", line 542, in _run_script exec(code, module.__dict__) File "C:\Users\hourp\Downloads\MoneyPrinterTurbo-main\w...
closed
2024-04-03T17:07:01Z
2024-04-04T03:13:24Z
https://github.com/harry0703/MoneyPrinterTurbo/issues/159
[]
pupheng
3
microsoft/nni
data-science
5,383
The following code block gives me error
The following code block gives me error ``` import bz2 import urllib.request import numpy as np from sklearn.datasets import load_svmlight_file from sklearn.model_selection import train_test_split from sklearn.pipeline import make_pipeline from sklearn.linear_model import LogisticRegression from s...
closed
2023-02-19T14:12:35Z
2023-09-15T04:22:12Z
https://github.com/microsoft/nni/issues/5383
[]
AbdelrahmanHamdy1996
3
napari/napari
numpy
7,547
Viewer FPS label gallery example not displaying FPS in gallery preview
### 🐛 Bug Report Viewer FPS label no longer shows in the [gallery example](https://napari.org/stable/gallery/viewer_fps_label.html). However, FPS label still works when script run locally. Gallery example shows FPS label up through 0.4.19. Starting with 0.5.0 the FPS label is no longer visible.
closed
2025-01-21T15:58:53Z
2025-01-29T08:53:00Z
https://github.com/napari/napari/issues/7547
[ "bug", "documentation", "example" ]
TimMonko
3
ultralytics/ultralytics
deep-learning
19,631
Slow Tensor Inference on MPS Compared to NumPy - Possible Upsampling Bottleneck
### Search before asking - [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/orgs/ultralytics/discussions) and found no similar questions. ### Question Hi team! Thanks for the amazing YOLOv11 library—truly top-notch. I’m stuck ...
open
2025-03-10T20:07:57Z
2025-03-19T09:51:17Z
https://github.com/ultralytics/ultralytics/issues/19631
[ "question", "dependencies", "detect" ]
theOnlyBoy
26
saulpw/visidata
pandas
2,405
[texttables] incorrect 'tabulate' module installed with brew
**Small description** Getting AttributeError with version 3.0.2 installed from homebrew **Expected result** Visidata opens csv file. **Actual result with screenshot** See below. **Steps to reproduce with sample data and a .vd** See below. vd foo.csv Traceback (most recent call last): File "/opt/home...
closed
2024-05-15T18:47:19Z
2024-05-16T23:48:22Z
https://github.com/saulpw/visidata/issues/2405
[ "packaging" ]
bnisly
6
pydata/xarray
numpy
9,300
Unloaded DataArray opened with scipy missing attributes when sliced with a sequence
### What happened? I opened the "air_temperature" dataset using the scipy engine, sliced on a dimension with a list of index and received a seemingly "incomplete" object. It raises `AttributeError: 'DataArray' object has no attribute 'data'` and similar with `values`. ### What did you expect to happen? I expec...
closed
2024-07-31T19:26:54Z
2024-07-31T20:22:56Z
https://github.com/pydata/xarray/issues/9300
[ "bug", "needs triage" ]
aulemahal
3
biolab/orange3
pandas
6,957
Better "Report"
Reporting currently opens a dialog with a list view on the left-hand side and an html on the right. Images are stored within the document. 1. The document size is probably limited, which is the most probable cause of #6105. This problem seems difficult and nobody touched it in two years, but it makes reporting rathe...
open
2024-12-14T15:50:24Z
2024-12-14T15:50:25Z
https://github.com/biolab/orange3/issues/6957
[ "feast" ]
janezd
0
ultralytics/ultralytics
computer-vision
19,795
YOLO11-OBB for the detection of objects with aspect ratios
### Search before asking - [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/orgs/ultralytics/discussions) and found no similar questions. ### Question When I used YOLO11-OBB for object detection, I found that there will be an e...
closed
2025-03-20T09:09:07Z
2025-03-21T06:10:54Z
https://github.com/ultralytics/ultralytics/issues/19795
[ "question", "OBB", "detect" ]
HOUHarden13
5
iperov/DeepFaceLab
deep-learning
953
Manual DST extract locking up around 20-25%.
Im running DFL on a 3090, I have 64gb of ram. I am not getting any OOM errors. When running data_dst manual RE-EXTRACT DELETED ALIGNED_DEBUG the application is totally locking up around 25%. I have to task manager close it. Doesn't even register as not responding. HIS IS NOT TECH SUPPORT FOR NEWBIE FAKERS POST O...
open
2020-11-20T14:45:28Z
2023-06-08T21:35:36Z
https://github.com/iperov/DeepFaceLab/issues/953
[]
minestra
2
Nekmo/amazon-dash
dash
22
Delay
What unit is the delay in? Seconds? Minutes? I would guess at seconds, because the dash button seems to be active for just under that. Is there a minimum that we shouldn't go below? Does it take a certain amount of time for the button to drop off the network ready to be picked up again?
closed
2018-01-15T23:37:28Z
2018-03-15T13:53:33Z
https://github.com/Nekmo/amazon-dash/issues/22
[ "Documentation" ]
Kallb123
3
graphdeco-inria/gaussian-splatting
computer-vision
1,180
When running 3dgs on a machine with multiple graphics cards, it reports memory at dist2 = torch.clamp_min(distCUDA2(torch.from_numpy(np.asarray(pcd.points)).float().cuda()), 0.0000001) # (P,)
![Image](https://github.com/user-attachments/assets/dcce28f0-ad2b-4ebe-b17a-01585f2a615f) You can see that the memory is only used for a very small portion, and there is no problem running the same data on a single gpu machine, why is that?
open
2025-03-05T08:27:27Z
2025-03-05T08:27:27Z
https://github.com/graphdeco-inria/gaussian-splatting/issues/1180
[]
p-z-p
0
microsoft/nni
deep-learning
5,510
Getting AttributeError in test_fine_grained_prune() for pruning
**Describe the issue**: So I was trying to run the lab tutorials for proxylessnas and was running training + pruning, where I am getting the following error when using **test_fine_grained_prune()** the earlier line, gives me an error : ############# ############# AttributeError Trac...
closed
2023-04-07T22:30:34Z
2023-04-12T04:26:54Z
https://github.com/microsoft/nni/issues/5510
[]
HiiroWakaba
2
kizniche/Mycodo
automation
437
problem with adding SHT75
Hello, thank you for creating Mycodo, I find it very clean, precise and reliable. For some days I'm trying to add SHT75 sensor, but it doesn't match with Mycodo. I followed mk-fg installation instructions - sensor is working with his script using the virtualenv on the terminal. After I try to activate STH75 in ...
closed
2018-03-30T22:10:21Z
2018-04-09T09:15:11Z
https://github.com/kizniche/Mycodo/issues/437
[]
kobrok
38
junyanz/pytorch-CycleGAN-and-pix2pix
pytorch
1,620
Exception in user code
when i run train.py in pycharm: The code runs incorrectly but does not stop running. how can I solve this? The full script of error as follows: ----------------------------------------------- Setting up a new session... Exception in user code: ------------------------------------------------------------ Tra...
closed
2023-12-11T10:14:32Z
2023-12-11T10:48:36Z
https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/1620
[]
L-1027
0
custom-components/pyscript
jupyter
524
Impossible to Install: Hangs on configuration
Hello I've installed this module from Hacs, Then i tried to add the integration from the UI, but it's stuck (and eventually timeout) <img width="614" alt="Capture d’écran 2023-09-06 à 23 22 37" src="https://github.com/custom-components/pyscript/assets/177003/8d7f41de-6792-425c-b21d-b2473c3bf93e"> So i tri...
open
2023-09-06T21:26:45Z
2023-11-01T12:34:22Z
https://github.com/custom-components/pyscript/issues/524
[]
eMerzh
2
modoboa/modoboa
django
2,468
Spam not being released/marked
# Impacted versions * OS Type: Ubuntu OS Version: 20.04 Database Type: PostgreSQL Database version: 10 Modoboa: 1.17 installer used: Yes Webserver: Nginx Steps to reproduce Set domain filters like: ![image](https://user-images.githubusercontent.com/62206774/155690139-21fbc590-0d32-4017-8121-511a2a0f6f54....
closed
2022-02-25T09:35:37Z
2022-03-11T09:05:16Z
https://github.com/modoboa/modoboa/issues/2468
[]
sergioeix
1
explosion/spaCy
machine-learning
12,695
spacy-llm is not up to date on PyPI
<!-- NOTE: For questions or install related issues, please open a Discussion instead. --> ## How to reproduce the behaviour <!-- Include a code example or the steps that led to the problem. Please try to be as specific as possible. --> ``` pip install spacy-llm ``` Run example 3 from the documentation: `...
closed
2023-06-03T02:22:58Z
2023-07-06T00:02:36Z
https://github.com/explosion/spaCy/issues/12695
[ "bug", "feat/llm" ]
KennethEnevoldsen
4
HumanSignal/labelImg
deep-learning
789
Can I draw splines as annotators using labelImg
Can I draw splines as annotators using labelImg? Thank you.
open
2021-08-26T15:28:00Z
2021-08-26T15:28:00Z
https://github.com/HumanSignal/labelImg/issues/789
[]
JanineCHEN
0
HumanSignal/labelImg
deep-learning
283
Program freezes on last Windows version
<!-- Please provide as much as detail and example as you can. You can add screenshots if appropriate. --> I opened a dir ,made a selection,saved the new label name and then clicked for the next image.Since then everytime I open the program and try to make a selection the program freezes with no error in c...
closed
2018-05-03T08:24:55Z
2018-05-27T17:51:30Z
https://github.com/HumanSignal/labelImg/issues/283
[]
raresandrei
4
PaddlePaddle/ERNIE
nlp
592
该模型适用于文本校对吗?
closed
2020-11-12T08:26:01Z
2021-01-22T10:02:02Z
https://github.com/PaddlePaddle/ERNIE/issues/592
[ "wontfix" ]
Baililily
2
microsoft/nni
machine-learning
4,796
How to dynamically skip over empty layers when performing model speedup after pruning?
**Describe the issue**: When pruning a model at various pruning percentages (10%-95%) using the L1Norm Pruner, I get a `nni.compression.pytorch.speedup.error_code.EmptyLayerError: Pruning a Layer to empty is not legal` error. I was wondering if I can dynamically skip over such layers in these cases? Based on the docum...
closed
2022-04-23T20:11:09Z
2022-11-16T07:21:15Z
https://github.com/microsoft/nni/issues/4796
[]
pmmitche
4
modin-project/modin
pandas
6,703
Executing `_query_compiler.set_index_name(None)` seems unnecessary.
closed
2023-11-03T23:45:10Z
2023-11-07T13:05:40Z
https://github.com/modin-project/modin/issues/6703
[ "Performance 🚀", "Code Quality 💯" ]
anmyachev
0
widgetti/solara
fastapi
616
https://solara.dev/documentation/advanced/understanding/routing has some errors in examples
`from solara.website.pages.examples.utilities import calculator` gives an error, that doesn't seem to exist `import solara as sol` but then the example uses solar `route_current, routes_current_level = solara.use_routes()` gives me an error: `AttributeError: module 'solara' has no attribute 'use_routes'` I thi...
closed
2024-04-26T20:02:43Z
2024-04-26T22:10:40Z
https://github.com/widgetti/solara/issues/616
[]
johnowhitaker
3
fohrloop/dash-uploader
dash
34
Write a test
Any kind of test. Just to get testing rolling.
closed
2021-04-26T15:51:58Z
2021-05-13T11:02:54Z
https://github.com/fohrloop/dash-uploader/issues/34
[ "help wanted", "good first issue" ]
fohrloop
3
nl8590687/ASRT_SpeechRecognition
tensorflow
167
点击那个链接,Thchs30和ST-CMDS这两个数据集仍然下载不了
你好,下了几天的数据集都没下载下来,我同学也是的,求大佬
closed
2020-02-06T13:57:07Z
2021-11-22T14:17:50Z
https://github.com/nl8590687/ASRT_SpeechRecognition/issues/167
[]
dl-1875
3
gevent/gevent
asyncio
1,664
TypeError: memoryview: a bytes-like object is required, not 'str'
* gevent version: 20.6.2 * Python version: python:3.8.3-slim * Docker: Docker version 19.03.1, build 74b1e89 * Operating System: debian-9-stretch-v20190813 * Google cloud machine n1-standard-4 (4 vCPUs, 15 GB memory) ### Description: The docker environment starts as follows: ``` CMD /usr/sbin/cron && gunico...
closed
2020-08-18T10:34:16Z
2020-08-19T00:02:59Z
https://github.com/gevent/gevent/issues/1664
[]
0x78f1935
4
dynaconf/dynaconf
django
576
Documenting the used paramaters
Hi, I recently started using Dynaconf for my project and found it very useful. I use yaml file for setting the parameters. Besides describing the used parameters as comments in the yaml file, is some programmable alternative possible? For example, the user calls some method of dynaconf object and it returns the desc...
open
2021-05-02T06:25:28Z
2024-07-01T10:22:42Z
https://github.com/dynaconf/dynaconf/issues/576
[ "question", "RFC" ]
sarslanali
3
ultrafunkamsterdam/undetected-chromedriver
automation
911
Can use selenium with chromium on aarch64 ubuntu 18.xx but when I try same with undetected_chromedriver it won't even start
I cannot get Undetected-ChromeDriver working on oracle A1 Ampere server with ubuntu 18.xx installed. I have latest available version of chromium and chromium-chromedriver and I can use everything normally when I use selenium library. But with undetected-chromedriver it fails. Here is some info about my installed ver...
open
2022-11-20T20:00:35Z
2023-06-22T13:22:45Z
https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/911
[]
Jook3r
7
roboflow/supervision
pytorch
1,218
tflite with supervison
### Search before asking - [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar feature requests. ### Question Hi, does supervsion support tflite detection results? If not, is there a way to convert tflite outputs to the Detections class format? ### Addi...
closed
2024-05-21T15:38:18Z
2024-11-02T17:22:19Z
https://github.com/roboflow/supervision/issues/1218
[ "question" ]
abichoi
4
assafelovic/gpt-researcher
automation
980
Error Code 404 with Azure OpenAI
Hey team, Great work on building this project. I am currently facing an issue while `gpt-researcher` with Azure Open AI in hybrid mode. Here is my current `.env` file ```bash AZURE_OPENAI_API_KEY=XXXXXXXX AZURE_OPENAI_ENDPOINT=https://sydney-openai.openai.azure.com/openai/ AZURE_OPENAI_API_VERSION=2024-0...
closed
2024-11-11T08:11:19Z
2024-11-11T23:22:18Z
https://github.com/assafelovic/gpt-researcher/issues/980
[]
franckess
1
d2l-ai/d2l-en
deep-learning
2,083
[Enhancement] Add related papers to the Universal Approximator section?
When reading [Section 4.1.1.4](https://d2l.ai/chapter_multilayer-perceptrons/mlp.html#universal-approximators), I am quite interesting that the Neural network can approximate any continuous function, however, it does not provide additional reading materials for this one, which is a bit sad. May I propose adding some re...
closed
2022-03-26T16:30:14Z
2022-03-27T05:48:17Z
https://github.com/d2l-ai/d2l-en/issues/2083
[]
minhlong94
2
biolab/orange3
pandas
6,699
Read and Write Apache Parquet
<!-- Thanks for taking the time to submit a feature request! For the best chance at our team considering your request, please answer the following questions to the best of your ability. --> **What's your use case?** Apache Parquet ( https://parquet.apache.org/ ) becomes more and more popular and I think it's li...
open
2024-01-09T08:25:06Z
2024-11-03T00:19:42Z
https://github.com/biolab/orange3/issues/6699
[ "wish", "meal" ]
simonaubertbd
5
lanpa/tensorboardX
numpy
477
UserWarning: ONNX export failed on ATen operator atan2 because torch.onnx.symbolic.atan2 does not exist .format(op_name, op_name))
**Describe the bug** A clear and concise description of what the bug is. I'm trying add_graph and I get those four errors `C:\Users\s4551072\AppData\Local\conda\conda\envs\python36\lib\site-packages\torch\onnx\utils.py:586: UserWarning: ONNX export failed on ATen operator atan2 because torch.onnx.symbolic.atan2 do...
closed
2019-07-26T07:23:45Z
2019-10-23T15:51:50Z
https://github.com/lanpa/tensorboardX/issues/477
[]
thisismygitrepo
2
reiinakano/scikit-plot
scikit-learn
92
Too many indices For Array
I am facing IndexError but i don't know why as my train and test set are in perfect shape as required by cross_val_score but still im getting this error. Any suggestions ? [K-NN for Amazon Fud Review.html.pdf](https://github.com/reiinakano/scikit-plot/files/2300276/K-NN.for.Amazon.Fud.Review.html.pdf)
open
2018-08-19T11:26:33Z
2019-12-06T02:55:05Z
https://github.com/reiinakano/scikit-plot/issues/92
[]
Bhisham-Sharma
4
donnemartin/system-design-primer
python
1,065
Scaliblity link is wrong
The scaliblity link given in the repo is wrong. How i get this because the topic given that will be covered in video , is not actually there . But there is video which match to given description and topic. https://www.youtube.com/watch?v=gmKPkRCLNek&t=130s
open
2025-03-13T14:32:35Z
2025-03-21T03:35:35Z
https://github.com/donnemartin/system-design-primer/issues/1065
[]
jayantk137
1
gunthercox/ChatterBot
machine-learning
1,889
Only return one character as response
I'm study the lib and I had a error in my first test, return o character as response. the code: ``` from chatterbot import ChatBot from chatterbot.trainers import ListTrainer import os bot = ChatBot('teste') treino = ListTrainer(bot) diretorio = '/Users/archo/PycharmProjects/untield/venv/testechatbot/tr...
closed
2019-12-26T17:45:17Z
2020-01-10T17:26:11Z
https://github.com/gunthercox/ChatterBot/issues/1889
[]
viniciusyaunner
2
wkentaro/labelme
computer-vision
512
Is it possible to expose this application as an API and access through browser
I was wondering if any one has implemented to access it from browser.
closed
2019-11-18T15:36:57Z
2020-01-27T01:47:57Z
https://github.com/wkentaro/labelme/issues/512
[]
surajitkundu29
0
TencentARC/GFPGAN
deep-learning
528
C:\Users\MARY\Downloads
open
2024-03-17T02:29:50Z
2024-03-17T02:30:32Z
https://github.com/TencentARC/GFPGAN/issues/528
[]
waldirsof
1
mljar/mercury
data-visualization
236
Unable to open uploaded image file in "widgets" using Pillow
Hi, @pplonski . How can I open an image uploaded in the "widgets" file using Pillow? The following code doesn't work: ```python import mercury as mr from PIL import Image file = mr.File(label="Upload the file", max_file_size="100MB") filepath = file.filepath im = Image.open(filepath) ``` Thank you for alway...
closed
2023-04-03T02:20:37Z
2023-04-03T08:26:23Z
https://github.com/mljar/mercury/issues/236
[ "bug" ]
pythonista-blitz
1
ymcui/Chinese-BERT-wwm
tensorflow
114
请问同一个模型(如RoBERTa-wwm-ext, Chinese),tensorflow版和pytorch版,模型输出是一样的吗
请问同一个模型(如RoBERTa-wwm-ext, Chinese),tensorflow版和pytorch版,模型输出是一样的吗?
closed
2020-05-07T09:21:13Z
2020-05-12T05:09:18Z
https://github.com/ymcui/Chinese-BERT-wwm/issues/114
[]
LowinLi
3
Nemo2011/bilibili-api
api
346
Release v16
还有什么要修的吗qeq
closed
2023-06-17T22:01:20Z
2023-06-21T04:05:57Z
https://github.com/Nemo2011/bilibili-api/issues/346
[]
z0z0r4
0
sktime/pytorch-forecasting
pandas
1,590
[ENH] un-stale the package and give simple instructions for working install
Could somebody give a docker image, or detailes of package versions. I tried multiple installations and most of the time had errors when running the tutorials. As the library becomes stale it is more and more difficult to make the proper environment. Please share detailes, thanks.
open
2024-08-09T11:35:06Z
2024-08-30T12:17:35Z
https://github.com/sktime/pytorch-forecasting/issues/1590
[ "maintenance" ]
veberi-alteo
6
clovaai/donut
nlp
108
What are acceptable values for max_length?
What does max_length refer to? What are the acceptable values?
open
2022-12-20T05:51:59Z
2023-01-06T07:19:47Z
https://github.com/clovaai/donut/issues/108
[]
htcml
7
jupyter/nbgrader
jupyter
1,216
Option to export all feedback as PDF
<!-- Thanks for helping to improve nbgrader! If you are submitting a bug report or looking for support, please use the below template so we can efficiently solve the problem. If you are requesting a new feature, feel free to remove irrelevant pieces of the issue template. --> First, thank you for `nbgrader`...
open
2019-09-13T03:41:21Z
2019-11-02T09:11:50Z
https://github.com/jupyter/nbgrader/issues/1216
[ "enhancement" ]
myedibleenso
1
graphql-python/graphene-mongo
graphql
194
Can I use 'MongoengineConnectionField' without 'edges'?
current: `users { edges { node { id } } }` What I want is: ` users { id }`
closed
2022-03-20T03:43:23Z
2023-03-28T17:51:26Z
https://github.com/graphql-python/graphene-mongo/issues/194
[]
xiangxn
2
saulpw/visidata
pandas
2,266
[undo] can't undo some threaded commands
**Small description** After a pasting into cells or rows using `syspaste-*`, undo does not restore the original value of the cell. **Steps to reproduce with sample data and a .vd** Starting with this tsv sheet: ``` cells first second ``` hit `zY` on the cell that contains`"first"`, then `j` and then `zP` ``...
closed
2024-01-23T09:42:27Z
2024-03-22T23:17:59Z
https://github.com/saulpw/visidata/issues/2266
[ "bug" ]
midichef
2
YiVal/YiVal
api
45
Concurrency issue, global variable not enabled?
https://rcc5lo3n39a.larksuite.com/docx/ZtYpdJiYtouPiQx2WYIuFcDasRQ?from=from_copylink
closed
2023-08-18T09:13:14Z
2023-09-16T14:00:55Z
https://github.com/YiVal/YiVal/issues/45
[ "bug" ]
crazycth
1
brightmart/text_classification
nlp
27
the last ouput of Bi-RNN in TextRNN
https://github.com/brightmart/text_classification/blob/68e2fcf57a8dcec7e7d12f78953ed570451f0076/a03_TextRNN/p8_TextRNN_model.py#L67 In the implementation, the final outputs of Bi-RNN are calculated as the reduce mean among all time stamps. Compared with `output_rnn_last=output_rnn[:,-1,:]`, what is the difference b...
closed
2018-01-03T07:08:13Z
2018-01-27T15:10:46Z
https://github.com/brightmart/text_classification/issues/27
[]
longbowking
1
pydata/xarray
pandas
9,565
Discrepancy between `.chunk` and provided encoding with `to_zarr`
### What happened? While attempting to reverse engineer the chunking behavior of `to_zarr`, I came across (I think) an unexpected difference between two ways of defining the chunking behavior. Here's a short illustration: via `.chunk`: ```python chunk_scheme = { 'time': 1000, 'lat': 90, 'lon': 18...
closed
2024-10-01T18:48:03Z
2024-12-10T21:03:42Z
https://github.com/pydata/xarray/issues/9565
[ "bug", "needs mcve", "topic-zarr" ]
moradology
4
ploomber/ploomber
jupyter
294
Docs: clarify that other formats are supported as well (any format supported by jupytext)
Percent should be the default format (shown in the docs and examples) since natively supported by some editors and IDEs
closed
2021-05-09T20:04:50Z
2021-10-11T23:32:25Z
https://github.com/ploomber/ploomber/issues/294
[]
edublancas
1
lepture/authlib
django
615
1.3.0: sphinx warnings `reference target not found`
First of all currently it is not possible to use straight `sphinx-build` command to build documentation out of source tree <details> ```console + /usr/bin/sphinx-build -n -T -b man docs build/sphinx/man Running Sphinx v7.1.2 Traceback (most recent call last): File "/usr/lib/python3.8/site-packages/sphinx/co...
closed
2024-01-11T07:15:28Z
2024-01-17T17:06:09Z
https://github.com/lepture/authlib/issues/615
[]
kloczek
3
sanic-org/sanic
asyncio
2,544
Sanic server
use sanic server in production How to stop or reload gracefully
closed
2022-09-14T08:19:55Z
2022-09-14T09:51:40Z
https://github.com/sanic-org/sanic/issues/2544
[ "feature request" ]
wjy1100
1
man-group/arctic
pandas
617
First, last, and closest
Is it possible to load the first and the last ticks from TickStore? How do I query the closest row to the specified date?
closed
2018-08-28T04:30:29Z
2018-08-30T18:35:27Z
https://github.com/man-group/arctic/issues/617
[]
kothique
1
OFA-Sys/Chinese-CLIP
computer-vision
181
COCO 数据集
作者你好,我已获得coco-cn的许可,希望获得预处理的coco数据,已向该邮箱yangapku@gmail.com发送申请,万分感谢!
closed
2023-08-08T07:45:58Z
2023-08-08T10:25:44Z
https://github.com/OFA-Sys/Chinese-CLIP/issues/181
[]
songtianhui
1
albumentations-team/albumentations
machine-learning
2,041
Shifting augmentation causes 'Tensors must have same number of dimensions: got 2 and 1'
Hello, been recieving the following error when training a YOLOv8 model with Albumentations: `RuntimeError: Tensors must have same number of dimensions: got 2 and 1` Until now I've only seen it happen when using this specific augmentation: (shifting the picture) `A.ShiftScaleRotate( shift_limit=(-0.3, 0...
open
2024-10-30T20:51:53Z
2025-01-13T17:25:08Z
https://github.com/albumentations-team/albumentations/issues/2041
[ "bug", "Need check" ]
armanivers
13
sherlock-project/sherlock
python
2,392
Most of the results are 'Error connecting"
### Installation method PyPI (via pip) ### Package version Sherlock v0.15.0 ### Description Hello community ! While everything was working fine, for the last 1 or 2 hours I've been getting mostly incorrect results. here's an example (where I've replaced the real username with “username”) For example, for the user...
open
2025-01-16T16:20:12Z
2025-03-17T17:41:12Z
https://github.com/sherlock-project/sherlock/issues/2392
[ "environment" ]
babbyshark75
1