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
WZMIAOMIAO/deep-learning-for-image-processing
pytorch
691
HRNet代码中是否没必要再判断kps_weights[kp_id] > 0.5
**System information** * Have I written custom code: No * OS Platform(e.g., window10 or Linux Ubuntu 16.04): Ubuntu20.04 * Python version: 3.8 * Deep learning framework and version(e.g., Tensorflow2.1 or Pytorch1.3): Pytorch1.11 * Use GPU or not: GPU * CUDA/cuDNN version(if you use GPU): CUDA * The network you t...
closed
2022-11-18T02:47:07Z
2022-11-20T03:23:14Z
https://github.com/WZMIAOMIAO/deep-learning-for-image-processing/issues/691
[]
DaMiBear
1
Guovin/iptv-api
api
632
接口在IOS Senplayer软件上无法导入
如题,使用url或文件无论是m3u还是txt均无法导入 提示 url解析失败,请检查网络 另外一个项目的m3u导入正常 如可能辛苦作者看看为啥
closed
2024-12-07T06:07:47Z
2024-12-12T01:56:37Z
https://github.com/Guovin/iptv-api/issues/632
[ "question" ]
gxterry
5
neuml/txtai
nlp
815
Add interface for agent memory
Add interface for agent memory. Related to #791.
open
2024-11-20T14:23:50Z
2025-03-21T16:44:44Z
https://github.com/neuml/txtai/issues/815
[]
davidmezzetti
0
opengeos/leafmap
plotly
83
Address JOSS reviewer comments
This issue is for addressing the JOSS reviewer comments: - https://github.com/openjournals/joss-reviews/issues/3414#issuecomment-877210440 - https://github.com/openjournals/joss-reviews/issues/3414#issuecomment-879660026
closed
2021-07-11T21:29:45Z
2021-07-27T03:18:46Z
https://github.com/opengeos/leafmap/issues/83
[ "enhancement" ]
giswqs
1
benbusby/whoogle-search
flask
772
[BUG] Fly deployment Redux
Something may have changed since [this issue](https://github.com/benbusby/whoogle-search/issues/468) but it appears a Whoogle deployment on Fly.io requires a paid tier. I didn't understand a lot of what was discussed in issue 468, but I followed fly.io's guide. First: "fly apps create --org personal --port 5000" is...
closed
2022-06-02T16:41:13Z
2022-07-18T16:22:31Z
https://github.com/benbusby/whoogle-search/issues/772
[ "bug" ]
vcg3rd
1
K3D-tools/K3D-jupyter
jupyter
125
index.js:380 TypeError: Cannot read property 'resizeHelper' of undefined
Here is an error I have trying to use K3D on JLab: ``` K3D: (UNMASKED_VENDOR_WEBGL) NVIDIA Corporation K3D: (UNMASKED_RENDERER_WEBGL) GeForce GTX 1050 Ti/PCIe/SSE2 index.js:380 TypeError: Cannot read property 'resizeHelper' of undefined at child.handleResize (labplugin.js:7725) at child.processPhosphorM...
closed
2018-12-03T00:01:01Z
2019-10-23T11:10:28Z
https://github.com/K3D-tools/K3D-jupyter/issues/125
[ "JupyterLab" ]
hadim
2
mage-ai/mage-ai
data-science
5,636
[BUG] MSSQL export is not supporting method=multi when fast_execute=true
### Mage version 0.9.73 ### Describe the bug I am trying to use mssql export to temp table through multiple dynamic child blocks. when I use fast execute = true, I m facing below error even though data is very less only 6 rows. I tried sql alchemy code in my python blocks directly and if specify method="m...
closed
2025-01-07T07:53:21Z
2025-01-10T09:45:54Z
https://github.com/mage-ai/mage-ai/issues/5636
[ "bug" ]
tech-dev-ip
0
yzhao062/pyod
data-science
255
How to set the threshold an ensemble detector?
I'm playing with an ensemble of detectors (i.e. the [Model Combination example](https://pyod.readthedocs.io/en/latest/example.html#model-combination-example)). It's not clear how to go from the averaged anomaly scores `comb_by_average` to a prediction. Is there a utility function for computing the threshold of an en...
open
2020-12-03T06:36:11Z
2020-12-03T06:36:11Z
https://github.com/yzhao062/pyod/issues/255
[]
kennysong
0
exaloop/codon
numpy
354
Defining a nested class causes a segfault
The following code defined a nested classclass B. Then Codon reports a segfault. test.py ``` class A: a = A() class B: class C(B): pass ``` The actual output: `Segmentation Fault` Reproduce step: > download the Pre-built binaries for Linux > Type " codon run --release test.py" in the co...
closed
2023-04-16T17:07:51Z
2025-02-26T04:16:06Z
https://github.com/exaloop/codon/issues/354
[ "bug" ]
xiaxinmeng
5
predict-idlab/plotly-resampler
plotly
119
fig.update_xaxes(range=[start,end]) and fig.update_yaxes(range=[start,end]) is not working
Here is my code: I am trying to show only the selected range values using the custom slider. ```import numpy as np import pandas as pd import plotly.express as px import plotly.graph_objects as go from plotly_resampler import FigureResampler x = np.arange(2_000) noisy_sin = (3 + np.sin(x / 200) + np.random.r...
closed
2022-09-15T15:01:04Z
2022-10-22T16:22:26Z
https://github.com/predict-idlab/plotly-resampler/issues/119
[ "bug" ]
muntakim1
4
ets-labs/python-dependency-injector
asyncio
334
doc: override by derived container class
I would like a derived container class to be able to provide a dependency for a base container. It would seem that this isn't possible now: ```python class Base(containers.DeclarativeContainer): to_override = providers.Dependency(instance_of=str) # method 1 -- override attribute class Derived1(Base): ot...
closed
2020-12-13T15:55:02Z
2021-02-19T14:12:19Z
https://github.com/ets-labs/python-dependency-injector/issues/334
[ "question", "docs" ]
shaunc
7
ultralytics/yolov5
machine-learning
12,910
Exploring Data Augmentation in YOLO-based Networks
### 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 Hello friends, In the training of this yolo, as you know, there is a series of parameter...
closed
2024-04-12T18:26:27Z
2024-10-20T19:43:36Z
https://github.com/ultralytics/yolov5/issues/12910
[ "question" ]
BehdadSDP
4
faif/python-patterns
python
369
observer.py imports typing.Protocol which is not in Python 3.7
I got an error when I run `tox` E ImportError: cannot import name 'Protocol' from 'typing' (/Users/yhay81/.pyenv/versions/3.7.9/lib/python3.7/typing.py) It is because observer.py import typing.Progocol and typing.Progocol is new in Python version 3.8. https://docs.python.org/3/library/typing.html#typing.Protocol...
closed
2021-01-24T04:25:22Z
2021-01-26T18:54:17Z
https://github.com/faif/python-patterns/issues/369
[ "bug" ]
yhay81
2
rthalley/dnspython
asyncio
1,128
Rdata.to_wire() return type is wrong
**Describe the bug** The return type of `Rdata.to_wire()` is `Optional[bytes]`, as it returns `None` if the `file` parameter is not `None`, and a `bytes` otherwise. **Context (please complete the following information):** - dnspython version [e.g. 2.2.1] - Python version [e.g. 3.10.0] - OS: [e.g. macOS Monter...
closed
2024-09-08T18:17:22Z
2024-09-10T15:11:29Z
https://github.com/rthalley/dnspython/issues/1128
[ "Bug", "Fixed" ]
rthalley
1
flavors/django-graphql-jwt
graphql
272
request.user in classical django views always AnonymousUser
Hello everyone, I have an application working mainly with graphql, but I also have some "classical" django views to download files. graphql_jwt works great with graphql queries and mutations, but in an http view, the request.user is always AnonymousUser. This is how I defined my middlewares and authentication backe...
closed
2021-06-03T14:03:32Z
2021-08-10T23:09:52Z
https://github.com/flavors/django-graphql-jwt/issues/272
[]
merodrem
2
httpie/cli
api
613
Requesting data from a filename always yields Content-Type: application/json
According to https://httpie.org/doc#request-data-from-a-filename > It has the advantage that the Content-Type header is automatically set to the appropriate value based on the filename extension. For example, the following request sends the verbatim contents of that XML file with `Content-Type: application/xml` ...
closed
2017-09-29T09:53:42Z
2023-11-07T23:59:52Z
https://github.com/httpie/cli/issues/613
[ "bug" ]
tobilg
3
LibrePhotos/librephotos
django
979
manual date/time entry not operand
With 23/08/01 pull version, submit button to modify time /date field is not operand. I made a test with demo2, same result.
closed
2023-08-01T17:29:17Z
2023-08-12T14:31:31Z
https://github.com/LibrePhotos/librephotos/issues/979
[ "bug" ]
loulou91
1
plotly/dash
data-science
2,419
allow send_data_frame to send df.to_csv using send_bytes
[pandas df.to_csv](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.to_csv.html) supports encodings other than utf-8 in versions > 1.2 but only if the path_or_buf is a binary file type so if I want to do `dcc.send_data_frame(df.to_csv, "mydf.csv", encoding='utf-8-sig')`, the encoding will sti...
open
2023-02-10T18:06:07Z
2024-08-13T19:26:10Z
https://github.com/plotly/dash/issues/2419
[ "feature", "P3" ]
michaelbabyn
0
pydantic/logfire
pydantic
393
pip-compile logfire with opentelemetry-instrumentation depending on setuptools
### Question Dont know if this is an issue or not so opened a question. I'm trying to instrument a fastapi app. That means that you need to pip install logfire[fastapi], which pip installs logfire and opentelemetry-instrumentation-fastapi. But looking at the requirements that I am building from requirements.in I see t...
closed
2024-08-21T14:16:45Z
2024-08-27T13:08:31Z
https://github.com/pydantic/logfire/issues/393
[ "Question" ]
robert-moyai
4
Buuntu/fastapi-react
fastapi
191
Frontend build faild
Frontend build faild, don't know why ```bash /app/run.sh: line 2: $'\r': command not found /app/run.sh: line 3: syntax error near unexpected token `$'in\r'' 'app/run.sh: line 3: `case $1 in ```
open
2022-06-06T16:23:03Z
2022-08-02T04:27:43Z
https://github.com/Buuntu/fastapi-react/issues/191
[]
buaaflyaway
2
Anjok07/ultimatevocalremovergui
pytorch
730
error
Last Error Received: Error Received while processing "gamevoice.wav": Process Method: VR Architecture If this error persists, please contact the developers with the error details. Traceback Error: " File "inference_v5.py", line 611, in main File "lib_v5\spec_utils.py", line 77, in wave_to_spectrogram_mt ...
open
2023-08-10T09:10:40Z
2023-08-10T09:10:40Z
https://github.com/Anjok07/ultimatevocalremovergui/issues/730
[]
ValerianMa1
0
huggingface/transformers
tensorflow
36,660
[FEAT] [non-CUDA]: Support alternative implementation for `constraints.positive_definite.check`
### Feature request Could there be an alternative implementation for ``` /usr/local/lib/python3.12/dist-packages/transformers/modeling_utils.py:2470: in _init_added_embeddings_weights_with_mean is_covariance_psd = constraints.positive_definite.check(epsilon * covariance).all() ``` the `torch.linalg.cholesky` only...
open
2025-03-12T09:38:30Z
2025-03-15T18:19:37Z
https://github.com/huggingface/transformers/issues/36660
[ "Feature request" ]
tjtanaa
10
aleju/imgaug
deep-learning
33
May you add the script to generate 'examples_grid.jpg' image?
May you add the script to generate ' examples_grid.jpg' image? Thanks!
closed
2017-05-21T00:18:20Z
2017-05-21T00:33:54Z
https://github.com/aleju/imgaug/issues/33
[]
panovr
1
ultralytics/ultralytics
python
18,754
Interpretation of Yolo10's and Yolo11's output using OpenVINO
### Search before asking - [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/ultralytics/ultralytics/discussions) and found no similar questions. ### Question # Question I have converted Yolo10 and Yolo11 nano models to OpenVINO...
open
2025-01-18T13:48:21Z
2025-02-16T14:31:59Z
https://github.com/ultralytics/ultralytics/issues/18754
[ "question", "detect", "exports" ]
nikpayam
20
nltk/nltk
nlp
2,969
Testing offline
(I am sorry for bothering you on the issue tracker with something which probably isn't a bug, but I haven't any other functional means of communication with the project) While packaging NLTK for openSUSE, I would like to make tests running. The problem is that our build system (as build systems for all distributions...
open
2022-03-27T22:57:40Z
2022-12-27T18:20:06Z
https://github.com/nltk/nltk/issues/2969
[]
mcepl
2
AirtestProject/Airtest
automation
1,234
macOS 14.5 (23F79) 打开IDE,脚本编辑区域不能编辑,显示一片黑色,点击会新建脚本。
**问题分类** * 测试开发环境AirtestIDE使用 **描述问题bug** * 打开IDE,脚本编辑区域不能编辑,显示一片黑色,点击会新建脚本 **相关截图** <img width="644" alt="image" src="https://github.com/user-attachments/assets/db5f794e-3af8-47ad-be7b-d231e39f7639"> **复现步骤** 1. 打开IDE 2. 脚本编辑区显示一片黑色 3. 点击会新建脚本 **预期效果** * 可以正常编辑 **python 版本:** `Python 3....
open
2024-08-08T01:07:02Z
2024-11-11T07:27:01Z
https://github.com/AirtestProject/Airtest/issues/1234
[]
CodeKevin
3
ydataai/ydata-profiling
data-science
1,688
plot.histogram.max_bins setting error
### Current Behaviour when histogram bins > `setting plot.histogram.max_bins` Exception:`ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()` in Python 3.10 The failed code is : ~/anaconda3/lib/python3.11/site-packages/ydata_profiling/model/summary_algorithms.p...
open
2025-01-06T10:43:21Z
2025-01-06T10:43:35Z
https://github.com/ydataai/ydata-profiling/issues/1688
[ "needs-triage" ]
shiyinhongsama
0
yinkaisheng/Python-UIAutomation-for-Windows
automation
81
尝试pywinauto和 uiautomation共同使用,在使用SetActive提示ctypes类型错误
在项目中尝试结合pywinauto 一起进行自动化测试,但是只要导入pywinauto, 使用uiautomaiton中的SetActive()方法就提示类型错误。 Traceback (most recent call last): File "D:/python_work/CAS_AutoTest/ut/ut.py", line 41, in <module> auto.WindowControl(searchDepth=1, AutomationId="myMainWindow", RegexName="Login").SetActive() File "D:\Python37-32\lib\...
open
2019-07-06T05:00:57Z
2019-07-08T01:50:06Z
https://github.com/yinkaisheng/Python-UIAutomation-for-Windows/issues/81
[ "question" ]
qdwangjianjun
2
plotly/dash
flask
3,238
The stringcase package can no longer be installed with setuptools version >=78.
The [https://pypi.org/project/stringcase/](stringcase) package, that is hard dependacy of Dash since this PR can no longer be installed using setuptools >=78, because of the following PR [https://github.com/pypa/setuptools/pull/4870](#4870). As a result, Dash can no longer be installed with setuptools ver...
open
2025-03-24T16:07:40Z
2025-03-24T17:31:05Z
https://github.com/plotly/dash/issues/3238
[ "bug", "P1" ]
T4rk1n
3
ultralytics/yolov5
machine-learning
12,702
Why the model has background class ? Predicted as Background ?
### 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 am currently working on a project using YOLO v5/v8 for classifying different grades of ...
closed
2024-02-03T19:05:20Z
2024-10-20T19:38:52Z
https://github.com/ultralytics/yolov5/issues/12702
[ "question", "Stale" ]
itsmefifa
3
ultralytics/yolov5
pytorch
13,297
Facing issues while changing class ID values
### 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'm currently using the Xtreme1 tool for creating classes in the ontology section. I’m fa...
open
2024-09-04T09:31:49Z
2024-09-05T02:33:51Z
https://github.com/ultralytics/yolov5/issues/13297
[ "question" ]
RaushanSharma7
1
Lightning-AI/pytorch-lightning
data-science
19,673
LightningModule.train_dataloader not being called
### Bug description The hook `train_dataloader` of `LightningModule` is not being called from `Trainer.fit`. I need to put code there, that changes the dataloader and requires access to the optimizers, as follows ```python class Classifier(LightningModule): def __init__( self, *args, ...
open
2024-03-19T22:14:09Z
2024-03-20T15:58:48Z
https://github.com/Lightning-AI/pytorch-lightning/issues/19673
[ "question", "working as intended", "lightningdatamodule", "ver: 2.1.x" ]
dwahdany
2
pydantic/FastUI
fastapi
327
Refine nestable components
See https://github.com/pydantic/FastUI/pull/308#discussion_r1593712269 and https://github.com/pydantic/FastUI/pull/308
open
2024-05-30T14:14:01Z
2024-05-30T14:14:23Z
https://github.com/pydantic/FastUI/issues/327
[]
sydney-runkle
0
FlareSolverr/FlareSolverr
api
795
Docker-compose specified port is not respected
### Have you checked our README? - [X] I have checked the README ### Have you followed our Troubleshooting? - [X] I have followed your Troubleshooting ### Is there already an issue for your problem? - [X] I have checked older issues, open and closed ### Have you checked the discussions? - [X] I hav...
closed
2023-06-06T03:30:54Z
2023-06-07T02:45:33Z
https://github.com/FlareSolverr/FlareSolverr/issues/795
[]
Smokey23
3
modelscope/data-juicer
streamlit
451
[Feat]: Unified LLM Calling Management
### Search before continuing 先搜索,再继续 - [X] I have searched the Data-Juicer issues and found no similar feature requests. 我已经搜索了 Data-Juicer 的 issue 列表但是没有发现类似的功能需求。 ### Description 描述 Currently, some LLM-dependent operators support `vllm`, while others utilize Hugging Face or the OpenAI API for model calling. It is...
open
2024-10-16T03:23:38Z
2024-10-16T08:47:01Z
https://github.com/modelscope/data-juicer/issues/451
[ "enhancement" ]
drcege
0
koxudaxi/datamodel-code-generator
pydantic
1,427
since v0.16.0 `--use-default` is broken when `allOf` is present
**Describe the bug** In v0.15.0 `--use-default` works as expected. Since `v0.16.0`, this is only the case when no `allOf` is present in the schema. **To Reproduce** Example schema: ```json { "type": "object", "title": "Item", "allOf": [{ "title": "Entity", "type": "obje...
closed
2023-07-16T06:21:05Z
2024-05-11T05:28:23Z
https://github.com/koxudaxi/datamodel-code-generator/issues/1427
[ "bug" ]
simontaurus
2
qubvel-org/segmentation_models.pytorch
computer-vision
508
Grayscale issues
Hi, I have an issue using the library. I tried to doing training based on gray scale images and with binary mask (0, 255) values with 255 as foreground. If I specified channels = 1 an exception was raised for broadcast operands issue. If I specify 3 channels and work on image like RGB image, I got mask with negative v...
closed
2021-11-02T16:42:57Z
2022-03-15T02:01:02Z
https://github.com/qubvel-org/segmentation_models.pytorch/issues/508
[ "Stale" ]
antonino-tocco
4
pallets-eco/flask-sqlalchemy
flask
841
·
·
closed
2020-06-15T04:28:28Z
2020-12-05T19:58:24Z
https://github.com/pallets-eco/flask-sqlalchemy/issues/841
[]
jwjyy
1
wemake-services/django-test-migrations
pytest
11
Post migrate signal receiver of the auth contrib gives me ForeignKeyViolation.
**Error message** ``` ____________________________________________________ ERROR at teardown of test _____________________________________________________ self = <django.db.backends.postgresql.base.DatabaseWrapper object at 0x7f8187ac3588> def _commit(self): if self.connection is not None: ...
closed
2019-11-29T12:41:04Z
2020-02-25T14:04:22Z
https://github.com/wemake-services/django-test-migrations/issues/11
[ "bug", "help wanted" ]
proofit404
1
onnx/onnx
deep-learning
6,594
[RFC] Do we need a 3.13t version [Python 3.13 (64-bit, freethreaded)]?
# Ask a Question ### Question Do we need a 3.13t version [Python 3.13 (64-bit, freethreaded)]? The upcoming pytorch version 2.6 will have experimental support for that: (https://github.com/pytorch/pytorch/blob/main/RELEASE.md#release-compatibility-matrix)
open
2024-12-20T20:36:21Z
2025-03-07T06:00:19Z
https://github.com/onnx/onnx/issues/6594
[ "question", "rfc" ]
andife
12
huggingface/datasets
computer-vision
6,675
Allow image model (color conversion) to be specified as part of datasets Image() decode
### Feature request Typical torchvision / torch Datasets in image applications apply color conversion in the Dataset portion of the code as part of image decode, separately from the image transform stack. This is true for PIL.Image where convert is usually called in dataset, for native torchvision https://pytorch.or...
closed
2024-02-16T23:43:20Z
2024-03-18T15:41:34Z
https://github.com/huggingface/datasets/issues/6675
[ "enhancement" ]
rwightman
1
pydata/xarray
numpy
9,784
open_mfdataset with remote files is broken because of #9687
### What happened? https://github.com/pydata/xarray/pull/9687 This PR broke open_mfdataset with remote files. The ``_normalize_path_list`` doesn't identify them properly and recurses into the remote file ### What did you expect to happen? This should continue to work, i.e. exit if p is not a list instead of...
closed
2024-11-15T15:27:54Z
2024-11-15T20:19:04Z
https://github.com/pydata/xarray/issues/9784
[ "bug", "regression" ]
phofl
0
pytest-dev/pytest-cov
pytest
416
Running pytest-cov in parallel
# Summary People are using `tox -p auto` or `tox -p all` more and more since it exists, (and some are simply using `&` in shell scripts). But it's failing with `pytest-cov` (https://github.com/nedbat/coveragepy/issues/883, https://github.com/pytest-dev/pytest-cov/issues/356, https://github.com/pytest-dev/pytest-c...
open
2020-06-27T20:48:43Z
2024-09-20T10:02:34Z
https://github.com/pytest-dev/pytest-cov/issues/416
[]
JulienPalard
6
dmlc/gluon-nlp
numpy
894
Avoid hyperlinks to .rst and .md files from the website
Currently rst and markdown files are well-rendered on Github and there are users who browse Github to read these documentations/tutorials. In the meantime these files are converted to html files and hosted on the website. However, hard-coding any hyperlink ending with `.html` will cause a dead-link if the user is readi...
open
2019-08-23T17:12:43Z
2019-08-28T19:19:15Z
https://github.com/dmlc/gluon-nlp/issues/894
[ "bug" ]
eric-haibin-lin
0
ydataai/ydata-profiling
jupyter
1,439
[BUG] 🐛 `TypeCheckError` thrown when initialising a report
### Current Behaviour Error thrown when initialising a report: ``` txt TypeCheckError: argument "config_file" (None) did not match any element in the union: pathlib.Path: is not an instance of pathlib.Path str: is not an instance of str ``` ### Expected Behaviour No error to be thrown. ### Data Descripti...
closed
2023-09-13T03:03:51Z
2023-12-19T13:00:48Z
https://github.com/ydataai/ydata-profiling/issues/1439
[ "bug 🐛" ]
chrimaho
2
davidsandberg/facenet
tensorflow
1,170
How to use DBSCAN on multiple embeddings identities?
I have the following setting: 1. A surveillance system take photos of people's faces (there are a varying number of photos for each person). 2. I run FaceNet for each photo and get a list of embedding vectors for each person (each person is represented by a list of embeddings, not by a single one). The problem: ...
open
2020-09-03T20:04:31Z
2020-09-03T20:04:31Z
https://github.com/davidsandberg/facenet/issues/1170
[]
leo7r
0
gradio-app/gradio
data-science
10,852
Add local file access example to documentation
- [x] I have searched to see if a similar issue already exists. **Is your feature request related to a problem? Please describe.** I lost a lot of time looking for an example on how to include static files in gradio 5.22 and only found the solution to 1) set absolute paths and 2) use `/gradio_api/file=` in a github...
closed
2025-03-21T08:22:45Z
2025-03-21T10:53:58Z
https://github.com/gradio-app/gradio/issues/10852
[]
pcschreiber1
1
amidaware/tacticalrmm
django
1,876
After updating to version 0.17.3 of RMM tactical, all hosts were in "overdue" status
After updating to version 0.17.3 of RMM tactical, all hosts were in "overdue" status
closed
2024-05-23T18:34:35Z
2024-05-23T19:20:52Z
https://github.com/amidaware/tacticalrmm/issues/1876
[]
Cleberson-Brandao
0
deeppavlov/DeepPavlov
tensorflow
811
Unable to load odqa model.
from deeppavlov import configs from deeppavlov.core.commands.infer import build_model odqa = build_model(configs.odqa.en_odqa_infer_wiki, load_trained=True) I'm trying to load the model but m getting below error, could you please help. File "C:\Users\vsolanki\AppData\Local\Programs\Python\Python36\lib\site-...
closed
2019-04-22T05:22:15Z
2019-04-22T09:39:34Z
https://github.com/deeppavlov/DeepPavlov/issues/811
[]
Pem14604
1
pyro-ppl/numpyro
numpy
1,357
How to properly define a Mixture
I am trying to define a mixture model Something like <img src="https://render.githubusercontent.com/render/math?math=\color{gray}y_i ~\mid~ \hat{y}_{in}, \hat{y}_{out}, \sigma_y, \sigma_{out} \rightsquigarrow (1 - g_i) \, \mathcal{N}(\hat{y}_{in}, \sigma_y) + g_i \, \mathcal{N}(\hat{y}_{out}, \sigma_{out})"> I ...
closed
2022-03-09T10:48:59Z
2022-03-11T09:53:19Z
https://github.com/pyro-ppl/numpyro/issues/1357
[ "question" ]
mfouesneau
3
chatanywhere/GPT_API_free
api
225
OpenAI response: content=None
[chatgpt-2] [INFO] [1714441451.996533728] [chatgpt]: Input message received: Go ahead for 1 m. [chatgpt-2] [INFO] [1714441452.002544928] [chatgpt]: Chat history updated with {'role': 'user', 'content': 'Go ahead for 1 m.'} [chatgpt-2] [INFO] [1714441452.006633129] [chatgpt]: Sending messages to OpenAI: [{'role': 'sys...
closed
2024-04-30T06:19:42Z
2024-05-01T14:10:31Z
https://github.com/chatanywhere/GPT_API_free/issues/225
[]
SuccuFy
13
Evil0ctal/Douyin_TikTok_Download_API
fastapi
195
Cookie失效了
***Platform where the error occurred?*** Such as: Douyin/TikTok ***The endpoint where the error occurred?*** Such as: API-V1/API-V2/Web APP ***Submitted input value?*** Such as: video link ***Have you tried again?*** Such as: Yes, the error still exists after X time after the error occurred. ***...
closed
2023-04-10T02:59:00Z
2023-04-11T11:28:56Z
https://github.com/Evil0ctal/Douyin_TikTok_Download_API/issues/195
[ "BUG", "enhancement" ]
Cestb0n
2
huggingface/pytorch-image-models
pytorch
960
[BUG] ViT finetuning eval accuracy is too high running on TPU (bits_and_tpu branch)
Hey, I've been finetuning ViT on different datasets (cifar100, oxford_pets, etc.). I am using Google TRC TPUs, specifically V3 VM using the bits_and_tpu branch. I have found the results of finetuning to be odd, specifically, on CIFAR100 I am seeing the eval top1 accuracy reaching 94.19 within 17 epochs (I even had 1 r...
closed
2021-11-07T18:14:35Z
2021-11-11T21:02:23Z
https://github.com/huggingface/pytorch-image-models/issues/960
[ "bug" ]
eliahuhorwitz
6
redis/redis-om-python
pydantic
468
mypy errors
Hello, when I run mypy on my project, I got some errors. Can you help me? Regards, # Example ```python import os from datetime import datetime from redis_om import EmbeddedJsonModel from redis_om import Field from redis_om import get_redis_connection from redis_om import JsonModel class Message(Embe...
open
2023-01-28T13:44:26Z
2023-04-30T07:26:22Z
https://github.com/redis/redis-om-python/issues/468
[ "maintenance" ]
tyki6
2
microsoft/nni
deep-learning
5,501
Error occurs when pip install nni[SMAC]
**Describe the issue**: When I use `pip install nni[SMAC]` , error occurs. The error is as follows. I don't know how to solve it. Thanks for your answer! ``` Collecting ConfigSpaceNNI>=0.4.7.3 Downloading http://mirrors.aliyun.com/pypi/packages/35/c7/e3b8b1d662498a92fa2913d9c7c2134b4831820c8a13de962b987c0acb18/...
closed
2023-04-03T14:36:06Z
2023-04-04T07:14:56Z
https://github.com/microsoft/nni/issues/5501
[]
sunze992
0
chainer/chainer
numpy
7,676
TypeError: incompatible array types are mixed in the forward input (LinearFunction). Actual: <class 'numpy.ndarray'>, <class 'cupy.core.core.ndarray'>, <class 'cupy.core.core.ndarray'>
* Conditions ``` python -c 'import chainer; chainer.print_runtime_info()' ``` python -c 'import chainer; chainer.print_runtime_info()' Platform: Linux-4.18.0-25-generic-x86_64-with-debian-buster-sid Chainer: 6.1.0 NumPy: 1.16.4 CuPy: CuPy Version : 6.1.0 CUDA Root : /usr/local/cuda-10...
closed
2019-07-02T09:30:35Z
2019-07-03T02:25:16Z
https://github.com/chainer/chainer/issues/7676
[]
BenoitKAO
1
plotly/dash
plotly
3,207
Editshape - overwriting the behavior of the editable properly in shape definition
Thank you so much for helping improve the quality of Dash! We do our best to catch bugs during the release process, but we rely on your help to find the ones that slip through. **Context** In DCC Graph if `'edits': {'shapePosition':True}` is defined - it overwrites the editable property of the shapes when defining t...
closed
2025-03-11T05:13:02Z
2025-03-11T05:15:39Z
https://github.com/plotly/dash/issues/3207
[]
sssaha
1
DistrictDataLabs/yellowbrick
matplotlib
738
Update ROCAUC to aid interpretation
Whenever I use a ROC plot I have to refresh myself about what it means. In particular - what do the axis labels _mean_ and where are the thresholds on the plot. It doesn't help that wikipedia's https://en.wikipedia.org/wiki/Receiver_operating_characteristic page has a heap of formulas and their confusion matrix example...
open
2019-02-10T22:58:11Z
2019-03-12T13:01:18Z
https://github.com/DistrictDataLabs/yellowbrick/issues/738
[ "type: feature", "priority: medium" ]
ianozsvald
9
coqui-ai/TTS
deep-learning
3,992
Finetune XTTS for new languages
Hello everyone, below is my code for fine-tuning XTTS for a new language. It works well in my case with over 100 hours of audio. https://github.com/nguyenhoanganh2002/XTTSv2-Finetuning-for-New-Languages
closed
2024-09-08T08:18:10Z
2025-01-25T12:14:49Z
https://github.com/coqui-ai/TTS/issues/3992
[ "wontfix", "feature request" ]
anhnh2002
25
jupyter/docker-stacks
jupyter
1,309
Please, provide me with DockerHub access
@parente I created an issue, to kindly ask you for additional permissions on DockerHub Read the Docs. These permissions will sometimes make maintenance of this project much easier. My username is `mathbunnyru` in both places.
closed
2021-05-19T10:01:51Z
2022-11-09T17:36:11Z
https://github.com/jupyter/docker-stacks/issues/1309
[]
mathbunnyru
18
SYSTRAN/faster-whisper
deep-learning
553
Implementation with Large-v3 but with Batching
I saw a large-v3 implementation with faster_whisper (https://github.com/guillaumekln/faster-whisper/issues/547) but it's quite slow. Large-v3 is very fast with batching as shown here --- https://huggingface.co/openai/whisper-large-v3 Batching speeds up the transcription process by a lot. The only reason I wish t...
closed
2023-11-08T15:25:53Z
2023-11-13T06:28:59Z
https://github.com/SYSTRAN/faster-whisper/issues/553
[]
souvikqb
9
gradio-app/gradio
data-visualization
10,289
Certain linting tools enforce a style of import. (Warning: Cannot statically find a gradio demo called demo. Reload work may fail.)
### Describe the bug Certain linting tools enforce a style of import. Like: ```python from gradio.blocks import Blocks ``` Following the previous patterns: ```python patterns = [ f"with gr\\.Blocks\\(.*\\) as {demo_name}", f"{demo_name} = gr\\.Blocks", f"{demo_name} = gr\\.Interface", ...
closed
2025-01-05T21:03:57Z
2025-01-06T21:04:44Z
https://github.com/gradio-app/gradio/issues/10289
[ "bug" ]
YanSte
0
huggingface/diffusers
pytorch
10,520
Sana 4K: RuntimeError: Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu!
### Describe the bug Inference not working with quantization ### Reproduction Use the sample code from here https://github.com/NVlabs/Sana/blob/main/asset/docs/8bit_sana.md#quantization Replace model with Efficient-Large-Model/Sana_1600M_4Kpx_BF16_diffusers and dtype torch.bfloat16 ### Logs ```shell (venv) C:...
closed
2025-01-10T09:03:32Z
2025-01-16T18:09:43Z
https://github.com/huggingface/diffusers/issues/10520
[ "bug" ]
nitinmukesh
3
Lightning-AI/LitServe
api
310
Pyright issues [Name mismatches]
## 🐛 Bug Report ### Description When creating a new notebook via Lightning and copying the example code from the README, Pyright shows issues with the abstract methods of the `LitAPI` base class. The error occurs due to a parameter name mismatch in method overrides: ``` Method "setup" overrides class "Lit...
closed
2024-10-01T07:53:03Z
2024-10-01T18:28:40Z
https://github.com/Lightning-AI/LitServe/issues/310
[ "bug", "help wanted" ]
grumpyp
2
adbar/trafilatura
web-scraping
568
Content failed to be extracted
The contact section of https://www.mozilla.org/en-US/privacy/ gets missed out ![image](https://github.com/adbar/trafilatura/assets/119865678/f173f71b-18e8-4ce6-9321-98a33aae4f37) This is my code ` extract( web_content, include_formatting=True, include_tables=True, ...
closed
2024-04-20T13:12:47Z
2024-04-22T16:18:30Z
https://github.com/adbar/trafilatura/issues/568
[]
alroythalus
1
RayVentura/ShortGPT
automation
41
Multiple versions of a package installing repeatedly during requirements.txt run
Hi, Was looking to test this, set up Python 3.10 venv and started installing dependencies. I am getting the following during the install: ![image](https://github.com/RayVentura/ShortGPT/assets/65049377/797df33a-7637-44fe-9a88-b0363b3414be) It's been at it for about 30 minutes now. Any reason this might ...
closed
2023-07-24T14:58:58Z
2023-07-24T16:01:59Z
https://github.com/RayVentura/ShortGPT/issues/41
[]
Vermath
0
deezer/spleeter
tensorflow
378
Package 'spleeter-gpu' requires a different Python
ERROR: Package 'spleeter-gpu' requires a different Python: 3.8.2 not in '>=3.6, <3.8'
closed
2020-05-19T00:02:05Z
2020-05-19T08:43:53Z
https://github.com/deezer/spleeter/issues/378
[ "bug", "invalid" ]
Matheart
0
pydantic/FastUI
fastapi
150
Support srcdoc attribute in iframe component.
Do you think it would be reasonable to add [```srcdoc```](https://www.w3schools.com/tags/att_iframe_srcdoc.asp) attribute support to the iframe component? This would enable embedding arbitrary html. The [```sandbox```](https://www.w3schools.com/tags/att_iframe_sandbox.asp) attribute might go along with this in order t...
open
2024-01-14T10:03:01Z
2024-02-09T06:56:27Z
https://github.com/pydantic/FastUI/issues/150
[ "help wanted" ]
AaronNHart
1
dgtlmoon/changedetection.io
web-scraping
2,022
[feature] Dynamic URL's
I have a website where I want to monitor bookings. The api looks like: https://my.api.com/v1/f/availability?date=2023-12-01 I'd like to monitor the next 120 days, starting from today. I could make use of a jinja template and create 120 different watches. Is it possible to specify this in a template (or eve...
closed
2023-12-01T17:48:29Z
2023-12-01T17:50:43Z
https://github.com/dgtlmoon/changedetection.io/issues/2022
[ "enhancement" ]
PaulWoitaschek
0
PrefectHQ/prefect
data-science
16,792
Can't set config on aws credentials block
### Bug summary Hello 👋 It seems like there is a bug on the interface and API of the config option in aws credentials, it can't 'be set using either the interface or the : ![Image](https://github.com/user-attachments/assets/848f1965-e6d2-4f41-bdc9-afd1bc5ff03d) It only says `object`, but I can't write anywhere. ...
open
2025-01-21T09:23:06Z
2025-01-21T09:23:06Z
https://github.com/PrefectHQ/prefect/issues/16792
[ "bug" ]
obendidi
0
2noise/ChatTTS
python
779
ChatTTS 0.2.0 does not compatible with the model in modelscope
The `_load()` will check the model files. There is a hash map in the 0.2.0 source code: https://github.com/2noise/ChatTTS/blob/main/ChatTTS/res/sha256_map.json ```json { "sha256_asset_Decoder_pt": "9964e36e840f0e3a748c5f716fe6de6490d2135a5f5155f4a642d51860e2ec38", "sha256_asset_DVAE_full_pt": "553eb75763511e...
closed
2024-10-10T18:50:24Z
2024-10-16T13:09:18Z
https://github.com/2noise/ChatTTS/issues/779
[ "documentation" ]
codingl2k1
5
open-mmlab/mmdetection
pytorch
11,948
scores are nan after finetuning GroundingDINO
**Notice** There are several common situations in the reimplementation issues as below 1. Reimplement a model in the model zoo using the provided configs 2. Reimplement a model in the model zoo on other dataset (e.g., custom datasets) 3. Reimplement a custom model but all the components are implemented in MMDet...
open
2024-09-07T08:45:39Z
2024-11-23T00:25:01Z
https://github.com/open-mmlab/mmdetection/issues/11948
[ "reimplementation" ]
simranbajaj06
2
ipyflow/ipyflow
jupyter
104
test coverage for comm handlers
open
2022-06-19T16:53:01Z
2022-06-19T16:53:01Z
https://github.com/ipyflow/ipyflow/issues/104
[]
smacke
0
TencentARC/GFPGAN
deep-learning
251
10x speed up inferences with MobileStyleGAN
Do you foresee any issue with leveraging MobileStyleGAN as a drop-in to StyleGan2 ? It's almost 10x faster [MobileStyleGAN Github](https://github.com/bes-dev/MobileStyleGAN.pytorch) [Side by side comparison video](https://www.youtube.com/watch?v=_yrOA4YIuj4)
open
2022-09-04T20:13:05Z
2025-03-07T07:16:49Z
https://github.com/TencentARC/GFPGAN/issues/251
[]
vlordier
4
voxel51/fiftyone
data-science
4,800
[BUG] Compute Similiarity not working on Windows 11
### Describe the problem I'm trying to remove duplicate images on my dataset but I encountered this issue ### Code to reproduce issue ``` fob.compute_similarity( dataset, model="clip-vit-base32-torch", # store model's name for future use embeddings=clip_embeddings, #...
open
2024-09-15T10:47:52Z
2024-09-15T10:47:52Z
https://github.com/voxel51/fiftyone/issues/4800
[ "bug" ]
DarknessVN-1
0
horovod/horovod
pytorch
3,501
Is there a problem with ProcessSetTable Finalize when elastic?
Background: Suppose there are currently 4 ranks on 4 machines Due to the failure of machine 1, rank1 exits directly, and the final shutdown: logic is not executed Then the remaining machines will perform the shutdown operation in the case of elasticity, and will call process_set_table.Finalize function. this functi...
closed
2022-04-02T08:23:35Z
2022-05-12T03:16:01Z
https://github.com/horovod/horovod/issues/3501
[ "bug" ]
Richie-yan
1
tqdm/tqdm
pandas
1,204
Bar update after finish showing number of iterations
When I use the update method of the progress bar, after finishing the iteration. The number of iterations is shown instead of the updated metric. As a fix I reduced the number I update with by one on each iteraterion, but the result stays the same. Normally I the progress bar progresses with each iteration by 1. In ...
closed
2021-06-24T20:25:25Z
2021-07-15T19:58:08Z
https://github.com/tqdm/tqdm/issues/1204
[]
sehHeiden
0
zappa/Zappa
django
656
[Migrated] Incorrect IAM permissions for DynamoDB
Originally from: https://github.com/Miserlou/Zappa/issues/1662 by [tk421](https://github.com/tk421) <!--- Provide a general summary of the issue in the Title above --> ## Dynamo DB Incorrect permissions When deploying a zappa application based in this [post](https://serverlessblog.com/example), with the following ...
closed
2021-02-20T12:32:31Z
2024-04-13T17:36:35Z
https://github.com/zappa/Zappa/issues/656
[ "no-activity", "auto-closed" ]
jneves
2
ultralytics/yolov5
machine-learning
13,065
Model size is doubled when exporting model to onnx/torchscript
### Bug My yolov5 model size was 92 mb. After exporting to onnx the onnx model file is of size 184mb. Why is that?
closed
2024-06-03T13:10:11Z
2024-10-20T19:47:12Z
https://github.com/ultralytics/yolov5/issues/13065
[ "bug", "Stale" ]
nkhlS141
3
miLibris/flask-rest-jsonapi
sqlalchemy
56
include multiple related resources
this issues is probably similar to [#29](https://github.com/miLibris/flask-rest-jsonapi/issues/29) only the suggested answer doesn't solve it. in a request like this: api/author/123/?include=articles.comments,articles.ratings only ratings are included(or only comments, depending on what comes last) never both.
closed
2017-07-13T14:03:48Z
2017-10-11T09:25:40Z
https://github.com/miLibris/flask-rest-jsonapi/issues/56
[]
tzimme
4
modoboa/modoboa
django
2,148
False positive DNSBL reports because of spamcop.net
# Impacted versions All. # Steps to reproduce Just have any domain in modoboa. # Current behavior Getting a lot of service emails: ``` Modoboa detected that domain example.com is listed by the following DNSBL providers: bl.spamcop.net: example2.com (1.1.1.1) for example.com The domain's ...
closed
2021-01-31T16:37:26Z
2021-02-01T14:39:41Z
https://github.com/modoboa/modoboa/issues/2148
[]
phpony
3
huggingface/datasets
tensorflow
6,539
'Repo card metadata block was not found' when loading a pragmeval dataset
### Describe the bug I can't load dataset subsets of 'pragmeval'. The funny thing is I ran the dataset author's [colab notebook](https://colab.research.google.com/drive/1sg--LF4z7XR1wxAOfp0-3d4J6kQ9nj_A?usp=sharing) and it works just fine. I tried to install exactly the same packages that are installed on colab usi...
open
2023-12-28T14:18:25Z
2023-12-28T14:18:37Z
https://github.com/huggingface/datasets/issues/6539
[]
lambdaofgod
0
cupy/cupy
numpy
8,255
`test_sos_freqz_against_mp` test trying to import nonexisting local `mpsig` module
The following test fail for me in my build, and I'm confused as to how it was ever intended to work; https://github.com/cupy/cupy/blob/028889eef3ba110829d677726348aa0f75aadb4e/tests/cupyx_tests/scipy_tests/signal_tests/test_filter_design.py#L642-L648 There is no mpsig submodule, there is no definition of zpkfreqz o...
closed
2024-03-24T22:22:22Z
2024-03-27T10:15:42Z
https://github.com/cupy/cupy/issues/8255
[ "cat:test", "prio:medium" ]
Micket
2
holoviz/panel
matplotlib
6,926
VideoStream from CCTV
When I use the `VideoStream` class to get the network camera information, it can only get the video stream information of the local camera. If I want to use a remote network camera, such as a video stream transmitted through the rtmp or rtsp protocol, how should I display it in the panel? Using opencv can achieve th...
open
2024-06-16T16:43:55Z
2024-06-17T01:24:30Z
https://github.com/holoviz/panel/issues/6926
[]
lankoestee
2
dsdanielpark/Bard-API
nlp
54
cannot import
When trying to import the package, I got the following error ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with LibreSSL 2.8.3. See: https://github.com/urllib3/urllib3/issues/2168 please advice which urllib3 to use
closed
2023-06-05T16:35:38Z
2023-06-07T12:14:48Z
https://github.com/dsdanielpark/Bard-API/issues/54
[]
todo
2
scikit-optimize/scikit-optimize
scikit-learn
949
gp_minimize recomputing points provided in x0 and y0
When I try to resume an optimization by feeding in points for x0 and y0, it is re-evaluating all of the values. I've created a simple example below. In my real world case this is a huge problem because my objective function takes 10 minutes to evaluate. ############################### import numpy as np np.r...
open
2020-09-11T19:32:56Z
2021-02-13T20:38:12Z
https://github.com/scikit-optimize/scikit-optimize/issues/949
[]
brightsmall
5
jmcnamara/XlsxWriter
pandas
996
lock some cell which i want to
### Question I use 'add_format({"locked": True})' and 'add_format({"locked": False})' to set lock format for cell. After use worksheet.protect(), I can update 'locked=False' cells , also 'locked =True' cells will be locked! Then my question is why the blank cells are protected or how to un-lock all the blank cells ...
closed
2023-06-26T06:49:35Z
2023-06-26T09:28:04Z
https://github.com/jmcnamara/XlsxWriter/issues/996
[ "question" ]
wy329
1
MilesCranmer/PySR
scikit-learn
169
[Feature] My wild idea
I have been thinking about this my idea, might sound stupid: I have a circuit (called randles circuit), whose impedance is defined by the function: ``` def randles(p, f): s = 1j * 2*np.pi*f Rs = p[0] Cdl = p[1] Rct = p[2] Wct=p[3] Zct = Rct + Wct Ydl = s*Cdl + 1/Zct Z=Rs + 1...
open
2022-07-29T10:46:02Z
2023-04-20T06:05:49Z
https://github.com/MilesCranmer/PySR/issues/169
[ "enhancement" ]
richinex
0
piskvorky/gensim
data-science
2,669
word2vec doc-comment example of KeyedVectors usage broken
The usage example in the word2vec.py doc-comment regarding `KeyedVectors` uses inconsistent paths and thus doesn't work. https://github.com/RaRe-Technologies/gensim/blob/e859c11f6f57bf3c883a718a9ab7067ac0c2d4cf/gensim/models/word2vec.py#L73 https://github.com/RaRe-Technologies/gensim/blob/e859c11f6f57bf3c883a718...
open
2019-11-05T17:17:55Z
2020-04-17T12:28:33Z
https://github.com/piskvorky/gensim/issues/2669
[ "documentation", "difficulty easy", "good first issue" ]
gojomo
6
open-mmlab/mmdetection
pytorch
11,235
faster rcnn BCE loss during the RPN the dimension of pred is 1,not 2.Help help!
I want to modify the BCE loss of faster rcnn,Previously, when entering the BCE loss during the RPN phase, the dimension of pred was 2, with a prospect score and a background score.But now I don't know why, there is only one dimension left in Pred. Request to resolve, thank you very much. <img width="855" alt="7e73c2e3...
open
2023-12-01T03:15:55Z
2023-12-01T03:16:19Z
https://github.com/open-mmlab/mmdetection/issues/11235
[]
lllsgq
0
darrenburns/posting
rest-api
30
Soften up python dependancies...?
Good afternoon! I'm looking into packaging Posting for Fedora, but I'm hitting a wall regarding the package requiring very specific package versions. For example: click-default-group ( == 1.2.4) pydantic (==2.7.3) textual (==0.72) textual[syntax] (==0.72) xdg-base-dirs (==6.0.1) Would it be possible to rel...
closed
2024-07-11T20:04:06Z
2024-07-12T07:59:59Z
https://github.com/darrenburns/posting/issues/30
[]
farchord
1
zappa/Zappa
flask
936
[Migrated] Document acceptance of either .yml or .yaml
Originally from: https://github.com/Miserlou/Zappa/issues/2204 by [vshih](https://github.com/vshih) <!-- Before you submit this PR, please make sure that you meet these criteria: * Did you read the [contributing guide](https://github.com/Miserlou/Zappa/#contributing)? * If this is a non-trivial commit, did yo...
closed
2021-02-20T13:24:45Z
2022-07-16T05:00:19Z
https://github.com/zappa/Zappa/issues/936
[]
jneves
1
dask/dask
pandas
11,126
add a api load dataset from [huggingface datasets]
- https://docs.dask.org/en/latest/bag-api.html
closed
2024-05-17T11:42:33Z
2024-05-21T01:42:13Z
https://github.com/dask/dask/issues/11126
[ "needs info" ]
simplew2011
4
sqlalchemy/alembic
sqlalchemy
586
Alembic upgrade/downgrade one engine
Hello. I need to perform alembic upgrade/downgrade only on one specific db_engine. I have alembic which was INITed from multidb template. At the moment I have 4 db_engines listed in alembic.ini I want be able to upgrade/downgrade only specific db_engine For example: `alembic upgrade *db_engine1* head ` That...
closed
2019-07-10T16:16:49Z
2019-07-17T22:35:50Z
https://github.com/sqlalchemy/alembic/issues/586
[ "question" ]
anthony0bondar
2
pydantic/pydantic-ai
pydantic
944
Feature Request: provide an easy way to include your (versioned) API docs in LLM contexts
Claude Sonnet and some of the other LLMs don't seem to pull the pedantic-ai API into their weights yet. They will always lag recent API/SDK releases so providing a way to manually include them into an LLM context might be helpful, either programmatically or using interactive tools like NotebookLM. Perhaps the build c...
open
2025-02-19T12:16:23Z
2025-03-01T18:31:52Z
https://github.com/pydantic/pydantic-ai/issues/944
[ "documentation" ]
jb747
5
sinaptik-ai/pandas-ai
data-science
691
Empty Graph or Chart
### 🚀 The feature Sometimes while generating a graph or chart the values of the filtered dataframe is empty rendering an empty chart. Before returning the datapoints in xaxis and yaxis , we can check if dataframe is empty or not. if its empty, a text message like 'no such value in data present' can be rendered. ![...
closed
2023-10-26T14:13:32Z
2024-06-01T00:20:41Z
https://github.com/sinaptik-ai/pandas-ai/issues/691
[]
shwetabhattad-TU
4
sktime/sktime
scikit-learn
7,373
[ENH] Support Individual Sequence Training in GaussianHMM
**Is your feature request related to a problem? Please describe.** GaussianHMM in sktime currently doesn't support training on multiple sequences individually (panel inputs). While this functionality exists in hmmlearn, users of sktime cannot train their HMM models one sequence at a time. **Describe the solution yo...
open
2024-11-08T14:56:25Z
2024-11-08T18:35:01Z
https://github.com/sktime/sktime/issues/7373
[ "feature request", "interfacing algorithms", "module:detection", "enhancement" ]
Tony911029
1
globaleaks/globaleaks-whistleblowing-software
sqlalchemy
4,348
In checkbox questionaires, rearangement of selections can not be saved.
### What version of GlobaLeaks are you using? 5.0.32 ### What browser(s) are you seeing the problem on? Chrome ### What operating system(s) are you seeing the problem on? Windows ### Describe the issue When trying to rearrange the order of selections in a checkbox question, save does not save the new order. ###...
closed
2024-12-06T06:58:42Z
2024-12-06T16:10:40Z
https://github.com/globaleaks/globaleaks-whistleblowing-software/issues/4348
[ "T: Bug", "C: Client" ]
elbill
1
collerek/ormar
pydantic
548
Json filter support and get multi objects.
For example: ``` # books: Dict[str, str] = ormar.Json() filter(json_extract(Publisher.books, "$.name") = "Hello") -------------------------- pbs, books = await MultiObjects(Publisher, Book).filter(Publisher.id == Book.publisher_id) or pbs, books = await MultiObjects(Publisher, Book).all() ```
open
2022-01-27T03:29:23Z
2022-01-27T03:29:23Z
https://github.com/collerek/ormar/issues/548
[ "enhancement" ]
ponytailer
0
freqtrade/freqtrade
python
10,600
freqtrade UI "Visualize result" shows "Dataprovider was not initialized with a pairlist provider."
when I run backtesting for a strategy, which one calls the func "self.dp.current_whitelist" in populate_indicators. The freqtrade UI cant shows the "Visualize result" correctly. The toast is "Bot: freqtrade Dataprovider was not initialized with a pairlist provider." But it is work when the "self.dp.current_whi...
closed
2024-08-31T14:40:59Z
2025-03-23T11:58:57Z
https://github.com/freqtrade/freqtrade/issues/10600
[ "Question" ]
SeverusHuang-HLF
6