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
deezer/spleeter
tensorflow
775
[Discussion] How can I make sure separate running on GPU?
The separate worked, I use --verbose and it shows some info, but i'm not sure it run on GPU. how can i make sure it? ``` C:\Users\Administrator\Desktop\testSound>python -m spleeter separate -p spleeter:5stems -o output --verbose audio_example.mp3 INFO:tensorflow:Using config: {'_model_dir': 'pretrained_models\\5st...
open
2022-06-24T04:23:56Z
2024-02-04T05:38:42Z
https://github.com/deezer/spleeter/issues/775
[ "question" ]
limengqilove
2
mckinsey/vizro
plotly
376
Custom actions do not work when applied through a component that gets added to a union such as `ControlType`
### Description The code below should to my understanding work, ie the dropdown value should be reflected in the Jumbotron subtitle. ```python from typing import Literal from dash import html import vizro.models as vm from vizro import Vizro from vizro.models.types import capture from dash import callba...
closed
2024-03-20T09:21:50Z
2024-05-21T11:44:05Z
https://github.com/mckinsey/vizro/issues/376
[ "Bug Report :bug:" ]
maxschulz-COL
1
httpie/http-prompt
rest-api
47
Question: Storing cookies
Hi, nice app! Can http-prompt store cookies automatically from a response like this? ``` Set-Cookie: author=f0a117c7-75a4-4abe-8617-1d3d06c4d2a7; path=/; httponly Set-Cookie: author.sig=y4Kfr_MNE7RJmeL1x6vLhixHUAo; path=/; httponly ``` What I do now is copy/pasting (a bit painful): ``` Cookie:author=f0a117c7-75a4-4a...
closed
2016-06-12T21:32:33Z
2016-06-12T21:32:50Z
https://github.com/httpie/http-prompt/issues/47
[]
arve0
1
iMerica/dj-rest-auth
rest-api
150
/login happened 401 error, when the HTTP Header has invalid or expired access_token. use right username & password also invaild.
When my front-end(ReactJS&HTML5) login interface logs in by calling / login, if the HTTP header of "Authentication: bear {access_token} " is invalid or expired, under normal circumstances, the user can log in again by re-entering the right user-name and password, but 401 error is always reported. I understand / login ...
open
2020-09-24T16:23:28Z
2025-01-31T10:42:13Z
https://github.com/iMerica/dj-rest-auth/issues/150
[]
fineartit
3
pyro-ppl/numpyro
numpy
1,198
Question about sample API
Hey! I am learning a bit about PPLs in JAX and I am very curious as to why Numpyro is using and API like this: ```python mu = numpyro.sample("mu", dist.Normal(0, 5)) ``` Instead of something like: ```python mu = dist.Normal("mu", 0, 5) ``` Sorry if the question is dumb 😅
closed
2021-10-25T14:14:12Z
2021-10-29T03:46:38Z
https://github.com/pyro-ppl/numpyro/issues/1198
[ "question" ]
cgarciae
2
plotly/dash-core-components
dash
287
Plotly.js mutates data passed into Graph component
We've discovered that `plotly.js` mutates not just the `figure` (which caused the Graph resizing bug in Tabs #279) but also the `data`. Our contract with props in our components is that they are immutable, so that subsequent renders of the components will not cause side-effects. We've solved the issue of the Graph resi...
open
2018-08-28T18:49:47Z
2018-08-29T17:29:42Z
https://github.com/plotly/dash-core-components/issues/287
[ "Status: Discussion Needed" ]
valentijnnieman
1
pydata/pandas-datareader
pandas
444
Unable to install the pandas-datareader package
Hi, I have been trying to install the pandas-datareader package via the following two methods: 1. C:\>conda install -c anaconda pandas-datareader This method hung on the following message: **Fetching package metadata: ...^C** Once I tried to close the command line window the ^C was added to the line abov...
closed
2018-01-13T17:47:48Z
2018-01-18T16:21:45Z
https://github.com/pydata/pandas-datareader/issues/444
[]
rpatel2550
8
browser-use/browser-use
python
257
Browser disregards --user-agent parameter
Playwright browser disregards the UA parameter given via extra_chromium_args. I am testing it by opening https://whatismyuseragent.com; whenever I open it using browser-use, I get Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36 I have tried ...
closed
2025-01-13T19:50:11Z
2025-01-26T10:22:38Z
https://github.com/browser-use/browser-use/issues/257
[]
ranlo
2
pallets-eco/flask-wtf
flask
408
ImportError: cannot import name 'HTMLString' from 'wtforms.widgets'
WTFS was upgraded in today, 2020/04/22,zh. ![image](https://user-images.githubusercontent.com/34978943/79938098-39e8c500-848e-11ea-9364-cb5e0e4a9ca6.png) When I init env, then the importError was happended. So If you wanted to workround, just set the version of WTForms to be lower 2.3.0
closed
2020-04-22T03:45:11Z
2021-05-26T00:54:53Z
https://github.com/pallets-eco/flask-wtf/issues/408
[]
Mukvin
1
ranaroussi/yfinance
pandas
1,950
Period '2d' is invalid error when fetching 2-day data with yfinance
### Describe bug I am encountering an issue with the yfinance library when trying to fetch 2-day historical data with 1-minute intervals for the ticker symbol ES=F. The code returns an error stating that the period ‘2d’ is invalid. ### Simple code that reproduces your problem import yfinance as yf symbol = input(...
closed
2024-05-29T04:54:03Z
2024-05-29T19:56:11Z
https://github.com/ranaroussi/yfinance/issues/1950
[]
bruce1095
1
Lightning-AI/pytorch-lightning
pytorch
20,124
Why does the progress bar not show the total steps when using iterable dataset?
### Bug description The parameters to Trainer: ``` max_epochs=-1, max_steps=200000 ``` The progress bar does not show the total iters and the estimated remaining time is also nonsense. ``` Epoch 1: | | 43/? [00:26<00:00 **** ``` ### What version are...
closed
2024-07-24T11:26:15Z
2025-02-06T13:40:35Z
https://github.com/Lightning-AI/pytorch-lightning/issues/20124
[ "question", "ver: 2.2.x" ]
hiyyg
3
python-gitlab/python-gitlab
api
2,978
Support User service account API
Besides group-level service accounts, which is more targeted for Gitlab.com users, GitLab 16.1 also introduced the Service account users API for self-hosted and dedicated instances: https://docs.gitlab.com/ee/api/user_service_accounts.html. Like group-level service accounts, they can only be added using the API right n...
open
2024-09-12T17:09:20Z
2025-01-29T11:20:19Z
https://github.com/python-gitlab/python-gitlab/issues/2978
[ "EE" ]
skycaptain
1
jwkvam/bowtie
plotly
5
add docstrings so users can know what datatype to expect from events
closed
2016-06-07T05:39:01Z
2016-12-03T22:11:01Z
https://github.com/jwkvam/bowtie/issues/5
[]
jwkvam
1
xuebinqin/U-2-Net
computer-vision
272
How to get foreground object from the output on u2net_test.py? Thanks
Hi, Thanks for sharing the great work! Is there a small example to extract foreground using this method? Thanks
closed
2021-12-03T18:42:00Z
2022-04-09T18:21:33Z
https://github.com/xuebinqin/U-2-Net/issues/272
[]
gsrujana
3
CorentinJ/Real-Time-Voice-Cloning
deep-learning
672
No voice generating
I'm using a colab notebook and for some reason I only get some noise. https://user-images.githubusercontent.com/66216869/108493161-4b654e00-72a6-11eb-9da0-cec04228c304.mp4
closed
2021-02-19T10:33:36Z
2021-02-19T11:02:30Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/672
[]
Jojo-M-C
1
lanpa/tensorboardX
numpy
70
A few questions about add_graph
Hi @lanpa , thanks for this amazing tool. I'm trying to use `add_graph` in my own project, where I met these questions: 1. How to use `add_graph` in the training iteration? Am I supposed to initialize the `SummaryWriter` outside the main training loop and call `w.add_graph` inside the loop? If so how do I get the mode...
closed
2018-01-24T09:51:38Z
2018-03-28T14:38:31Z
https://github.com/lanpa/tensorboardX/issues/70
[]
JiamingSuen
8
dynaconf/dynaconf
fastapi
1,235
[bug] list command must error for not found key
```bash # /venv/bin/dynaconf list -k "D" --json Key not found # echo $? 0 ``` Expected: `1` retcode --- Open for discussion: - Should retcode be `1` - Should return empty json `{}` ?
open
2025-02-07T17:40:53Z
2025-02-19T15:39:00Z
https://github.com/dynaconf/dynaconf/issues/1235
[ "bug", "good first issue" ]
rochacbruno
0
plotly/dash
data-visualization
2,592
Be compatible with Flask 2.3
dash dependency of end of support **flask** branch ```Flask>=1.0.4,<2.3.0``` since https://github.com/plotly/dash/commit/7bd5b7ebec72ffbfca85a57d0d4c19b595371a5a The 2.3.x branch is now the supported fix branch, the 2.2.x branch will become a tag marking the end of support for that branch. https://github.com/pall...
closed
2023-07-07T22:57:24Z
2023-10-26T21:01:54Z
https://github.com/plotly/dash/issues/2592
[]
VelizarVESSELINOV
1
home-assistant/core
asyncio
140,707
Fritz Tools Error
### The problem Error by Log shows up from time to time: Logger: homeassistant.components.fritz.coordinator Quelle: helpers/update_coordinator.py:380 Integration: AVM FRITZ!Box Tools (Dokumentation, Probleme) Erstmals aufgetreten: 01:05:58 (14 Vorkommnisse) Zuletzt protokolliert: 09:09:05 Unexpected error fetching f...
open
2025-03-16T09:11:41Z
2025-03-16T19:27:35Z
https://github.com/home-assistant/core/issues/140707
[ "integration: fritz" ]
steps56
2
ymcui/Chinese-LLaMA-Alpaca
nlp
817
是否有基于Llama-2的增量训练模型?
我们已发布基于Llama-2的相关模型,模型大小包括7B和13B,以及长上下文版7B-16K和13B-16K模型。 **项目地址:https://github.com/ymcui/Chinese-LLaMA-Alpaca-2** - 【新】已发布长上下文版模型,支持16K上下文长度,并可通过NTK方法扩展至24K+ - 目前已发布13B级别的模型,效果优于一代项目(本项目)的Plus/Pro-13B,部分指标超过Plus/Pro-33B,推荐使用相关模型的用户迁移到我们的二代模型上 - 目前已发布7B级别的模型,效果优于一代项目(本项目)的Plus/Pro-7B和Plus/Pro-13B,推荐使用相关模型的...
open
2023-08-09T08:54:24Z
2023-08-25T05:19:29Z
https://github.com/ymcui/Chinese-LLaMA-Alpaca/issues/817
[]
ymcui
0
jina-ai/clip-as-service
pytorch
586
Unable to load Bert as service for uncased_L-24_H-1024_A-16
**Prerequisites** > Please fill in by replacing `[ ]` with `[x]`. * [X] Are you running the latest `bert-as-service`? * [X] Did you follow [the installation](https://github.com/hanxiao/bert-as-service#install) and [the usage](https://github.com/hanxiao/bert-as-service#usage) instructions in `README.md`? * [X] D...
open
2020-08-19T17:51:58Z
2020-08-19T18:04:47Z
https://github.com/jina-ai/clip-as-service/issues/586
[]
nishithbenhur
1
allenai/allennlp
data-science
5,717
Unclear how to use text2sql model
<!-- 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
2022-10-07T23:19:55Z
2022-11-23T01:20:28Z
https://github.com/allenai/allennlp/issues/5717
[ "bug" ]
ianbstewart
5
google-research/bert
nlp
879
OOM error fine-tuning
When trying to finetune BERT on a classification task (`run_classifier.py`) using my own dataset, I am running into the OOM issue with the following traceback: ``` iB 2019-10-15 18:21:25.247491: I tensorflow/core/common_runtime/bfc_allocator.cc:641] 1 Chunks of size 8384512 totalling 8.00MiB 2019-10-15 18:21:25.2...
open
2019-10-15T18:26:30Z
2019-10-16T12:47:57Z
https://github.com/google-research/bert/issues/879
[]
ecatkins
1
hyperspy/hyperspy
data-visualization
2,953
Release 1.7.1
There have been a few regressions introduced in 1.7, which are already fixed or pending review. It would be good to release [1.7.1 ](https://github.com/hyperspy/hyperspy/milestone/47) as soon as #2948 and #2952 are merged.
closed
2022-06-03T09:55:16Z
2022-06-18T16:56:35Z
https://github.com/hyperspy/hyperspy/issues/2953
[]
ericpre
0
InstaPy/InstaPy
automation
6,022
Unable to follow a whole list (including delays)
Like it says in the title, Unable to follow a whole list (including delays) BEFORE instapy begins the next step of unfollowing all. I'm trying to setup so that instapy follows 7500 users in total from inside of the specified list, and then AFTER to go to the next step which is to unfollow allfollowing At t...
open
2021-01-13T15:04:48Z
2021-07-21T03:19:08Z
https://github.com/InstaPy/InstaPy/issues/6022
[ "wontfix" ]
molasunfish
1
tiangolo/uwsgi-nginx-flask-docker
flask
32
Logging problems
Hi tiangolo, I am having problems logging messages when I used the uwsgi-nginx-flask image. The application works. I am only having issues with the logging. On the other hand, If I run the app in standalone, everything, including logging, works as expected. I tried to look for info on how to configure the loggi...
closed
2018-01-05T14:54:07Z
2018-04-19T08:44:09Z
https://github.com/tiangolo/uwsgi-nginx-flask-docker/issues/32
[]
mcuervoe
4
gee-community/geemap
jupyter
1,617
Add stretch options for visualizing images
<!-- Please search existing issues to avoid creating duplicates. --> ### Description Hi folks! I'd like to suggest adding "Stretch" options to adjust the vis param range for images automatically, similar to what can be done in the Code Editor. I'm happy to implement this and make a PR. ### Implementation I...
closed
2023-07-07T05:56:23Z
2023-10-31T17:58:57Z
https://github.com/gee-community/geemap/issues/1617
[ "Feature Request" ]
aazuspan
8
pytest-dev/pytest-qt
pytest
276
Using QThread causes sefault
Hi, I have just started using pytest-qt and have run across an issue with the use of `QThread`. I have been able to isolate it into a simple example: ``` from PySide2.QtCore import QThread def test_load(qtbot): thread = QThread() thread.start() ``` Running on Linux: ``` ================...
closed
2019-11-19T17:41:37Z
2019-11-19T19:44:48Z
https://github.com/pytest-dev/pytest-qt/issues/276
[]
drone-ah
2
ansible/awx
automation
15,745
Add Metric for License Expiry
### Please confirm the following - [x] I agree to follow this project's [code of conduct](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html). - [x] I have checked the [current issues](https://github.com/ansible/awx/issues) for duplicates. - [x] I understand that AWX is open source software provide...
open
2025-01-14T14:53:09Z
2025-01-22T18:20:21Z
https://github.com/ansible/awx/issues/15745
[ "type:enhancement", "community" ]
neevnuv
0
fastapi/sqlmodel
pydantic
448
Relationships with multiple schemas and same table names not working
### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it. - [X] I searched the SQLModel documentation, with the integrated search. - [X] I already searched in Google "How to X in SQLModel" and didn't find any information. - [X] I al...
closed
2022-09-15T00:52:01Z
2022-11-20T12:19:46Z
https://github.com/fastapi/sqlmodel/issues/448
[ "question" ]
Bryley
4
python-arq/arq
asyncio
267
Option to Cancel Jobs without Incrementing Retries
Currently when a job is canceled (sigint, sigterm), retries is incremented. I'd like for there to be an option for these types of failures to not increment retries. Another way to say it is only jobs that raise an exception should increment retries. My use case is that I have some long running jobs that I would like...
open
2021-10-13T06:32:45Z
2021-10-13T06:32:45Z
https://github.com/python-arq/arq/issues/267
[]
tobymao
0
BlinkDL/RWKV-LM
pytorch
53
Any results on few-shot settings?
Thanks for your wonderful work! Do you have any results on the few-shot settings? Do RWKV-LLMs perform the similar emergent ability like GPT-3, e.g. the chain-of-thought?
closed
2023-03-23T12:41:01Z
2023-03-24T10:50:56Z
https://github.com/BlinkDL/RWKV-LM/issues/53
[]
ustcwhy
1
proplot-dev/proplot
data-visualization
219
xminorlocator=1 or yminorlocator=1 doesn't work
I think this line creates a problem when we define `yminorlocator=1` or `xminorlocator=1`: https://github.com/lukelbd/proplot/blob/e1a603729305abe791ed23d84cfeff11e5a4cea6/proplot/axes/cartesian.py#L1101 ### Example ```python import proplot as plot import numpy as np fig, ax = plot.subplots(aspect=4, axwidt...
closed
2020-08-14T13:39:16Z
2021-06-30T01:52:35Z
https://github.com/proplot-dev/proplot/issues/219
[ "bug" ]
mickaellalande
1
piccolo-orm/piccolo
fastapi
625
exception raised on update with a join in the where clause
i couldn't think of a concise way to explain my problem so here's an example: ```python In [19]: await Band.select(Band.name).where(Band.manager.name == 'Guido') SELECT "band"."name" FROM band LEFT JOIN manager band$manager ON (band.manager = band$manager.id) WHERE "band$manager"."name" = 'Guido' Out[19]: [{'name...
closed
2022-09-28T13:02:13Z
2023-02-21T19:03:27Z
https://github.com/piccolo-orm/piccolo/issues/625
[]
backwardspy
4
timkpaine/lantern
plotly
25
matplotlib - candlestick
closed
2017-10-10T01:30:48Z
2017-11-26T05:13:38Z
https://github.com/timkpaine/lantern/issues/25
[ "feature", "matplotlib/seaborn" ]
timkpaine
1
allure-framework/allure-python
pytest
45
Extract python commons
closed
2017-02-19T16:46:12Z
2017-03-21T16:42:26Z
https://github.com/allure-framework/allure-python/issues/45
[]
sseliverstov
0
donnemartin/system-design-primer
python
816
Update to a URL
https://github.com/donnemartin/system-design-primer/blob/a07e261677c012d37d26255de6e7b128a2643946/README.md?plain=1#L1321C32-L1321C109 The URL for Elasticache caching strategies must be updated to https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Strategies.html
open
2023-12-07T14:31:59Z
2024-06-23T17:39:50Z
https://github.com/donnemartin/system-design-primer/issues/816
[ "needs-review" ]
alimoosavi27
4
aleju/imgaug
machine-learning
68
OneOf wrong behaviour
Hi, looks like there is something broken there, I suppose. With this code, I get at the same time: dropout and Add+ Dropout is always used. Never get Add- nor constrastNorm. ``` color = iaa.Sometimes(1,iaa.OneOf([ iaa.Add((-50, -20)), iaa.Add((20, 50)), iaa.ContrastNormalization((0.3,...
closed
2017-10-04T15:39:58Z
2017-10-04T17:46:04Z
https://github.com/aleju/imgaug/issues/68
[]
vimalaguti
2
gradio-app/gradio
data-science
10,436
Theme is only used on first tab
### Describe the bug Monochrome is set for the interface, but only gets applied to the first tab. Tab 2 and 3 seem to be still using the default theme. ### Have you searched existing issues? 🔎 - [x] I have searched and found no existing issues ### Reproduction ```python import gradio as gr with gr.Blocks(title...
closed
2025-01-24T22:41:03Z
2025-01-27T19:15:26Z
https://github.com/gradio-app/gradio/issues/10436
[ "bug", "needs repro" ]
GregSommerville
3
lux-org/lux
pandas
500
[BUG]
**Describe the bug** Unexpected error in rendering Lux widget and recommendations. Falling back to Pandas display.
open
2023-10-01T19:39:17Z
2023-10-01T19:39:17Z
https://github.com/lux-org/lux/issues/500
[]
Saramagit
0
AUTOMATIC1111/stable-diffusion-webui
pytorch
16,551
[Bug]: ModuleNotFoundError: No module named 'timm'
### Checklist - [ ] The issue exists after disabling all extensions - [X] The issue exists on a clean installation of webui - [ ] The issue is caused by an extension, but I believe it is caused by a bug in the webui - [ ] The issue exists in the current version of the webui - [ ] The issue has not been reported before...
open
2024-10-13T00:25:23Z
2025-01-11T16:53:43Z
https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/16551
[ "bug-report" ]
wolfred24
3
axnsan12/drf-yasg
rest-api
235
Swagger not fetching details from swagger_auto_schema
I am using **swagger_auto_schema** in **function based views** like below. It seems like **Swagger** is not using the **annotations** at all. What am I doing wrong? urls.py ``` from django.conf.urls import url from .views import check_phone urlpatterns = [ url(r'^check_phone/?', check_phone), ] ``` views....
closed
2018-10-18T21:01:13Z
2018-10-23T06:09:54Z
https://github.com/axnsan12/drf-yasg/issues/235
[]
deepakzipgo
4
pytest-dev/pytest-randomly
pytest
550
Feature enhancement to allow turning plugin on and off
### Description Hello, Using this plugin occasionally while writing new tests to prevent flakiness, but old tests still need to run without the random order. Currently accomplishing this via pytest.ini which includes -p no:randomly and a separate one you use via -c pytest-randomly.ini This feels rather clunky, ...
closed
2023-06-07T16:10:34Z
2024-10-12T05:59:39Z
https://github.com/pytest-dev/pytest-randomly/issues/550
[]
clintonsteiner
7
Kanaries/pygwalker
matplotlib
510
Would it be possbile to walk it with Datatable.frame type in the future?
https://github.com/h2oai/datatable It has higher performance reading and manipulating big csv data than pandas/polars/modin. But I can't walk this datatable.frame type.
open
2024-04-01T17:59:46Z
2024-04-02T06:55:41Z
https://github.com/Kanaries/pygwalker/issues/510
[ "Vote if you want it", "proposal" ]
plusmid
1
lanpa/tensorboardX
numpy
155
add_video() got an unexpected keyword argument 'fps'
error: add_video() got an unexpected keyword argument 'fps'
closed
2018-06-01T17:27:37Z
2018-06-01T17:33:31Z
https://github.com/lanpa/tensorboardX/issues/155
[]
kekmodel
0
bmoscon/cryptofeed
asyncio
254
Understanding content of order and trade
Hello, I have rather general questions, but I think others can have the same, so I write this in a ticket instead of using slack. Order and trade structures are defined in https://github.com/bmoscon/cryptofeed/blob/master/cryptofeed/defines.py Order has most notably these fields: ```python { order...
closed
2020-06-25T20:04:57Z
2020-06-25T20:55:55Z
https://github.com/bmoscon/cryptofeed/issues/254
[]
yohplala
4
mwaskom/seaborn
data-science
3,466
Address deprecations shown with pandas 2.1.0
Hi Michael, Not sure if this is already being addressed...there seem to be a few deprecation warnings with the latest version of pandas (https://pandas.pydata.org/docs/whatsnew/v2.1.0.html#backwards-incompatible-api-changes): ```text .../venv/lib/python3.9/site-packages/seaborn/_oldcore.py:1498: FutureWarning: i...
closed
2023-09-07T17:34:31Z
2023-09-07T23:10:39Z
https://github.com/mwaskom/seaborn/issues/3466
[]
km2023-4
1
BeanieODM/beanie
pydantic
302
[feature] Custom type encoders
Have you considered to allow for custom type encoders? Let me explain. Pydantic supports custom types. In fact I can implement one classes to overload default types, like in this example: ```python class SpecialStr(str, BaseType): __slots__ = [] @classmethod def __get_validators__(cls): ...
closed
2022-07-07T23:05:28Z
2023-01-07T02:28:53Z
https://github.com/BeanieODM/beanie/issues/302
[ "Stale" ]
svaraborut
3
google-research/bert
tensorflow
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
strawberry-graphql/strawberry
graphql
3,276
Incorrect template rendering when overriding graphql IDE template
The GraphQLView and its async version allow overriding the template file. However, the loading of the template is incorrect, resulting in `JSON.parse("") // empty string` , because the variable is already replaced. ## Additional Context In the view we see the following code: ```python try: ...
open
2023-12-05T18:22:15Z
2025-03-20T15:56:30Z
https://github.com/strawberry-graphql/strawberry/issues/3276
[ "bug" ]
msopacua
2
ets-labs/python-dependency-injector
asyncio
91
Add Python 3.5 support
closed
2015-09-21T14:43:49Z
2015-10-12T15:23:02Z
https://github.com/ets-labs/python-dependency-injector/issues/91
[ "enhancement" ]
rmk135
1
iperov/DeepFaceLab
deep-learning
5,533
3050ti. 2 root error found
Starting. Press "Enter" to stop training and save model. Trying to do the first iteration. If an error occurs, reduce the model parameters. !!! Windows 10 users IMPORTANT notice. You should set this setting in order to work correctly. https://i.imgur.com/B7cmDCB.jpg !!! You are training the model from scratch...
open
2022-06-15T07:56:51Z
2023-06-08T23:18:54Z
https://github.com/iperov/DeepFaceLab/issues/5533
[]
knaxLFea
1
dask/dask
pandas
11,158
calling repartition on ddf with timeseries index after resample causes ValueError: left side of old and new divisions are different
**issue**: If you have a DataFrame (ddf) with a time series index that doesn’t align perfectly with whole seconds (for example, ‘2024-06-01 10:00:00.873821’), and you resample it, the new DataFrame’s divisions will be rounded down to the nearest second. This can cause an error when you try to repartition the ...
closed
2024-06-01T07:11:40Z
2024-06-03T16:22:50Z
https://github.com/dask/dask/issues/11158
[ "dataframe" ]
N4321D
0
LibrePhotos/librephotos
django
1,030
can not view photos from nextcloud
# 🐛 Bug Report * [x] 📁 I've Included a ZIP file containing my librephotos `log` files:[__logs.zip__](https://github.com/LibrePhotos/librephotos/files/12705941/logs.zip) * [x] ❌ I have looked for similar issues (including closed ones): __yes, I've looked through similar issue and get `fixed`, but I still met same ...
open
2023-09-23T08:48:56Z
2023-10-04T17:27:35Z
https://github.com/LibrePhotos/librephotos/issues/1030
[ "bug", "singleton" ]
LUCKandII
0
adamerose/PandasGUI
pandas
215
Fatal Python error: PyEval_RestoreThread - moving Tkinter window with PandasGUI open
Trying to move a Tkinter window at any time gives me this error across multiple systems. **Environment** Windows 10 64-bit Python 3.10 64-bit pandasgui-0.2.13 Error: PandasGUI INFO � pandasgui.gui � Opening PandasGUI Fatal Python error: PyEval_RestoreThread: the function must be called with the...
open
2022-11-11T20:12:08Z
2022-11-11T20:12:45Z
https://github.com/adamerose/PandasGUI/issues/215
[ "bug" ]
lachesis17
0
modelscope/data-juicer
data-visualization
63
[MM] image_deduplicator
A new Deduplicator image_deduplicator will be supported. It will remove duplicate images in multimodal samples. Maybe based on imagededup library TBD: when a sample contains multiple images, remove duplicate images only or remove this whole sample?
closed
2023-11-02T09:43:50Z
2023-11-15T03:11:01Z
https://github.com/modelscope/data-juicer/issues/63
[ "enhancement", "dj:multimodal" ]
HYLcool
0
serengil/deepface
machine-learning
1,318
[FEATURE]: Improve represent performance
### Description Performance is very slow when aligning faces when using the `represent` API. Please see my PR here: https://github.com/serengil/deepface/pull/1319 ### Additional Info _No response_
closed
2024-08-23T16:10:02Z
2024-08-26T13:51:26Z
https://github.com/serengil/deepface/issues/1318
[ "enhancement" ]
Circuit8
2
tflearn/tflearn
data-science
1,048
tflearn getting stuck when predicting
When model.predict is carried when using a sanic server, it is getting blocked and hanged. The issue is in config.py at line tf.get_collection('is_training_ops')[1].eval(session=session) under def is_training() error shown when evaluating the expression is "Timeout waiting for response 113" please help?
open
2018-05-09T14:11:01Z
2018-05-09T14:12:02Z
https://github.com/tflearn/tflearn/issues/1048
[]
spawn08
0
ultralytics/ultralytics
machine-learning
19,689
Yolo v10 model supported in Java
Dear expert I use the code with Yolov8 model for extraction it works well but i use the similar coding for Yolov10 model extraction it does not work Do you know any format changes for the output between v8 and v10? I try to make the java work for the extraction on yolov10 output, please advise OrtSession.Result outpu...
open
2025-03-14T03:17:13Z
2025-03-14T06:23:12Z
https://github.com/ultralytics/ultralytics/issues/19689
[ "question", "exports" ]
felixchan68
2
gradio-app/gradio
data-science
10,818
Bitdefender Issue
### Describe the bug ![Image](https://github.com/user-attachments/assets/8db5d656-1182-4773-99ed-88fdde280028) ### Have you searched existing issues? 🔎 - [x] I have searched and found no existing issues ### Reproduction I have no clue ### Screenshot ![Image](https://github.com/user-attachments/assets/554fb1a7-...
open
2025-03-17T17:42:00Z
2025-03-17T19:20:36Z
https://github.com/gradio-app/gradio/issues/10818
[ "bug" ]
PierrunoYT
1
vimalloc/flask-jwt-extended
flask
366
DeprecationWarning: The verify parameter is deprecated. Please use options instead.
The code line 91 in the file [ask_jwt_extended/utils.py](https://github.com/vimalloc/flask-jwt-extended/blob/master/flask_jwt_extended/utils.py) ``` jwt_manager = _get_jwt_manager() unverified_claims = jwt.decode( encoded_token, verify=False, algorithms=config.decode_algorithms ) ``` trigge...
closed
2020-10-26T17:33:44Z
2021-01-18T15:48:18Z
https://github.com/vimalloc/flask-jwt-extended/issues/366
[]
fabrizio2210
2
holoviz/panel
plotly
7,407
Cannot upload accepted_filetypes pdf
I'm on panel 1.5.2 using the FileDropper and try to make a working example for https://discourse.holoviz.org/t/problem-with-accessing-pdf-file-s-input-in-panel/8339. ![image](https://github.com/user-attachments/assets/72998338-44de-4191-bf7f-858a9d09b5d0) ```python import io import panel as pn import base64 f...
closed
2024-10-16T09:13:19Z
2024-12-23T07:58:59Z
https://github.com/holoviz/panel/issues/7407
[ "duplicate" ]
MarcSkovMadsen
3
xonsh/xonsh
data-science
5,718
shell exits if $THREAD_SUBPROCS=None and history is invoked with invalid argument
## Current Behavior Xonsh terminates after calling the history command with an invalid parameter if $THREAD_SUBPROCS=None <!--- For general xonsh issues, please try to replicate the failure using `xonsh --no-rc --no-env`. Short, reproducible code snippets are highly appreciated. You can use `$XONSH_SHOW_TRACEBACK=...
open
2024-10-31T16:44:19Z
2024-10-31T20:32:28Z
https://github.com/xonsh/xonsh/issues/5718
[ "history", "edge-case" ]
mrschyte
0
3b1b/manim
python
2,172
when i run example by manimgl, circle displayed not coorectly
### Describe the bug when i run manim, circle displayed not coorectly.it seems has may lines around the circle. ![image](https://github.com/user-attachments/assets/807f1411-6121-4a29-9755-9a4b76d35b67) ![image](https://github.com/user-attachments/assets/4e047f17-b5da-4755-88c6-91c72abeb933) **Code**: from mani...
closed
2024-09-30T08:32:24Z
2024-10-11T12:36:00Z
https://github.com/3b1b/manim/issues/2172
[ "bug" ]
hashixuehua
5
smiley/steamapi
rest-api
54
PyPi support
I am suggesting to support the package through pypi, so installation as well as distribution is easier. Currently installing this package otherwise is just unnecessary complicated. The package could even be tagged as alpha and nicht production ready. If requested I could modify the setup.py accordingly.
closed
2018-02-25T20:47:12Z
2019-04-09T16:10:59Z
https://github.com/smiley/steamapi/issues/54
[]
indietyp
1
DistrictDataLabs/yellowbrick
matplotlib
1,131
MissingValuesBar does not work on categorical columns
## Describe the solution you'd like Currently, I am unable to get MissingValuesBar to work on data that has categorical columns. It is internally trying to convert these columns to a floating point value and producing an error at this step. I am hoping this can be handles internally in the class itself since it is jus...
closed
2020-11-24T18:40:36Z
2022-05-07T21:00:55Z
https://github.com/DistrictDataLabs/yellowbrick/issues/1131
[ "type: bug", "type: technical debt" ]
ngupta23
2
ResidentMario/missingno
data-visualization
127
Using missingno from the python command line
I was unable to generate graphs from the command line, I tried to use missing.plot() or missing.show() without any output. I saw the missingno functions (using dir(missingno) and nothing seems to show graphs. Does it work just in Jupyter notebooks? Thanks,
closed
2021-02-04T22:29:23Z
2021-02-04T22:59:40Z
https://github.com/ResidentMario/missingno/issues/127
[]
ggutierrezc
1
aiortc/aiortc
asyncio
877
Crash when negotiating after a video transceiver has been added by the server
How to reproduce: 1) add transceivers to the peerConnection from the server (for example when the datachannel opens): ```py @pc.on("datachannel") async def on_datachannel(channel): pc.addTransceiver("audio") pc.addTransceiver("video") # if this line is commented, or r...
closed
2023-05-11T12:00:16Z
2023-10-06T02:00:35Z
https://github.com/aiortc/aiortc/issues/877
[ "stale" ]
nullishReturn
2
eriklindernoren/ML-From-Scratch
deep-learning
59
Add Gaussian Process
Pretty cool project. Gaussian Process might be something you can add in the future.
open
2019-09-27T07:33:28Z
2022-09-12T02:46:56Z
https://github.com/eriklindernoren/ML-From-Scratch/issues/59
[]
shikunyu8
2
home-assistant/core
python
140,642
MQTT Sensor have no Unit after Upgrading to 2025.3.3
### The problem Hi, I have done an update to HA 2025.3.3 After restart my MQTT Sensor entities don't show any unit any more, although they are defined in YAML with unit_of_measurement and device_class properly. In 2025.3.2 units show up! ### What version of Home Assistant Core has the issue? 2025.3.3 ### What wa...
closed
2025-03-15T04:58:56Z
2025-03-24T11:33:48Z
https://github.com/home-assistant/core/issues/140642
[ "wontfix", "integration: mqtt" ]
Vippis2000
9
onnx/onnx
scikit-learn
6,229
onnx.utils.extract_model failed to extract subgraph from whisper-tiny-decoder
I tried to extract a subgraph from whisper-tiny-decoder. In whisper-tiny-decoder, it has a control if node. Below code is tring to extract a subgraph from no_past branch: ``` import onnx name = "whisper-tiny-decoder" if name == "whisper-tiny-decoder": input_path = "whisper-tiny-decoder.onnx" output_path ...
open
2024-07-12T07:20:06Z
2024-07-12T08:15:26Z
https://github.com/onnx/onnx/issues/6229
[ "bug" ]
axinging
2
Python3WebSpider/ProxyPool
flask
159
docker部署,无法关闭日志
其实跟此问题有点类似 https://github.com/Python3WebSpider/ProxyPool/issues/158 我设置了环境变量APP_ENV=prod以及ENABLE_LOG_FILE=false,依然有大量日志
open
2022-05-17T09:56:35Z
2022-07-10T16:35:08Z
https://github.com/Python3WebSpider/ProxyPool/issues/159
[ "bug" ]
star7th
2
tqdm/tqdm
pandas
765
Step size for proper scaling of units when using tqdm as an iterable wrapper.
- [x] I have visited the [source website], and in particular read the [known issues] - [x] I have searched through the [issue tracker] for duplicates - [x] I have mentioned version numbers, operating system and environment, where applicable: tqdm: 4.32.2 Python: 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 21:26:5...
open
2019-06-26T11:36:57Z
2020-11-01T17:07:37Z
https://github.com/tqdm/tqdm/issues/765
[ "p3-enhancement 🔥", "question/docs ‽", "to-review 🔍" ]
golyalpha
13
cvat-ai/cvat
computer-vision
8,490
Can't build SiamMask and TransT functions
### 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 I'm encountering an issue where building automated annotation functions (SiamMask and TransT) in CVAT gets stuck in the "bu...
closed
2024-09-30T14:52:23Z
2024-10-18T12:56:52Z
https://github.com/cvat-ai/cvat/issues/8490
[ "need info" ]
midnightdim
1
yeongpin/cursor-free-vip
automation
81
可否考虑一下 手动指定版本号
```bash ✅ SQLite數據庫更新成功 ℹ️ 更新系統ID... ✅ 系統ID更新成功 ❌ reset.check_version_failed ℹ️ Cursor 版本 < 0.45.0,跳过 getMachineId 修补 ✅ 機器標識重置成功 ``` 我本地是 cursor 0.45.11 nixos , 重置后 依旧会提示 请求次数过多.
closed
2025-02-22T08:53:54Z
2025-02-25T08:31:21Z
https://github.com/yeongpin/cursor-free-vip/issues/81
[ "feature" ]
joyanhui
2
laughingman7743/PyAthena
sqlalchemy
88
How to specify output bucket for query results in s3?
Hi, we are moving frmo pyathenajdbc to pyathena, but we are trying to specify the `S3OutputLocation` parameter. We need it in our code. is this possible for this library? thanks.
closed
2019-06-18T16:36:01Z
2019-11-23T12:22:13Z
https://github.com/laughingman7743/PyAthena/issues/88
[]
otmezger
9
FactoryBoy/factory_boy
sqlalchemy
406
No module named 'faker.config'
Hello dear friends, I use Python 3.6 with Anaconda distribution. I have just installed factory_boy with pip `pip install factory_boy==2.9.2`. In the dependencies I have the following: - factory_boy==2.9.2 - Faker==0.7.18 And when I want to load the library I got the following message: ```python >>> im...
closed
2017-08-16T14:12:42Z
2023-02-05T15:19:04Z
https://github.com/FactoryBoy/factory_boy/issues/406
[ "Bug", "NeedInfo", "Packaging" ]
DEKHTIARJonathan
8
mars-project/mars
numpy
2,354
Support DataFrame operations on data which generates unknown dtypes
<!-- Thank you for your contribution! Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue. --> **Is your feature request related to a problem? Please describe.** Some DataFrame operands would generate output with unknown dtypes, like `tranpose`, `get_dummie...
closed
2021-08-19T03:51:13Z
2021-08-19T13:38:28Z
https://github.com/mars-project/mars/issues/2354
[ "type: feature", "mod: dataframe" ]
qinxuye
0
amidaware/tacticalrmm
django
2,057
[Feature request] Check list overview
**Is your feature request related to a problem? Please describe.** There is no way of knowing what check is deployed where without going into each agent. the worst is when most of the checks are done with policies and a couple here and there are done on the agents there is no way of knowing what has been deployed whe...
open
2024-11-01T07:51:02Z
2024-11-01T07:51:02Z
https://github.com/amidaware/tacticalrmm/issues/2057
[]
P6g9YHK6
0
ydataai/ydata-profiling
jupyter
776
OSError: [Errno 28] No space left on device
**Describe the bug** Met the same bug with [this issue](https://github.com/pandas-profiling/pandas-profiling/issues/518). The bug still happened when I set the envrionment variable `JOBLIB_TEMP_FOLDER` to a folder that is big enough. Also, I am quite sure that my memory is big enough( about 128G) **Version informat...
closed
2021-05-06T03:43:19Z
2021-05-09T20:42:51Z
https://github.com/ydataai/ydata-profiling/issues/776
[]
IncubatorShokuhou
1
AUTOMATIC1111/stable-diffusion-webui
pytorch
16,694
[Bug]: a1111 stopped loading
### Checklist - [ ] The issue exists after disabling all extensions - [ ] The issue exists on a clean installation of webui - [ ] The issue is caused by an extension, but I believe it is caused by a bug in the webui - [ ] The issue exists in the current version of the webui - [ ] The issue has not been reported ...
closed
2024-11-29T17:06:40Z
2024-11-29T17:31:45Z
https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/16694
[ "bug-report" ]
Colotus
0
deepspeedai/DeepSpeed
pytorch
7,121
AttributeError: partially initialized module 'deepspeed' has no attribute 'init_inference'
**To Reproduce** inference script: `import torch from transformers import AutoModelForCausalLM, AutoTokenizer import deepspeed model_name = "/home/pzl/models/Qwen2.5-3B" tokenizer = AutoTokenizer.from_pretrained(model_name) model = AutoModelForCausalLM.from_pretrained(model_name) ds_engine = deepspeed.init_inference(...
open
2025-03-09T13:24:32Z
2025-03-09T13:24:32Z
https://github.com/deepspeedai/DeepSpeed/issues/7121
[ "bug", "inference" ]
JocelynPanPan
0
sqlalchemy/sqlalchemy
sqlalchemy
11,728
Permanently corrupted hybrid_property column labeling as a result of selecting column returned by hybrid_property.expression
### Describe the bug The issue causes a select of `hybrid_property` to return its value under wrong label. The ORM model becomes "corrupted" by construction of a different specific select, selecting the column returned by `hybrid_property.expression`. The select causes memoization of `_proxy_key`, which is then incorr...
closed
2024-08-12T20:46:39Z
2024-08-14T14:05:01Z
https://github.com/sqlalchemy/sqlalchemy/issues/11728
[ "bug", "orm", "hard orm" ]
tomas-sk
8
nok/sklearn-porter
scikit-learn
38
Port CountVectorizer
For text mining it's important to fit also a CountVectorizer (or a TFIDFTransformer), so should be possible to export it in the targhet lenguage
open
2018-07-06T18:29:02Z
2022-05-16T21:55:30Z
https://github.com/nok/sklearn-porter/issues/38
[ "question", "new feature" ]
nicolalandro
3
vaexio/vaex
data-science
1,601
Filtering using multiple conditions on the same column
Hi, I want to filter on multiple conditions about the same column, but looks like the conditions don't apply correctly. The reproducible script is as follows. ```python import vaex import pandas as pd pandas_df = pd.DataFrame( data=[{ 'a': 1, 'b': 2, }, { 'a': 3, ...
closed
2021-10-03T06:01:18Z
2021-10-03T08:07:57Z
https://github.com/vaexio/vaex/issues/1601
[]
SyureNyanko
2
axnsan12/drf-yasg
rest-api
74
Validation error on serializer used only for responses
Note: This may be what https://github.com/axnsan12/drf-yasg/issues/51 was trying to get at... Trying to do this, but getting a validation error ("... 'ssv': "Unresolvable JSON pointer: 'definitions/Detail'") ``` class DetailSerializer(serializers.Serializer): detail = serializers.CharField() ``` ``` cl...
closed
2018-03-04T19:44:11Z
2018-03-05T09:51:52Z
https://github.com/axnsan12/drf-yasg/issues/74
[ "bug" ]
rmorison
1
deepspeedai/DeepSpeed
deep-learning
6,519
[BUG] RuntimeError: Error building extension 'inference_core_ops'
**Describe the bug** I am trying to run the non-persistent example given for mistralai/Mistral-7B-Instruct-v0.3 on a RTX A6000 GPU (on a server) so compute capability is met, ubuntu is 22.04, CUDA toolkit is 11.5 (I am not a sudoer of the server so I am not able to upgrade the toolkit, instead I have created a conda e...
closed
2024-09-10T08:37:09Z
2024-11-15T22:50:56Z
https://github.com/deepspeedai/DeepSpeed/issues/6519
[ "bug", "build" ]
Chetan3200
3
AUTOMATIC1111/stable-diffusion-webui
pytorch
16,234
[Bug]: Upscaler.py causes infinite loop (fix inside)
### Checklist - [ ] The issue exists after disabling all extensions - [X] The issue exists on a clean installation of webui - [ ] The issue is caused by an extension, but I believe it is caused by a bug in the webui - [X] The issue exists in the current version of the webui - [ ] The issue has not been reported ...
open
2024-07-18T21:33:46Z
2024-07-19T19:27:05Z
https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/16234
[ "bug-report" ]
NPDX909
2
deepspeedai/DeepSpeed
machine-learning
5,803
run evaluate_cogagent_demo.py error from sat import mpu, get_args, get_tokenizer error
My environment is transformers 4.42.3 torch 2.3.0+cu121 deepspeed 0.14.5+unknow when I run evaluate_cogagent_demo.py I encountered the following error message 2024-07-27 16:07:37,915] [INFO] [real_accelerator.py:203:get_accelerator] Setting ...
closed
2024-07-27T08:19:50Z
2024-08-01T17:29:54Z
https://github.com/deepspeedai/DeepSpeed/issues/5803
[ "bug", "inference" ]
gyjlll
3
OthersideAI/self-operating-computer
automation
102
Poor accuracy of pointer X/Y location inference
the X/Y coordinates inferred by the model are always off. It can't even select the address bar correctly.
closed
2023-12-12T21:46:40Z
2024-02-09T04:17:32Z
https://github.com/OthersideAI/self-operating-computer/issues/102
[]
ahsin-s
19
learning-at-home/hivemind
asyncio
88
Support tensor compression (fp16/int8)
In preliminary tests we observed * no quality degradation from converting tensors to fp16 and back before sending them across * negligible drawdown when tensors are encoded as fp32 mean/std and int8 data It would be great to enable quantization as a builtin feature for ExpertBackend, e.g. ``` expert = ExpertBac...
closed
2020-08-27T14:22:47Z
2021-02-24T13:21:05Z
https://github.com/learning-at-home/hivemind/issues/88
[ "enhancement" ]
justheuristic
1
CorentinJ/Real-Time-Voice-Cloning
python
811
Here is a model in Mandarin/Chinese 中文模型
Finally I got it work and it's really fun that you are listening to your own voice. 终于可以玩耍起来了, Link:https://pan.baidu.com/s/10t3XycWiNIg5dN5E_bMORQ Code:aid4 Codebase: https://github.com/babysor/Realtime-Voice-Clone-Chinese
closed
2021-08-07T04:27:05Z
2022-10-03T13:46:32Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/811
[]
babysor
19
nschloe/tikzplotlib
matplotlib
231
Cannot pass extra_axis_parameters
Whenever I run tikz_save(), I get the annoying messages: ``` Horizontal alignment will be ignored as no 'x tick label text width' has been passed in the 'extra' parameter ``` To get rid of them, I need to pass another argument extra_axis_parameters={...} which is supposed to be of type 'set' to tikz_save. This ...
closed
2018-04-18T13:30:15Z
2019-03-20T10:57:44Z
https://github.com/nschloe/tikzplotlib/issues/231
[]
Steffen1989
2
healthchecks/healthchecks
django
341
integration editing is awkward
You're probably aware of this, but I thought I'd summarize my experience anyway. I just went through setting up an integration with zulipchat (compare #202) via a custom webhook. That involved a bit of tweaking things, which turned out to be quite painful because 1. integrations don't start out with a name / disting...
closed
2020-03-10T12:27:05Z
2020-04-06T12:59:52Z
https://github.com/healthchecks/healthchecks/issues/341
[]
robx
3
allure-framework/allure-python
pytest
586
2 SubSuite defined while using dynamic definition (pytest)
#### I'm submitting a ... - [x] bug report - [ ] feature request - [ ] support request => Please do not submit support request here, see note at the top of this template. #### What is the current behavior? I want to use allure to generate report, and especially write some data into the report dynamically....
closed
2021-04-29T14:48:20Z
2023-04-25T11:56:11Z
https://github.com/allure-framework/allure-python/issues/586
[ "bug", "theme:pytest" ]
Shionigami
1
allenai/allennlp
nlp
5,237
Accept compressed files as input to `predict` when using a `Predictor`
**Is your feature request related to a problem? Please describe.** I typically used compressed datasets (e.g. gzipped) to save disk space. This works fine with AllenNLP during training because I can write my dataset reader to load the compressed data. However, the `predict` command opens the file and reads lines for t...
open
2021-06-02T17:29:15Z
2022-09-12T16:23:07Z
https://github.com/allenai/allennlp/issues/5237
[ "Good First Issue", "Contributions welcome", "Feature request" ]
danieldeutsch
10
ultralytics/yolov5
machine-learning
12,968
Run yolov5 using tensor rt
### Search before asking - [X] I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and [discussions](https://github.com/ultralytics/yolov5/discussions) and found no similar questions. ### Question I exported Tensor RT weights (last.engine). When i use the weights in yolov5 detect it ge...
closed
2024-04-28T01:10:43Z
2024-06-08T00:22:31Z
https://github.com/ultralytics/yolov5/issues/12968
[ "question", "Stale" ]
tasyoooo
2
2noise/ChatTTS
python
332
在海量音频中寻找相似音色的可能
理论上如果生成的音色范围足够广,大多数音频有办法找到相似的音色。 https://github.com/cronrpc/Audio-Speaker-Needle-In-Haystack 这里用的3ds-speaker的音频embs,可能扩充到一万人到五万人会产生质变,并且文本需要选择一个尽可能相似的。 Huggingface Sapce: https://huggingface.co/spaces/omniway/Audio-Needle-In-Haystack ![image](https://github.com/2noise/ChatTTS/assets/147160173/b987e0ac-560...
closed
2024-06-17T19:07:28Z
2024-07-20T07:26:32Z
https://github.com/2noise/ChatTTS/issues/332
[ "ad" ]
cronrpc
5
PokeAPI/pokeapi
graphql
188
evolution-chain uses inconsistent schema for evolution_details
Best example to compare is evolution-chain/1 and evolution-chain/34. The evolution_details property for evolves_to can be null, a single value, or an array. I propose wrapping all values in an array so that the expected type remains consistent.
closed
2016-05-12T13:29:12Z
2016-05-24T13:56:16Z
https://github.com/PokeAPI/pokeapi/issues/188
[]
zberk
4
marcomusy/vedo
numpy
606
Plotter in Qt - Mouse Click Event not registering at the correct position
I have tried several different things about the mouse clicks not registering correctly in my Qt mainwindow. When using only my QHD monitor, the program worked just fine ([video](https://drive.google.com/file/d/1v-2o86Stp6tS1EWGkR2dSy2Iit1Rnkl6/view?usp=sharing)). However, when using my laptop (zoomed in at 1792 x 1120)...
closed
2022-03-02T04:49:20Z
2022-04-21T17:47:36Z
https://github.com/marcomusy/vedo/issues/606
[ "long-term" ]
danieljiang520
11