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
biolab/orange3
data-visualization
6,042
Are model calibration methods active in the calibration plot widget?
<!--I'm investigating the effect of class imbalance on model calibration. It does look like weighting logistic regression does worsen the calibration plot and increase LogLoss. With the new calibration plot (Orange 3,32.0) there is the option to add calibration methods such as sigmoid (Platts) and isotonic regression. ...
closed
2022-06-20T15:14:30Z
2022-07-09T08:49:47Z
https://github.com/biolab/orange3/issues/6042
[]
rehoyt
0
thtrieu/darkflow
tensorflow
848
Training steps
I have used Darknet and tensorflow API for object detection. I came here via different post I am bit confused Some questions if someone can help. I have cloned the repository and install it 1. Is the dataset preparation is similar to darknet?? (XML file needed or Text File) 2. What is tiny-yolo-new.cfg?? Is it...
open
2018-07-20T09:00:04Z
2018-07-20T09:00:04Z
https://github.com/thtrieu/darkflow/issues/848
[]
deepkshikha
0
docarray/docarray
pydantic
1,230
Use multipart upload in S3 push pull backend
Currently, pushing a Document stream to S3 works fine. ```python N: int = 2 ** 20 DocumentArray[TextDoc].push_stream((TextDoc(text=f'text {i}') for i in range(N)), url=f's3://da-pushpull/da-{N}', show_progress=True) ``` However, the upload does not use multipart upload. This is because ``smart_open``, which we...
open
2023-03-14T08:37:04Z
2023-03-14T08:37:04Z
https://github.com/docarray/docarray/issues/1230
[]
Jackmin801
0
kennethreitz/responder
flask
210
Is it possible to use async/await with GraphQL?
I wanted to use something like [this](https://github.com/graphql-python/graphql-core/issues/63) (from graphene-python), but it doesn't seem possible here Basically I want to async my resolver in GraphQL Are the current features in `responder.ext.GraphQLView` basic?
closed
2018-11-07T11:31:49Z
2018-11-14T14:37:30Z
https://github.com/kennethreitz/responder/issues/210
[]
beneshed
4
plotly/dash
plotly
2,374
[BUG]
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. **Describe your context** Please provide us your environment, so we can easily reproduce the issue. - replace the result of `pip l...
closed
2022-12-31T14:35:30Z
2023-01-04T14:56:54Z
https://github.com/plotly/dash/issues/2374
[]
papa197
1
explosion/spaCy
machine-learning
12,923
Chinese word segmentation model for spaCy
The Chinese word segmentation model zh_core_web_sm-3.5.0 in spaCy has two files. One is weights.npz, which contains dimensions and model weight values, and I can understand that. The other file is features.msgpack; what is this file for? Is it for features? Because I want to train my own word segmentation model and e...
closed
2023-08-18T08:15:28Z
2023-09-18T05:14:08Z
https://github.com/explosion/spaCy/issues/12923
[ "models", "lang / zh", "third-party" ]
PythonCancer
1
Josh-XT/AGiXT
automation
418
Error loading agent configuration: 'discord_commands' object has no attribute 'PREFIX'
### Description After creating my first agent, and going to chat, I then go back to the settings, I received an error [Discord is not set up!] ### Steps to Reproduce the Bug 1. create agent 2. go to chat 3. go to settings 4. see error ### Expected Behavior get the settings of the agent ### Actual Behavior ...
closed
2023-05-21T07:38:05Z
2023-05-21T12:05:55Z
https://github.com/Josh-XT/AGiXT/issues/418
[ "type | report | bug", "needs triage" ]
WillTryToDoItRight
1
xlwings/xlwings
automation
2,335
xlwings vba UnicodeDecodeError stops import or edit from running.
#### OS (e.g. Windows 10 or macOS Sierra) Windows 10 #### Versions of xlwings, Excel and Python (e.g. 0.11.8, Office 365, Python 3.7) xlwings version: 0.30.12 Microsoft® Excel® for Microsoft 365 MSO (Version 2306 Build 16.0.16529.20226) 64-bit Python 3.11.5 #### Describe your issue (incl. Traceback!) when encou...
closed
2023-09-20T19:59:46Z
2023-12-11T21:13:29Z
https://github.com/xlwings/xlwings/issues/2335
[]
nmadura
13
huggingface/pytorch-image-models
pytorch
2,103
[BUG] Inference API error in 'timm.models.maxxvit.MaxxVitConvCfg'
**Describe the bug** When running models on HuggingFace created by "HuggingFace Team", they no longer work. It has an issue with importing. These are models that are out of my control. I included one that wasn't "HuggingFace Team". There are multiple models that have this issue, all DETR. So far, it has been encoun...
closed
2024-02-27T20:51:40Z
2024-02-28T17:02:55Z
https://github.com/huggingface/pytorch-image-models/issues/2103
[ "bug" ]
gateslm
3
rthalley/dnspython
asyncio
1,108
More linting with ruff?
### Discussed in https://github.com/rthalley/dnspython/discussions/1106 <div type='discussions-op-text'> <sup>Originally posted by **jschlyter** July 23, 2024</sup> I tried running `ruff` with some options that has been quite useful in other projects: ``` [tool.ruff] lint.select = [ # pycodestyle ...
closed
2024-07-23T12:44:32Z
2024-07-24T02:09:54Z
https://github.com/rthalley/dnspython/issues/1108
[ "Enhancement Request" ]
rthalley
1
pydata/pandas-datareader
pandas
949
Error: No data found for this date range, symbol may be delisted
I am following the example shown in README, but I am getting no data found error. I am running python 3.11 in Windows and have installed pandas datareader and finance. The MWE is given below: ```python import yfinance as yf import pandas_datareader import sys data = yf.download("SPY AAPL", start="2017-01...
open
2022-11-17T17:08:01Z
2023-02-26T16:54:40Z
https://github.com/pydata/pandas-datareader/issues/949
[]
bhishanpdl
3
scikit-tda/kepler-mapper
data-visualization
127
Color_function implementation
Hi, Looking through one of the advanced tutorials [https://kepler-mapper.scikit-tda.org/TOR-XGB-TDA.html], I found color function was given two choices 0 or 1. But, the map produced has so many colors. Could you please explain this behavior? Specifically, `df["label"] = df["label"].map({"nonTOR": 0, "TOR": 1})` `...
closed
2019-01-29T12:38:10Z
2019-01-30T21:33:55Z
https://github.com/scikit-tda/kepler-mapper/issues/127
[]
raunaak
3
tfranzel/drf-spectacular
rest-api
1,035
[Question] Allow any JSON / Generic freeform object
I'm setting up an API for receiving webhook. The body would vary greatly between requests. I'd like to define `extend_schema` to accept any data for the moment. I tried using `JSONField` but it naturally throws an error. IHowever, I did kinda succeed as it now allows any data but with the warning `Expected either a...
closed
2023-07-25T12:36:22Z
2023-07-26T18:37:55Z
https://github.com/tfranzel/drf-spectacular/issues/1035
[]
VaZark
2
litestar-org/litestar
pydantic
3,018
Enhancement: Adding extra validation on path/query/header/cookie arguments
### Summary At the moment, it's not possible to "directly" inject extra validations for path, query, header and cookie parameters. Only what `Parameter()` supports is allowed. Extra validation needs to be done within the handler function, or via DI quite manually. Pydantic allows to attach extra validations to fiel...
closed
2024-01-24T08:30:41Z
2025-03-20T15:54:21Z
https://github.com/litestar-org/litestar/issues/3018
[ "Enhancement" ]
tuukkamustonen
10
proplot-dev/proplot
data-visualization
395
Inconsistent width of axes
<!-- Thanks for helping us make proplot a better package! If this is a bug report, please use the template provided below. If this is a feature request, you can delete the template text (just try to be descriptive with your request). --> ### Description The width of axes are inconsistent. ### Steps to reproduc...
open
2022-10-03T02:53:30Z
2023-03-31T07:48:10Z
https://github.com/proplot-dev/proplot/issues/395
[ "enhancement", "support" ]
Yefee
3
apachecn/ailearning
python
143
In def file2matrix()
When I run "datingDataMat, datingLabels = KNN.file2matrix('datingTestSet2.txt')" It shows ValueError: could not convert string to float: It makes me confused ,thanks for your answer.
closed
2017-09-08T11:05:15Z
2017-09-15T09:12:35Z
https://github.com/apachecn/ailearning/issues/143
[ "help wanted" ]
ljjks
2
scrapy/scrapy
web-scraping
6,041
Found a possible security concern
Hello 👋 I run a security community that finds and fixes vulnerabilities in OSS. A researcher (@andy53) has found a potential issue, which I would be eager to share with you. Could you add a `SECURITY.md` file with an e-mail address for me to send further details to? GitHub [recommends](https://docs.github.com/en/cod...
closed
2023-09-08T00:24:04Z
2023-09-08T08:20:20Z
https://github.com/scrapy/scrapy/issues/6041
[]
psmoros
1
onnx/onnx
deep-learning
5,988
Version converter: No Adapter From Version 16 for Identity
# Ask a Question ### Question I meet the following issue while trying to convert the onnx model of Opset16 to Opset15 : "**adapter_lookup: Assertion `false` failed: No Adapter From Version $16 for Identity**" If I have to use an Opset15 and currently only have Opset16 version of the relevant onnx resources avai...
open
2024-03-02T13:51:14Z
2024-03-06T19:14:23Z
https://github.com/onnx/onnx/issues/5988
[ "question" ]
lsp2
4
keras-team/keras
python
20,219
mul got incompatible shapes for broadcasting
I'm trying to run this code in jax backend, and I've got a static inference shape result successfully. However, when I try to execute dynamically, I get this error message, which really confused me a lot. Here is the code and what I got as results. version: python 3.10 keras 3.5.0 jax 0.4.31 ```python impo...
closed
2024-09-06T08:52:04Z
2024-10-17T02:02:20Z
https://github.com/keras-team/keras/issues/20219
[ "stat:awaiting response from contributor", "stale", "type:Bug" ]
Isa-Fay
7
coqui-ai/TTS
pytorch
2,639
[Warning] stft with return_complex=False is deprecated.
### Describe the bug If I start to train my model I always get this warning message. Is it just me or is this a thing? > TRAINING (2023-05-29 00:46:49) C:\TTS-Training\lib\site-packages\torch\functional.py:641: UserWarning: stft with return_complex=False is deprecated. In a future pytorch release, stft will retur...
closed
2023-05-28T23:14:38Z
2023-09-14T06:19:46Z
https://github.com/coqui-ai/TTS/issues/2639
[ "bug", "wontfix" ]
Alienpups
6
onnx/onnx
pytorch
6,100
ERROR: Could not build wheels for onnx which use PEP 517 and cannot be installed directly
# Bug Report ### Is the issue related to model conversion? When I install onnx using pip, and run `pip install onnx`, I failed! ### Describe the bug when I use pip install Onnx ,and run `pip install onnx==1.14.1`, I failed! it print: ``` Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple Collecti...
closed
2024-04-25T09:49:28Z
2024-04-28T18:11:55Z
https://github.com/onnx/onnx/issues/6100
[ "question", "topic: build" ]
qd986692950
2
howie6879/owllook
asyncio
39
新增全本排行榜
目前开发完成的排行榜包含起点排行和纵横排行 ,可能很多的人比较热衷于看全本 ,建议开发一个全本排行
closed
2018-08-21T12:24:27Z
2018-12-23T05:16:46Z
https://github.com/howie6879/owllook/issues/39
[]
pl1612127
1
wkentaro/labelme
deep-learning
1,354
Labelme.exe cannot save configuration parameters
### Provide environment information Run Labelme.exe in Windows environment. exe downloaded from here. https://github.com/wkentaro/labelme/releases/[Labelme.exe](https://github.com/wkentaro/labelme/releases/download/v5.3.1/Labelme.exe) ### What OS are you using? Windows 10/11 ### Describe the Bug Menu parameter o...
open
2023-11-18T09:19:49Z
2023-11-18T09:19:49Z
https://github.com/wkentaro/labelme/issues/1354
[ "issue::bug" ]
libaineu2004
0
vitalik/django-ninja
django
1,009
How to logging requests and responses?
I want to see information about input and output data in the logs. Is this normal practice? ``` import logging from ninja import NinjaAPI, Request logger = logging.getLogger('ninja') def log_request(request: Request, call_next): logger.debug(f"Request: {request.method} {request.url}") response =...
closed
2023-12-14T18:52:13Z
2023-12-15T09:01:11Z
https://github.com/vitalik/django-ninja/issues/1009
[]
sh1man999
2
neuml/txtai
nlp
219
TypeError when trying to index content data from list of tuples
Hi! I am trying to build an embeddings index with a list of tuples from pandas.DataFrame.itertuples() and I am getting this error. It works when I only provide a flat list of strings but trying to add additional information throws this error. I am trying to follow along in the guide like so: ``` # Create an index...
closed
2022-02-09T04:32:56Z
2022-02-11T11:53:51Z
https://github.com/neuml/txtai/issues/219
[]
nickkimer
4
albumentations-team/albumentations
machine-learning
1,785
opencv-python-headless continues to be installed despite meeting MIN_OPENCV_VERSION with opencv-python
Running in docker, I already have opencv-python 4.9.0.80 (pip installed). I then run `pip install albumentations --no-binary albumentations` so that I can have albumentations WITHOUT opencv-python-headless. Upon pip installation, albumentations (1.4.8) will still (wrongly) install opencv-python-headless (4.10.0.82...
closed
2024-06-11T18:17:06Z
2024-10-31T02:15:51Z
https://github.com/albumentations-team/albumentations/issues/1785
[ "bug" ]
elvintoh82
7
axnsan12/drf-yasg
django
467
read_only fields are ignored in example value but NOT in MODEL
As shown below, my read_only field `created_at` is ignored in `Example Value` option, but not in `Model` option. ![image](https://user-images.githubusercontent.com/24687378/66014110-8f687f00-e508-11e9-9a5a-4c530f80b0e8.png) ![image](https://user-images.githubusercontent.com/24687378/66014103-87a8da80-e508-11e9-97bc...
closed
2019-10-02T02:47:26Z
2019-10-02T05:15:41Z
https://github.com/axnsan12/drf-yasg/issues/467
[]
zzinny
2
milesmcc/shynet
django
341
502 bad gateway
No matter what I do, it gives error 502 For example with default docker-compose.yml file, trying to connect to `http://<ip>:8080` gives 502 I commented out these, because I'm connecting with IP, but with them and local domain I get 502 anyway. ``` #ALLOWED_HOSTS=shynet.lan #CSRF_TRUSTED_ORIGINS=http://shynet.la...
open
2025-01-25T19:20:05Z
2025-01-26T17:30:31Z
https://github.com/milesmcc/shynet/issues/341
[]
Goosegit11
0
reloadware/reloadium
pandas
98
Reloadium doesn't work on M1 mac with Python 3.9
## Describe the bug* On some M1 macs, reloadium is working fine with Pyton 3.9. On few other macs, it is failing to run. ## To Reproduce Not able to reproduce the bug on all M1 macs. ## Expected behavior Reloadium should run the application. ## Screenshots <img width="1280" alt="Screenshot 2023-02...
closed
2023-02-06T03:16:06Z
2023-02-06T06:36:05Z
https://github.com/reloadware/reloadium/issues/98
[]
ChillarAnand
7
serengil/deepface
deep-learning
1,452
[Classification] regarding the DeepFace library
### Suggested Changes Hi there, I'm using `DeepFace.represent` function, in that I used `detector_backend` as `yolov8` can I use that for commerical purpose?
closed
2025-03-12T08:45:41Z
2025-03-12T09:36:34Z
https://github.com/serengil/deepface/issues/1452
[ "documentation", "question" ]
Mohankrish08
1
quasarstream/python-ffmpeg-video-streaming
dash
60
Question: are multiple audio streams and subtitles supportred?
Hello, most of my video files have multiple subtitles and audio streams. Is it possible to properly get them passed to a player using your lib. ? I was not able to find much onto this at the docs. Kind regards and thanks in advance
closed
2021-06-25T20:56:42Z
2021-12-03T11:37:23Z
https://github.com/quasarstream/python-ffmpeg-video-streaming/issues/60
[]
ghost
2
graphdeco-inria/gaussian-splatting
computer-vision
580
Rendering remotely
Hi. I am working on my local computer, connected to the high-end remote server. When I execute the SIBR viewer on my local using X11, rendering is extremely slow. (FPS lower than 1) Is it even possible to perform real-time rendering when rendering remotely?
closed
2023-12-27T08:27:40Z
2025-03-23T03:30:02Z
https://github.com/graphdeco-inria/gaussian-splatting/issues/580
[]
resurgo97
5
ResidentMario/geoplot
matplotlib
58
Voronoi plot lacks infinite polygons
The current voronoi plot implementation ignores Voronoi simplexes (series of edges) which are infinite, e.g. where one side is not closed. These occur on the edges of any finite dataset, and when the `hue` parameter is specified, their absence will mislead users into thinking something about the data that is not true (...
closed
2018-05-08T02:17:26Z
2018-05-09T20:39:51Z
https://github.com/ResidentMario/geoplot/issues/58
[]
ResidentMario
0
mirumee/ariadne
api
1,046
ImportError: cannot import name 'PLAYGROUND_HTML' from 'ariadne.constants'
After updating v0.18.1, tests fail because `ImportError: cannot import name 'PLAYGROUND_HTML' from 'ariadne. constants' `. When I checked the changes, PLAYGROUND_HTML was removed from constants.py in this commit: https://github.com/mirumee/ariadne/commit/0fca6bb601fa4827741d1e3f05b0138801e134f8 So, is there any alte...
closed
2023-03-03T11:42:05Z
2023-03-03T13:02:55Z
https://github.com/mirumee/ariadne/issues/1046
[ "question" ]
aesavas
3
QingdaoU/OnlineJudge
django
425
换皮部署后,注册功能消失了,有什么办法解决吗?
部署后oj界面只有登陆功能了。想了解一下注册模块是在哪个文件夹里,我们自己去解决一下这个问题试试看。 ![$TTTPH~S)AIKT9N9U}WYVHT](https://user-images.githubusercontent.com/103566602/184163032-b1cd3a9e-0560-48a7-a99d-ba431acaca3d.png)
open
2022-08-11T14:54:18Z
2022-08-11T14:54:18Z
https://github.com/QingdaoU/OnlineJudge/issues/425
[]
HuParry
0
donnemartin/data-science-ipython-notebooks
scikit-learn
16
Add SAWS: A Supercharged AWS Command Line Interface (CLI) to AWS Section.
closed
2015-10-04T10:40:50Z
2016-05-18T02:09:55Z
https://github.com/donnemartin/data-science-ipython-notebooks/issues/16
[ "feature-request" ]
donnemartin
1
oegedijk/explainerdashboard
plotly
254
Index Dropdown has a bug for large no. of values
I am not able to type and search specific value in search box in 'whatif' and 'Individual prediction' tabs to choose an index.(When typed a specific number, it just shows wrong values in drop down and clears what i typed) (Random button seems to work fine) Drop down doesn't work if there is a lot of index values(~2k...
closed
2023-02-10T01:21:16Z
2023-02-17T20:29:10Z
https://github.com/oegedijk/explainerdashboard/issues/254
[]
AkshayRShiraguppi
10
ploomber/ploomber
jupyter
301
Ensure build stops with keyboard interrupt
There are a few scenarios we have to check. When using the serial executor, PythonCallables run in a sub-process, so ensure KeyboardInterrupt works. This also applies for the parallel executor.
closed
2021-06-12T17:44:20Z
2022-04-25T20:19:01Z
https://github.com/ploomber/ploomber/issues/301
[]
edublancas
0
xlwings/xlwings
automation
2,039
add to_html() method
ideally to Book and Sheet
closed
2022-10-05T15:13:34Z
2022-10-09T13:52:12Z
https://github.com/xlwings/xlwings/issues/2039
[ "enhancement" ]
fzumstein
1
mljar/mercury
jupyter
420
Waiting for worker... (Vanilla Docker-Compose Install)
The demo notebooks are stuck "Waiting for worker ..." ![image](https://github.com/mljar/mercury/assets/35440235/d49382f9-c5a0-4840-bf4a-b3340f884fe5) This is a brand-new install, followed all the instructions. .env file: > NOTEBOOKS_PATH=../mercury-deploy-demo/ > DJANGO_SUPERUSER_USERNAME=adminusername > DJ...
open
2024-02-12T22:33:29Z
2025-02-10T11:40:06Z
https://github.com/mljar/mercury/issues/420
[ "bug" ]
mikep11
14
robotframework/robotframework
automation
5,143
New API for using named arguments programmatically
RF 7.0 attempted to provide a more convenient API for setting keyword arguments programmatically (#5000). The idea was to both support named arguments with non-string values and to avoid the need for escaping `\` and other special characters in strings. Unfortunately the selected implementation approach caused backward...
closed
2024-06-07T13:41:55Z
2024-08-30T07:56:00Z
https://github.com/robotframework/robotframework/issues/5143
[ "enhancement", "priority: high", "rc 1", "effort: medium" ]
pekkaklarck
2
man-group/arctic
pandas
247
Read in chunkstore broken
under certain situations reading back segmented chunks will fail. Unit test: ``` def test_size_chunk_multiple_update(chunkstore_lib): df_large = DataFrame(data={'data': np.random.randint(0, 100, size=5500000), 'date': [dt(2015, 1, 1)] * 5500000}) df_small = DataFrame(data={'data'...
closed
2016-09-29T16:35:37Z
2016-09-29T17:14:55Z
https://github.com/man-group/arctic/issues/247
[ "bug" ]
bmoscon
1
JaidedAI/EasyOCR
machine-learning
421
Silence pytorch CUDA messages
I want to be able to use easyocr in a pipeline using stdin/stdout, but parsing the output is non-trivial because of the warning message "CUDA not available - defaulting to CPU. Note: This module is much faster with a GPU." (I don't have CUDA available atm unfortunately). Is there a way to silence this message to get cl...
closed
2021-04-22T18:00:14Z
2021-05-06T21:59:39Z
https://github.com/JaidedAI/EasyOCR/issues/421
[]
thislooksfun
2
d2l-ai/d2l-en
computer-vision
1,911
module 'd2l.torch' has no attribute 'predict_ch8' & 'train_ch8'
Name changed? module 'd2l.torch' has no attribute 'predict_ch8'. (http://d2l.ai/chapter_recurrent-neural-networks/rnn-concise.html)
closed
2021-09-18T11:42:47Z
2021-09-18T21:01:40Z
https://github.com/d2l-ai/d2l-en/issues/1911
[]
myrainbowandsky
1
Urinx/WeixinBot
api
70
请问windows能跑吗?
我在windows下,用pip install requests,中途就失败了, `adthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning Downloading requests-2.10.0-py2.py3-none-any.whl (506kB) 8% |██▋ | 40kB 6.1kB/s eta 0:01:17Exception: Traceback (most recent call last): File "c:\python...
open
2016-07-26T10:12:10Z
2016-09-21T10:05:29Z
https://github.com/Urinx/WeixinBot/issues/70
[]
faace
3
Johnserf-Seed/TikTokDownload
api
666
[BUG]我用1.5版本的分支,在mac上按配置文件的指引操作,下载指定url时down目录下已创建了抖音用户名称的文件夹,但控制台提示没有找到符合条件的作品
**描述出现的错误** 遇到bug先在issues中搜索,没有得到解决方案再提交。 对出现bug的地方做清晰而简洁的描述。 **bug复现** 复现这次行为的步骤: 在mac上操作 1.初始化并生成dy.yaml文件 2.同步cookie 3.在dy.yaml文件中配置了mode为post,url:xxxx 4.在控制台执行 f2 dy -c ./dy.yaml 指令 5.项目生成了download文件夹,里面有抖音用户名,控制台显示的是没有找到符合条件的作品 **截图** 如果适用,添加屏幕截图以帮助解释您的问题。 **桌面(请填写以下信息):** -操作系统:[例如windows10 64bi...
closed
2024-02-26T09:26:07Z
2024-02-27T02:24:28Z
https://github.com/Johnserf-Seed/TikTokDownload/issues/666
[]
Alrict
3
JaidedAI/EasyOCR
machine-learning
1,353
Issue with russian text.
Russian text is translated as "???????????????" every time :( I'm on fedora linux 41, Intel ARC A380.
open
2024-12-23T01:20:15Z
2024-12-23T01:20:33Z
https://github.com/JaidedAI/EasyOCR/issues/1353
[]
deprale
0
AUTOMATIC1111/stable-diffusion-webui
deep-learning
16,264
[minor Feature Request]: checkmark in model list
### Is there an existing issue for this? - [X] I have searched the existing issues and checked the recent builds/commits ### What would your feature do ? checkmarked or inverted model in model-list ### Proposed workflow if have a list of models if i choose one and generate an image and want to choose another mode...
closed
2024-07-26T07:56:49Z
2024-07-28T08:45:05Z
https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/16264
[ "enhancement" ]
kalle07
7
twopirllc/pandas-ta
pandas
350
EBSW indicator
I don't know if this goes anywhere really, I tried using the Even Better Sine Wave indicator and noticed the note in the docs about the logic. So I made the function below based off the code in the two links: 1. [prorealcode](https://www.prorealcode.com/prorealtime-indicators/even-better-sinewave/) 2. [tradingview](h...
closed
2021-07-23T01:41:54Z
2025-03-20T20:10:50Z
https://github.com/twopirllc/pandas-ta/issues/350
[ "enhancement" ]
Squigglez2
8
sngyai/Sequoia
pandas
67
你原来的StockWave 还有吗,我想用这个项目学习下
你原来的StockWave 还有吗,我想用这个项目学习下
open
2024-11-23T11:46:36Z
2024-11-23T11:46:36Z
https://github.com/sngyai/Sequoia/issues/67
[]
liuts
0
dpgaspar/Flask-AppBuilder
rest-api
1,954
Getting issue sqlalchemy.exc.InvalidRequestError: Table 'ab_permission_view_role' is already defined for this MetaData instance when we are using 4.14 version
If you'd like to report a bug in Flask-Appbuilder, fill out the template below. Provide any extra information that may be useful Responsible disclosure: We want to keep Flask-AppBuilder safe for everyone. If you've discovered a security vulnerability please report to danielvazgaspar@gmail.com. ### Environment ...
open
2022-11-24T08:26:58Z
2022-11-24T08:26:58Z
https://github.com/dpgaspar/Flask-AppBuilder/issues/1954
[]
dviru
0
pandas-dev/pandas
pandas
60,351
ENH: Copy attrs on join (possibly depending on left, right, etc.)
### Feature Type - [ ] Adding new functionality to pandas - [X] Changing existing functionality in pandas - [ ] Removing existing functionality in pandas ### Problem Description df.join() does not retain the attrs of the dataset. Given that the attrs manual states that "many operations that create new datasets wi...
open
2024-11-18T04:26:12Z
2024-11-21T21:26:24Z
https://github.com/pandas-dev/pandas/issues/60351
[ "Enhancement", "Reshaping", "Needs Info", "metadata" ]
rommeswi
8
Miserlou/Zappa
flask
1,959
Django project is not packaged if package name matches venv name
This is also confirmed here: https://stackoverflow.com/a/45358472/326406 ## Context I have project structure like that: ``` myproject/ settings.py urls.py wsgi.py moduleA/ models.py views.py moduleB/ models.py views.py zappa_settings.yml manage.py ...
open
2019-11-10T22:12:16Z
2019-11-10T22:12:16Z
https://github.com/Miserlou/Zappa/issues/1959
[]
rudyryk
0
sigmavirus24/github3.py
rest-api
1,155
Release notes in the docs make no mention of 4.x
The release notes at https://github3.readthedocs.io/en/latest/release-notes/index.html only go as far as 3.2.0: <img width="944" alt="image" src="https://github.com/sigmavirus24/github3.py/assets/23789/289707e7-aac0-467a-b948-a0c4969b73d8">
closed
2023-05-22T15:01:42Z
2023-12-15T14:43:35Z
https://github.com/sigmavirus24/github3.py/issues/1155
[]
nedbat
0
ultralytics/yolov5
deep-learning
13,029
A minor query about the image channel number check using `im.shape[0] < 5`
### 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 Today, I attempted to observe the operation process of YOLOv5 step by step. While reviewi...
closed
2024-05-20T12:46:32Z
2024-05-21T16:14:44Z
https://github.com/ultralytics/yolov5/issues/13029
[ "question" ]
Le0v1n
5
strawberry-graphql/strawberry-django
graphql
171
Circular dependency issue with multiple type files
I'm trying to migrate a big project from graphene to strawberry. The type inference in graphene allowed me to get around circular dependencies. I was hoping `auto` would allow the same thing here, but everything comes out `DjangoModelType`. So I went to add the types more explicitly and now I either run into a circular...
closed
2022-08-29T16:52:29Z
2022-08-29T22:03:13Z
https://github.com/strawberry-graphql/strawberry-django/issues/171
[]
tracykm
2
mwaskom/seaborn
matplotlib
3,107
RFC: variable expressions in Plot
I would like to add functionality to assign variables using an expression that has the source data as a namespace. This will provide functionality similar to R's nonstandard evaluation. Because Python does not have this concept, the space of possible approaches is less magical than what you can get in R (although it al...
open
2022-10-22T16:25:18Z
2024-03-12T20:22:10Z
https://github.com/mwaskom/seaborn/issues/3107
[ "objects-plot", "feature" ]
mwaskom
14
jordaneremieff/djantic
pydantic
69
PositiveBigIntegerField missing [easy fix]
I believe it belongs in `djantic.fields.INT_TYPES` https://docs.djangoproject.com/en/4.1/ref/models/fields/#positivebigintegerfield
open
2023-01-12T11:59:08Z
2023-01-12T11:59:27Z
https://github.com/jordaneremieff/djantic/issues/69
[]
p-baum
0
sinaptik-ai/pandas-ai
data-visualization
1,081
pandasai.exceptions.PandasAIApiCallError: Training failed because of internal server error try again later!
### System Info Please share your system info with us. OS version: ubuntu: 22.04 Python version: python 3.9 The current version of pandasai being used: 2.0.19 ### 🐛 Describe the bug Still 2 days before it is working fine, currently it is throwing error, even update to pandasa==2.0.26 but still same ``` 2024-...
closed
2024-04-01T09:30:07Z
2024-04-02T15:46:22Z
https://github.com/sinaptik-ai/pandas-ai/issues/1081
[]
vpurandara
3
mitmproxy/pdoc
api
1
AttributeError: 'FullArgSpec' object has no attribute 'keywords'
I just installed version 0.1.5 and ran: `mkdir apidocs ; cd apidocs ; pdoc --html ../doorstop --overwrite` I get the following trackback (but index.html was generated): ``` shell Traceback (most recent call last): File "/Users/Browning/Drive/Programs/Libraries/Doorstop/bin/pdoc", line 487, in <module> html_out...
closed
2013-08-31T00:15:29Z
2018-06-01T11:52:47Z
https://github.com/mitmproxy/pdoc/issues/1
[]
jacebrowning
2
influxdata/influxdb-client-python
jupyter
30
Add support for streaming query response
- use streaming generator - https://www.python.org/dev/peps/pep-0255/ - success dispose request after stop `for` loop - possibility to connect with: - https://streamz.readthedocs.io/en/latest/core.html - https://matthewrocklin.com/blog/work/2017/10/16/streaming-dataframes-1
closed
2019-10-31T10:11:47Z
2019-11-05T08:48:08Z
https://github.com/influxdata/influxdb-client-python/issues/30
[ "enhancement" ]
bednar
0
plotly/plotly.py
plotly
4,558
Parallel coordinates mixed categrical and numerical values
I have the following problem that i want to use the parallel coordinates plot for a dataframe where some columns are categorical (strings) and others are numerical. In my case the categorical ones are just ignored for the plotting. How can i fix this?
closed
2024-03-26T15:09:59Z
2024-07-11T23:31:44Z
https://github.com/plotly/plotly.py/issues/4558
[]
MaAl13
1
gradio-app/gradio
data-visualization
10,283
How can I show like or dislike only?
- [ ] I have searched to see if a similar issue already exists. My gradio version is 5.4.0 My code like this : ``` import gradio as gr def greet(history, input): return history + [(input, "Hello, " + input)] def vote(data: gr.LikeData): if not data.liked: print("You upvoted this resp...
closed
2025-01-03T14:35:15Z
2025-01-04T05:24:58Z
https://github.com/gradio-app/gradio/issues/10283
[]
HenryBao91
2
ymcui/Chinese-BERT-wwm
nlp
88
相似度
如何利用模型获得文本之间的相似度?或者是否有利用Bert做文本相似度和其他方法做文本相似度比较的文献推荐?
closed
2020-01-13T01:29:14Z
2020-01-13T05:13:21Z
https://github.com/ymcui/Chinese-BERT-wwm/issues/88
[]
lanmingxiang
5
Significant-Gravitas/AutoGPT
python
9,167
Implement library add, update, remove, archive functionality
Implement core functionality to manage the users library
closed
2025-01-02T10:37:59Z
2025-01-10T12:02:57Z
https://github.com/Significant-Gravitas/AutoGPT/issues/9167
[ "platform/backend" ]
Swiftyos
0
graphql-python/gql
graphql
192
gql transport that communicates directly with WSGI/ASGI app
For the purposes of writing tests for my graphql server, I'd like the ability to communicate directly with the WSGI App object, rather than have to set up a local web server and go through one of gql's transport layers in each test. I know that gql already provides the ability to interface with a local GraphQLSchema...
closed
2021-02-11T22:12:37Z
2023-04-16T19:59:20Z
https://github.com/graphql-python/gql/issues/192
[ "type: feature" ]
dkbarn
6
microsoft/qlib
machine-learning
1,341
will enabling avx512 boost ddg-da model?
## 📖 Documentation will enabling avx512 boost ddg-da model? <!-- Please specify whether it's tutorial part or API reference part, and describe it.-->
closed
2022-11-07T09:30:49Z
2023-02-10T12:02:27Z
https://github.com/microsoft/qlib/issues/1341
[ "stale" ]
lukekingca
1
Colin-b/pytest_httpx
pytest
98
Logging Error: "TypeError: %d format: a real number is required, not re.Pattern"
I recently encountered this error in our tests, however it happens only occasionally and I haven't been able to reliably reproduce it. At first glance it seems like the `status_code` of the Response is somehow getting set to a re.Pattern object. Hopefully someone more knowledge of `pytest_httpx` may recognize the pr...
closed
2023-05-22T22:09:11Z
2023-05-24T16:22:51Z
https://github.com/Colin-b/pytest_httpx/issues/98
[ "invalid" ]
TheTechromancer
2
fastapi/sqlmodel
sqlalchemy
381
Add one-to-one relationship tutorial to docs
### 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...
open
2022-07-20T10:56:59Z
2024-04-12T18:57:42Z
https://github.com/fastapi/sqlmodel/issues/381
[ "question" ]
fkromer
3
strawberry-graphql/strawberry
graphql
3,350
Customization of process_result in Channels integration doesn't work.
## Feature Request Type - [V] Alteration (enhancement/optimization) of existing feature(s) ## Description I'm working on a GraphQL server development with django channels async view. I'm looking for a way to customize the error message, and according to the official documentation, I can override the process...
closed
2024-01-19T13:08:01Z
2025-03-20T15:56:34Z
https://github.com/strawberry-graphql/strawberry/issues/3350
[]
shmoon-kr
1
CorentinJ/Real-Time-Voice-Cloning
deep-learning
886
No response
toolbox got no response when selected mp3,and Ram use about 1h to rise to 2.5GB(Used original pretrained sets)
closed
2021-11-04T11:21:15Z
2021-11-06T16:46:38Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/886
[]
Ritanlisa
1
STVIR/pysot
computer-vision
142
关于siammasl的mask分支
siammask构建模型时mask_head和refine_head分别由mask.py的MaskCorr和Refine类生成,在训练过程中只使用了mask_head且似乎并未完善,而测试过程中使用的是refine_head,想问一下这两者应该使用哪一个。
closed
2019-07-30T09:15:21Z
2020-03-13T09:10:12Z
https://github.com/STVIR/pysot/issues/142
[]
kongbia
2
deepspeedai/DeepSpeed
machine-learning
6,480
[REQUEST]Please add clip_grad_norm for zero_optimization mode
**Is your feature request related to a problem? Please describe.** yes, i want to use clip_grad_norm when use deepspeed stage 2,and i set "gradient_clipping": 1.0. but it not work, then i look the source code in deepspeed.runtime.engine.DeepSpeedEngine,in line 2101 ``` def _take_model_step(self, lr_kwargs, blo...
closed
2024-09-04T04:31:52Z
2024-11-21T02:42:52Z
https://github.com/deepspeedai/DeepSpeed/issues/6480
[ "enhancement" ]
yangtian6781
8
huggingface/datasets
numpy
7,073
CI is broken for convert_to_parquet: Invalid rev id: refs/pr/1 404 error causes RevisionNotFoundError
See: https://github.com/huggingface/datasets/actions/runs/10095313567/job/27915185756 ``` FAILED tests/test_hub.py::test_convert_to_parquet - huggingface_hub.utils._errors.RevisionNotFoundError: 404 Client Error. (Request ID: Root=1-66a25839-31ce7b475e70e7db1e4d44c2;b0c8870f-d5ef-4bf2-a6ff-0191f3df0f64) Revision N...
closed
2024-07-26T08:27:41Z
2024-07-27T05:48:02Z
https://github.com/huggingface/datasets/issues/7073
[]
albertvillanova
9
dagster-io/dagster
data-science
27,973
Empty canvas when clicking "lineage" tab in asset details 1.10.2
### What's the issue? Since 1.10.2, got en empty canvas when clicking on "lineage" tab in asset details ![Image](https://github.com/user-attachments/assets/1a2c4dd3-8c6b-41ce-91ed-763e01779474) ### What did you expect to happen? See the assets and it's lineage ### How to reproduce? upgrade ### Dagster version ...
closed
2025-02-21T06:28:52Z
2025-03-08T14:49:36Z
https://github.com/dagster-io/dagster/issues/27973
[ "type: bug" ]
malow106
0
huggingface/datasets
pytorch
6,937
JSON loader implicitly coerces floats to integers
The JSON loader implicitly coerces floats to integers. The column values `[0.0, 1.0, 2.0]` are coerced to `[0, 1, 2]`. See CI error in dataset-viewer: https://github.com/huggingface/dataset-viewer/actions/runs/9290164936/job/25576926446 ``` =================================== FAILURES ===========================...
open
2024-05-31T08:09:12Z
2024-05-31T08:11:57Z
https://github.com/huggingface/datasets/issues/6937
[ "bug" ]
albertvillanova
0
nvbn/thefuck
python
955
Feature Request: Invoke the fuck automatically with exit status
Hi, I was wondering that if the fuck can be invoked automatically by exit status other than 0 rather than giving the command or by key binding it will be more useful.
open
2019-09-21T11:54:58Z
2019-10-11T06:56:29Z
https://github.com/nvbn/thefuck/issues/955
[]
raj-priyanshu
3
ydataai/ydata-profiling
jupyter
1,514
Bug Report
### Current Behaviour IndexError: list index out of range ### Expected Behaviour The data is getting summarized but during generating report structure it gives IndexError: list index out of range ### Data Description Dataset link - https://www.kaggle.com/datasets/himanshupoddar/zomato-bangalore-resta...
open
2023-12-05T14:15:17Z
2024-01-18T07:24:14Z
https://github.com/ydataai/ydata-profiling/issues/1514
[ "information requested ❔" ]
Shashankb1910
2
predict-idlab/plotly-resampler
data-visualization
190
Add data-vis repo link in readme / docs
Add the https://github.com/predict-idlab/ts-datapoint-selection-vis repo somewhere in the README, as it provides more context and information on the performance of data point selection algorithms for various use-cases.
closed
2023-04-05T20:12:02Z
2023-05-14T09:47:30Z
https://github.com/predict-idlab/plotly-resampler/issues/190
[ "documentation", "enhancement" ]
jonasvdd
0
snarfed/granary
rest-api
58
Consider treating mf2 "category" URLs as AS objectType "person"
Per conversation in IRC http://indiewebcamp.com/irc/2015-11-17/line/1447795539069 We should consider microformats2 simple "u-category" properties as person tags if they look like a URL. That means mf2: ``` { "properties": { "category": ["http://tantek.com"] } ``` would translate to activitystreams as: ``` { ...
open
2015-11-17T21:46:18Z
2015-11-18T15:52:28Z
https://github.com/snarfed/granary/issues/58
[]
karadaisy
5
the0demiurge/ShadowSocksShare
flask
107
六个pc电脑和手机上都能稳定流畅科学上网的翻墙机场节点梯子推荐
**手机和电脑挂梯子上外网的机场节点怎么用?- windows/MacOS/Linux等PC电脑系统和苹果安卓等手机系统使用翻墙机场时,将订阅的翻墙节点导入Clash、Shadowrocket(小火箭)、Stash(Clash for iOS)、Quantumult X(圈叉)、Surge、V2rayN、sing-box 等翻墙客户端就可以轻松实现科学上网。今天给大家分享六个pc电脑和手机上都能稳定流畅科学上网的翻墙机场节点梯子推荐,这些翻墙机场相较传统的翻墙vpn和网络加速器来说,便宜好用性价比超高,如果你也想买一个便宜的[稳定靠谱梯子](https://studygolang.com/articles/36474),那么不妨从其...
open
2024-03-18T02:57:01Z
2024-08-23T08:14:49Z
https://github.com/the0demiurge/ShadowSocksShare/issues/107
[]
2025vpn
1
ageitgey/face_recognition
python
1,324
Encoding issue
* face_recognition version: * Python version: * Operating System: ### Description Describe what you were trying to get done. Tell us what happened, what went wrong, and what you expected to happen. IMPORTANT: If your issue is related to a specific picture, include it so others can reproduce the issue. ### ...
closed
2021-06-10T12:35:03Z
2021-06-10T12:35:59Z
https://github.com/ageitgey/face_recognition/issues/1324
[]
Shakirsadiq6
0
mlfoundations/open_clip
computer-vision
930
❓ [Question] Can't reproduce imagenet results of RN50 model trained on `pixparse/cc3m-wds`
This is my scripts: ``` torchrun --nnodes 1 \ --nproc_per_node 8 \ -m open_clip_train.main \ --model RN50 \ --train-data 'datasets/cc3m/cc3m-train-{0000..0575}.tar' \ --train-num-samples 2905954 \ --dataset-type webdataset \ --imagenet-val datasets/imagenet-1k/val \ --batch-siz...
closed
2024-08-24T03:06:45Z
2025-01-04T16:01:15Z
https://github.com/mlfoundations/open_clip/issues/930
[]
clownrat6
1
joke2k/django-environ
django
517
Django's RedisCache OPTIONS needs to be lowercase
We're currently moving our django cache and Celery broker to redis with TLS enabled and need to pass the `ssl_cert_reqs` parameter to the underlying redis connection. We're using `django-environ` to get both settings with a code similar to this : ```python CACHES = { "default": environ.cache(var="CACHE_URL", ...
open
2024-01-18T13:16:10Z
2025-01-19T11:09:32Z
https://github.com/joke2k/django-environ/issues/517
[]
jgoret
1
trevorstephens/gplearn
scikit-learn
289
Matrix shaped features issue
Hello, I am trying to apply the gplearn functions to matrix shaped features (i.e. maybe you have the Close price of some assets at different points in time - the feature would be a matrix with the assets as columns and timestamp as index) Hence I am reshaping the matrix features in vectors and then for each custom...
closed
2023-03-21T23:21:47Z
2023-03-21T23:30:40Z
https://github.com/trevorstephens/gplearn/issues/289
[ "enhancement" ]
aadrian92
1
roboflow/supervision
tensorflow
783
How to improve tracking and counting accuracy?
### Search before asking - [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar feature requests. ### Question Based on the great video from Piotr [here](https://www.youtube.com/watch?v=OS5qI9YBkfk) I generated [this code](https://github.com/rafaelgildin/...
closed
2024-01-26T00:38:40Z
2024-01-26T07:17:19Z
https://github.com/roboflow/supervision/issues/783
[ "question" ]
rafaelgildin
1
mwaskom/seaborn
matplotlib
3,303
Having issue importing seaborn
Hi I am trying to import seaborn via python console in Pycharm and I keep getting the following error Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/IPython/core/interactiveshell.py", line 3460, in run_code exec(code_obj, self.user_glo...
closed
2023-03-24T18:35:49Z
2023-04-02T18:23:10Z
https://github.com/mwaskom/seaborn/issues/3303
[]
ishaan-khurana
3
RobertCraigie/prisma-client-py
asyncio
969
feat(prisma): upgrade to v5.15.0
Hi, Would it be possible to bump the version to v5.15.0 as there is the benefit of the below preview feature that will help organise folders. ``` generator client { provider = "prisma-client-js" previewFeatures = ["prismaSchemaFolder"] } ```
closed
2024-06-06T18:56:27Z
2024-08-04T17:59:59Z
https://github.com/RobertCraigie/prisma-client-py/issues/969
[]
SuperP4rks
2
mwaskom/seaborn
pandas
3,041
Add pre-commit rule for clearing notebook output
This would be helpful to prevent the notebooks that comprise the source for most of the docs from getting committed with big plots in them. Additionally, it would be helpful to clear out some of the volatile metadata that isn't important (what Python version most recently executed the notebook, some hash that I don't u...
open
2022-09-22T00:37:02Z
2022-10-10T06:17:34Z
https://github.com/mwaskom/seaborn/issues/3041
[ "infrastructure" ]
mwaskom
6
PokeAPI/pokeapi
api
500
Gigantamax Pokemons?
are there any gigantamax pokemons?
closed
2020-06-22T12:38:08Z
2020-06-22T13:34:04Z
https://github.com/PokeAPI/pokeapi/issues/500
[]
FirezTheGreat
1
quokkaproject/quokka
flask
284
Why register a blueprint in case of conflic?
I'm having a hard time trying to understand why quokka/quokka/ext/blueprints.py will register a duplicated Blueprint? This could be hell in case circular imports. ``` if blueprint.name not in app.blueprints: app.register_blueprint(blueprint) else: blueprint.name += str(random.getrandbits(8)) app.register...
closed
2015-08-08T18:43:05Z
2015-12-05T03:45:13Z
https://github.com/quokkaproject/quokka/issues/284
[ "question" ]
rturk
2
kizniche/Mycodo
automation
1,356
PCF8575 activating multiple /wrong outputs on PCF8575 16 Channel Relay module
Hello and thanks for the great software. I have an issue with a 16 Channel I2C relay module based on the PCF8575 chip running with Mycodo...kind of two issues: 1. Outputs seem reversed. When turning on CH0: Channel 1 in Mycodo >>> Relay number 16 on the module is activated, When turning on CH1: Channel 2 in M...
closed
2023-12-16T13:11:19Z
2024-04-26T13:57:59Z
https://github.com/kizniche/Mycodo/issues/1356
[ "bug" ]
mirukisan
11
TencentARC/GFPGAN
deep-learning
560
Gy
open
2024-07-11T00:19:31Z
2024-07-11T00:19:31Z
https://github.com/TencentARC/GFPGAN/issues/560
[]
skarifsadgi
0
AUTOMATIC1111/stable-diffusion-webui
deep-learning
16,881
[Bug]: Failed to install requirements
### 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 - [x] The issue has not been reported before...
open
2025-03-06T05:55:42Z
2025-03-07T17:50:36Z
https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/16881
[ "bug-report" ]
Kylada
1
graphql-python/graphene-sqlalchemy
sqlalchemy
91
AttributeError in Registry class when asserting
I had a situation where I wanted to recreate the SQLAlchemyObjectType, creating a new type. This does not work out of the box with Registry (which is OK), and an assert is thrown. However, the assert itself has an problem: ``` ..../api/graphql/types.py:74: in __init_subclass_with_meta__ registry.register(c...
closed
2017-11-21T10:26:43Z
2023-02-25T06:58:58Z
https://github.com/graphql-python/graphene-sqlalchemy/issues/91
[]
geertjanvdk
1
moshi4/pyCirclize
data-visualization
64
Custom color for genomic features
Hi. First of all, thank you for this fantastic package! I use pyCirclize to generate a circos reporting variants across a prokaryotic genome. In particular, I leverage the `genomic_features` function to include a list of SeqFeatures, one for each variant, to include them within a track. Now, it is unclear to me how ...
closed
2024-04-01T14:56:20Z
2024-05-03T02:30:32Z
https://github.com/moshi4/pyCirclize/issues/64
[ "question" ]
rdistefano
2
koxudaxi/datamodel-code-generator
pydantic
1,415
Add pre-commit hook
**Is your feature request related to a problem? Please describe.** I'd like to use this tool in my pre-commit workflow, to ensure I always have the latest models generated from the spec I'm using. **Describe the solution you'd like** Let's add a `.pre-commit-hooks.yaml` file I'll be happy to do this
closed
2023-07-07T18:36:25Z
2023-07-14T02:57:09Z
https://github.com/koxudaxi/datamodel-code-generator/issues/1415
[]
yehoshuadimarsky
0
quasarstream/python-ffmpeg-video-streaming
dash
53
Fail atexit._run_exitfuncs in convertions
**Describe the bug** I am using the custom service configuration with minIO, at the end of the conversion I see the error of Error in atexit._run_exitfuncs: Traceback (most recent call last): File "/usr/lib/python3.8/shutil.py", line 788, in move os.rename(src, real_dst) FileNotFoundError: [Errno 2] No su...
closed
2021-02-13T00:08:42Z
2021-03-20T12:42:12Z
https://github.com/quasarstream/python-ffmpeg-video-streaming/issues/53
[]
njavilas
3
babysor/MockingBird
pytorch
848
安裝錯誤 Could not find a version that satisfies the requirement monotonic-align==0.0.3 (from versions: 1.0.0)
安裝 pip install -r requirements.txt 出現錯誤,查看 monotonic-align 已經只有 1.0.0 可以怎麼排除呢? ![Snipaste_2023-03-11_23-50-39](https://user-images.githubusercontent.com/45012970/224494157-d9a5dadc-b762-45aa-ad47-c08372b046fe.png)
open
2023-03-11T15:52:19Z
2024-06-09T11:46:52Z
https://github.com/babysor/MockingBird/issues/848
[]
louxmao
10
graphql-python/graphene-sqlalchemy
sqlalchemy
107
Will the type graphene.ID of Mutation's input argument be resolved automatically?
I test the code as follows ``` class Tags(SQLAlchemyObjectType): class Meta: model = models.Tags # a SQLAlchemy model that contains two columns (id,name) interfaces = (graphene.relay.Node, ) class Test(graphene.Mutation): class Arguments: id = graphene.ID(required=True) o...
closed
2018-01-06T18:01:38Z
2023-02-25T06:58:54Z
https://github.com/graphql-python/graphene-sqlalchemy/issues/107
[]
XiaoMouR
5