repo_name
stringlengths
9
75
topic
stringclasses
30 values
issue_number
int64
1
203k
title
stringlengths
1
976
body
stringlengths
0
254k
state
stringclasses
2 values
created_at
stringlengths
20
20
updated_at
stringlengths
20
20
url
stringlengths
38
105
labels
listlengths
0
9
user_login
stringlengths
1
39
comments_count
int64
0
452
deezer/spleeter
deep-learning
545
[Discussion] Docker researchdeezer/spleeter VS deezer/spleeter
Hey folks. I'm struggling to understand the difference between `researchdeezer/spleeter` and `deezer/spleeter` Docker images. On one hand I see that your [CI](https://github.com/deezer/spleeter/blob/master/.github/workflows/docker.yml) builds, tests and pushes the `deezer/spleeter`. On the other, I see that [splee...
closed
2020-12-29T15:38:14Z
2021-02-12T14:51:34Z
https://github.com/deezer/spleeter/issues/545
[ "question" ]
just-jeb
1
gyli/PyWaffle
matplotlib
2
width problems with a thousand blocks
When plotting a larger number of blocks, the width of the white space between them become unstable: ``` plt.figure( FigureClass=Waffle, rows=20, columns=80, values=[300, 700], figsize=(18, 10) ); plt.savefig('example.png') ``` ![image](https://user-images.githubusercontent.com/118...
open
2017-11-23T17:27:12Z
2019-10-06T22:29:14Z
https://github.com/gyli/PyWaffle/issues/2
[]
lincolnfrias
2
exaloop/codon
numpy
404
Division by zero returned inf
In python when an integer divided by zero, ZeroDivisionError returned but when the code is compiled by codon the result is inf. to reproduce bug, you can run the below code. ``` def zero_division(): print(1 / 0) zero_division() ```
closed
2023-06-09T21:39:06Z
2023-07-26T13:47:33Z
https://github.com/exaloop/codon/issues/404
[ "duplicate" ]
likecodingloveproblems
2
tqdm/tqdm
pandas
811
Progress bars randomly jump to bottom with parallel processes
- [x] I have visited the [source website], and in particular read the [known issues] - [x] I have searched through the [issue tracker] for duplicates - [x] I have mentioned version numbers, operating system and environment, where applicable: ```python import tqdm, sys print(tqdm.__version__, sys.versio...
open
2019-09-11T18:37:37Z
2023-12-06T05:00:10Z
https://github.com/tqdm/tqdm/issues/811
[ "p2-bug-warning ⚠", "synchronisation ⇶" ]
kratsg
15
tensorflow/tensor2tensor
machine-learning
1,625
Framework error when attempting mixed precision training
I am attempting to use mixed precision (float16) training with transformer as described in #1362 using tensor2tensor 1.13.4. The problem is observed with tensorflow 1.13.1 and 1.14.0. Debian host with a Tesla V100 GPU. Mixed precision is enabled by passing either --hparams_set=transformer_fairseq_fp16_activation_bi...
closed
2019-07-08T02:52:00Z
2020-09-26T06:12:16Z
https://github.com/tensorflow/tensor2tensor/issues/1625
[]
ekuznetsov139
6
s3rius/FastAPI-template
asyncio
204
Fast api
open
2024-03-07T00:26:41Z
2024-03-07T00:26:41Z
https://github.com/s3rius/FastAPI-template/issues/204
[]
Jaewook-github
0
Lightning-AI/pytorch-lightning
deep-learning
19,679
neptune.ai logger produces lots of errors when logging "training/epoch"
### Bug description Neptune logger gives a lot of errors like "[neptune] [error ] Error occurred during asynchronous operation processing: X-coordinates (step) must be strictly increasing for series attribute: training/epoch. Invalid point: 34.0" Those are actually false positives, the "training/epoch" curve in th...
open
2024-03-20T15:33:22Z
2024-04-18T12:35:12Z
https://github.com/Lightning-AI/pytorch-lightning/issues/19679
[ "bug", "help wanted", "logger: neptune" ]
simon-ging
1
slackapi/python-slack-sdk
asyncio
1,131
Add the method to check equality in Block Kit model classes
### Reproducible in: #### The Slack SDK version All versions #### Steps to reproduce: ```python from slack_sdk.models.blocks import DividerBlock DividerBlock() == DividerBlock() ``` It happens with any pair of equivalent blocks. ### Expected result: True ### Actual result: False ### Sug...
closed
2021-10-26T14:05:00Z
2021-11-30T16:42:08Z
https://github.com/slackapi/python-slack-sdk/issues/1131
[ "enhancement", "web-client", "Version: 3x", "good first issue" ]
uroboro
5
HIT-SCIR/ltp
nlp
724
报错 RuntimeError: Invalid UTF-8 sentence!
ltp为4.2.0。代码如下 ` output = self.ltp.pipeline([sentence], tasks=["cws", "pos", "dep", "srl"]) seg = output.get("cws")[0] postags = output.get("pos")[0] arcs = output.get("dep")[0] roles = output.get("srl")[0] ` 结果报错: > Traceback (most recent call last): File "E:\Pychar...
open
2025-02-28T10:45:41Z
2025-02-28T10:45:41Z
https://github.com/HIT-SCIR/ltp/issues/724
[]
Ech0Sakura
0
tqdm/tqdm
pandas
1,444
Number 1
- [ ] I have marked all applicable categories: + [ ] exception-raising bug + [ ] visual output bug - [ ] I have visited the [source website], and in particular read the [known issues] - [ ] I have searched through the [issue tracker] for duplicates - [ ] I have mentioned version numbers, operating syste...
open
2023-03-14T11:11:53Z
2023-03-14T11:11:53Z
https://github.com/tqdm/tqdm/issues/1444
[]
ZOLAXOLLA0007
0
amdegroot/ssd.pytorch
computer-vision
175
solution to pytorch==0.4
change Hard Negative Mining in multibox_loss.py (line 101) from `loss_c[pos] = 0` to `loss_c[pos.view(-1, 1)] = 0` Then change ` loss_l /= N loss_c /= N` in the same file to ` loss_l /= N.float() loss_c /= N.float()`
open
2018-06-10T09:02:23Z
2018-12-06T18:03:09Z
https://github.com/amdegroot/ssd.pytorch/issues/175
[]
zsp1197
4
iterative/dvc
data-science
10,077
`artifacts get`: stopped working with the studio token
# Bug Report <!-- ## Issue name Issue names must follow the pattern `command: description` where the command is the dvc command that you are trying to run. The description should describe the consequence of the bug. Example: `repro: doesn't detect input changes` --> ## Description Artifacts get doesn't...
closed
2023-11-08T22:45:12Z
2023-11-09T07:19:04Z
https://github.com/iterative/dvc/issues/10077
[ "bug", "p1-important" ]
tibor-mach
4
graphql-python/graphene-sqlalchemy
graphql
380
Flask example gives ImportError
# Might be the only answer for now? Approach: Downgrade. How: Replace the _entire_ contents of `graphene-sqlalchemy/examples/flask_sqlalchemy/requirements.txt` with: ``` flask-graphql==2.0.1 graphene==2.1.9 graphene-sqlalchemy==2.3.0 ``` # Original post Hello, I followed the README instructions ...
closed
2023-02-14T18:08:26Z
2023-08-15T00:36:12Z
https://github.com/graphql-python/graphene-sqlalchemy/issues/380
[]
MattKleinsmith
6
AutoGPTQ/AutoGPTQ
nlp
380
[FEATURE] 支持 fuyu-8b 量化
**Is your feature request related to a problem? Please describe.** fuyu 非常好用,支持 fuyu-8b 量化的话,可以低成本使用 **Describe the solution you'd like** int8 int4 量化 **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context...
open
2023-10-25T15:24:12Z
2023-10-27T08:10:13Z
https://github.com/AutoGPTQ/AutoGPTQ/issues/380
[ "enhancement", "chinese" ]
xunfeng1980
0
rthalley/dnspython
asyncio
251
Please release new version on PyPi?
I'm running into the issue with 0.15 that I believe is fixed with this commit https://github.com/rthalley/dnspython/commit/8d8bdd395d1806d03ea6c8f3ad9f0a7c6b27a0c8. I've grabbed `master` and all is well with it, so might I politely inquire when the next release is planned for? 👍
closed
2017-05-01T22:53:16Z
2018-02-20T19:55:38Z
https://github.com/rthalley/dnspython/issues/251
[]
jaddison
0
liangliangyy/DjangoBlog
django
706
AttributeError: 'EntryPoints' object has no attribute 'get'
<!-- 如果你不认真勾选下面的内容,我可能会直接关闭你的 Issue。 提问之前,建议先阅读 https://github.com/ruby-china/How-To-Ask-Questions-The-Smart-Way --> **我确定我已经查看了** (标注`[ ]`为`[x]`) - [ ] [DjangoBlog的readme](https://github.com/liangliangyy/DjangoBlog/blob/master/README.md) - [ ] [配置说明](https://github.com/liangliangyy/DjangoBlog/blob/master/bin...
closed
2024-04-04T01:28:35Z
2024-06-05T13:10:52Z
https://github.com/liangliangyy/DjangoBlog/issues/706
[]
xiaoliang123456789
0
Crinibus/scraper
web-scraping
240
Can you add support for shein.com?
Or any website can work?
closed
2023-12-30T22:28:40Z
2024-01-27T15:36:42Z
https://github.com/Crinibus/scraper/issues/240
[]
georgerabus
1
davidsandberg/facenet
computer-vision
1,216
Facenet saved entire model for Tensorflow 2.0 or above
I need the Facenet Model for Tensorflow 2.3. I need the entire model saved as PB file along with assets and variables folders. I can't use the h5 file because I can't load it into JAVA. My deployment environment is JAVA. Does anybody have the entire model trained and saved in TF 2.0 that you can share with me? Thanks
open
2022-01-04T15:20:04Z
2022-01-04T15:20:04Z
https://github.com/davidsandberg/facenet/issues/1216
[]
Primadual
0
ExpDev07/coronavirus-tracker-api
rest-api
98
Storing data in a data in database
Right now the data is just stored in cache. Is it perhaps better to sync the data to an actual MySQL database? It would allow for fast querying.
closed
2020-03-19T21:39:00Z
2025-03-13T15:46:50Z
https://github.com/ExpDev07/coronavirus-tracker-api/issues/98
[ "enhancement", "performance" ]
ExpDev07
15
ray-project/ray
tensorflow
51,592
[Cluster] Add uv to base images
### Description `anyscale/ray` Docker images are very convenient base images for remote jobs, but as far as I can tell they do not contain the `uv` binary. I'm aware of two workarounds: custom images or downloading uv within `py_executable`. Baking `uv` into the image would be preferable to either. ### Use case _N...
open
2025-03-21T14:08:01Z
2025-03-21T19:32:37Z
https://github.com/ray-project/ray/issues/51592
[ "enhancement", "P1", "uv" ]
d-miketa
5
PokemonGoF/PokemonGo-Bot
automation
6,302
Feature Request
I’d like to make a request for a feature to auto complete rocket battles when passing by a go rocket stop. This would make for way easier auto farming/stardust farming and allow users to use that stardust to power up their costly Pokemon. I hope you choose to integrate it into your project if possible. Thanks if you re...
closed
2021-06-18T07:42:36Z
2022-11-12T22:20:07Z
https://github.com/PokemonGoF/PokemonGo-Bot/issues/6302
[]
loqento
2
qubvel-org/segmentation_models.pytorch
computer-vision
353
Precision and recall are mixed up.
Hi! Thank you for your great work! I'm here from your keras implementation of segmentaion_models. When I transferred the code I noticed that precision and recall functions seem to be mixed up. Here is the example code. ```` import os os.environ["CUDA_VISIBLE_DEVICES"]="None" import numpy as np import torch...
closed
2021-02-25T19:35:01Z
2022-03-01T02:03:21Z
https://github.com/qubvel-org/segmentation_models.pytorch/issues/353
[ "Stale" ]
BEEugene
2
3b1b/manim
python
1,148
Manimlib.stream_starter
When i wan't to play the animation named examle_scenes ,it shows, import manimlib.stream_starter ModuleNotFoundError: No module named 'manimlib.stream_starter' SO, what can i do for manimlib.stream_starter????
closed
2020-06-23T04:50:30Z
2021-02-13T05:02:46Z
https://github.com/3b1b/manim/issues/1148
[]
Ashraful7525
3
MentatInnovations/datastream.io
jupyter
4
Review: dsio.py core and tests
closed
2017-11-06T16:17:00Z
2018-02-06T20:55:38Z
https://github.com/MentatInnovations/datastream.io/issues/4
[]
canagnos
0
TencentARC/GFPGAN
pytorch
341
Fatima
What happened to this
open
2023-02-16T22:36:01Z
2023-02-16T22:36:01Z
https://github.com/TencentARC/GFPGAN/issues/341
[]
Zynuzainab
0
tflearn/tflearn
data-science
742
Accuracy metric for binary_crossentropy
Based on #253, #255, and #308, it seems like the Accuracy metric is supposed to work when using the binary_crossentropy loss function on one-dimensional targets. However, it seems to be ineffective, reporting the number of 1s instead of reporting the accuracy. Is there a fix for this issue? Some code to demonstrate ...
open
2017-05-05T17:13:29Z
2017-05-05T17:13:29Z
https://github.com/tflearn/tflearn/issues/742
[]
novog
0
jadore801120/attention-is-all-you-need-pytorch
nlp
95
GPU transition problem
https://github.com/jadore801120/attention-is-all-you-need-pytorch/blob/20f355eb655bad40195ae302b9d8036716be9a23/transformer/Translator.py#L17 this line should be `checkpoint = torch.load(opt.model, map_location=self.device)` Otherwise when the GPU that was used to train the model is full, the system will rais...
closed
2019-03-07T03:05:42Z
2019-12-08T10:06:09Z
https://github.com/jadore801120/attention-is-all-you-need-pytorch/issues/95
[]
HikaruSama233
1
aio-libs/aiomysql
sqlalchemy
119
Pool.maxsize = 0 does not allow unlimited connections
As noted in docs (https://github.com/aio-libs/aiomysql/blob/master/docs/pool.rst#L60): ``` If maxsize is 0 than size of pool is unlimited ``` A pool with maxsize = 0 ends up hanging on `_acquire` and never yielding a connection. (aiomysql==0.0.9, Python 3.5.1)
closed
2016-10-26T16:42:25Z
2022-02-02T21:57:50Z
https://github.com/aio-libs/aiomysql/issues/119
[ "bug" ]
sseg
0
wagtail/wagtail
django
12,981
Missing cache control to preview routes
> Issue created from https://github.com/wagtail/wagtail/pull/9284 ### Issue Summary We've just found another issue with the per-site-caching-setup and wagtail's preview, so it still doesn't work without tweaking at the moment. I will try to modify the [test-case to have a failing case](https://github.com/wagtail/wag...
open
2025-03-19T20:09:52Z
2025-03-20T10:10:07Z
https://github.com/wagtail/wagtail/issues/12981
[ "type:Bug", "component:Frontend cache", "status:Unconfirmed", "component:Preview" ]
lb-
2
521xueweihan/HelloGitHub
python
2,036
把验证码做成射击游戏,这还是第一个
## 项目推荐 - 项目地址:https://github.com/vivirenremoto/doomcaptcha - 类别:JS+HTML - 项目描述: - 必写:这块一款用游戏的方式做的一款验证码 - 描述长度(不包含示例代码): 可能是第一款使用射击游戏的形式来实现验证码功能的项目,这是demo:地址https://vivirenremoto.github.io/doomcaptcha/ - 推荐理由: 你见过哪些验证码?数字?图像?算数?拼图? 这些都太普通了!能不能用游戏的方式做一款验证码呢? 今天就给大家推荐一个开源项目:doomcaptcha doom,可能年轻...
closed
2021-12-22T02:00:14Z
2021-12-28T00:45:13Z
https://github.com/521xueweihan/HelloGitHub/issues/2036
[ "已发布", "其它" ]
xujanus
1
piccolo-orm/piccolo
fastapi
272
`on_delete` and `on_update` not being properly assigned
As reported here: https://github.com/piccolo-orm/piccolo/issues/193#issuecomment-927131062
closed
2021-09-25T15:47:38Z
2021-09-25T16:52:23Z
https://github.com/piccolo-orm/piccolo/issues/272
[ "bug" ]
dantownsend
1
ScottfreeLLC/AlphaPy
pandas
31
ValueError: model.yml features:encoding:type target unrecognized
I'm getting this error when running the examples. Any ideas? ``` Traceback (most recent call last): File "/usr/local/bin/alphapy", line 10, in <module> sys.exit(main()) File "/usr/local/lib/python3.7/site-packages/alphapy/__main__.py", line 471, in main specs = get_model_config() File "/usr/loca...
closed
2020-03-26T22:29:14Z
2020-04-25T01:11:51Z
https://github.com/ScottfreeLLC/AlphaPy/issues/31
[]
jim-schwoebel
21
polakowo/vectorbt
data-visualization
141
Using Custom Indicator to Apply Calculations by Custom Group?
Hi Oleg, great work! It's been almost a year since I last spent some time with VectorBT, and I'm really impressed with all of the progress since then. I was wondering if there was a way to use a custom indicator and apply a transformation based on a specified grouping. To clarify, I don't actually mean grouping the ...
closed
2021-05-01T00:52:08Z
2021-05-01T17:54:52Z
https://github.com/polakowo/vectorbt/issues/141
[]
kmcentush
8
microsoft/unilm
nlp
1,184
[trOCR] IndexError: Replacement index 1 out of range for positional args tuple
Model I am using trOCR The problem arises when using [pic_inference.py](https://github.com/microsoft/unilm/blob/master/trocr/pic_inference.py) I am getting folliowing error while doing inference ``` File "pic_inference.py", line 81, in <module> model, cfg, task, generator, bpe, img_transform, device = init...
open
2023-07-08T15:11:53Z
2023-07-11T03:58:24Z
https://github.com/microsoft/unilm/issues/1184
[]
abhiagwl4262
0
PaddlePaddle/ERNIE
nlp
245
bert和ernie在msra-ner上的实验
我做了一些实验,使用Bert Chinese model(base, tensorflow版)和ERNIE1.0(base, paddlepaddle实现)在中文ner数据集msra-ner进行实验,发现bert在该[数据集](https://bj.bcebos.com/paddlehub-dataset/msra_ner.tar.gz)(由paddlehub代码中提供的网址下载下来的)上验证集和测试集的f1-score分别是96.1,94.8,与ERNIE论文中的相差比较大,论文中分别是94.0和92.6,ERNIE的实验差别不大。我的计算f1-score方式是计算LOC、PER、ORG这三类的chunk的macro-f1,是否是...
closed
2019-08-01T03:34:46Z
2019-08-19T02:53:53Z
https://github.com/PaddlePaddle/ERNIE/issues/245
[]
1234560o
1
deepset-ai/haystack
pytorch
8,062
docs: clean up the first batch of docstrings
The goal is to clean up and clarify the docstrings: - The introduction will explain what the component does in a concise way. - Use more concise language throughout the docstrings. The first batch of components were identified based on their most-often usage in pipelines according to telemetry: - [x] #8063 - [...
closed
2024-07-24T08:52:11Z
2024-07-31T09:44:17Z
https://github.com/deepset-ai/haystack/issues/8062
[]
dfokina
1
PokeAPI/pokeapi
graphql
436
Go Wrapper
Wrote a wrapper for PokeAPI v2 in Go: [pokeapi-go](https://github.com/mtslzr/pokeapi-go). Per #410, sounds like it starts with opening an issue. Let me know what I can do to help get it on the website. Thanks!
closed
2019-06-22T22:10:48Z
2019-06-22T22:47:56Z
https://github.com/PokeAPI/pokeapi/issues/436
[]
mtslzr
2
pennersr/django-allauth
django
3,228
Google login failure - TypeError: string indices must be integers: Upgrade from 0.51.0 -> 0.52.0
First of all. Thanks for a great library as it takes away the pain of Auth. We are using it in a Nature Reservation project and it saves and improves the life of both Elephants and humans in South-east Asia. Back to topic. When bumping version from 0.51.0 to 0.52.0 project failed to login Google users. Returning to ...
closed
2023-01-01T15:26:30Z
2023-01-18T15:08:55Z
https://github.com/pennersr/django-allauth/issues/3228
[]
henningbra
3
QingdaoU/OnlineJudge
django
63
mysql 拒绝访问
3个容器全部正常启动了,在执行`docker exec -i -t {CONTAINER ID} /bin/bash` 显示 : ``` Failed to create database, error: (1045, "Access denied for user 'root'@'172.17.0.4' (using password: YES)"), will retry in 3 seconds mysql environment: - MYSQL_ROOT_PASSWORD=123456 ``` 执行`docker exec -it f06c544381e8 /bin/bash mysql -u ...
closed
2016-09-08T14:25:22Z
2016-09-09T12:14:16Z
https://github.com/QingdaoU/OnlineJudge/issues/63
[]
h094071
4
matplotlib/mplfinance
matplotlib
600
difference in size between saved plot and fig
I do not understand why plots differ in terms of size and how they look when I try to save them or returnfig. I generate plots of figsize (9,4) when I save them they look great, with a tight layout, no margins and axes excellent! But I need these plots again so it would be better to use a buffer instead. However, w...
open
2023-03-30T20:15:08Z
2023-03-31T18:43:00Z
https://github.com/matplotlib/mplfinance/issues/600
[ "question" ]
DanielWit
3
openapi-generators/openapi-python-client
fastapi
750
Allow tweaking configuration of black and isort via custom templates
**Is your feature request related to a problem? Please describe.** I'm using a monorepo with multiple projects, where some of the projects are generated by openapi-python-client. I'd like to have a single configuration of black and isort at the top level of the monorepo, but having them included in pyproject.toml of ...
closed
2023-04-21T16:38:54Z
2023-04-30T19:31:14Z
https://github.com/openapi-generators/openapi-python-client/issues/750
[ "✨ enhancement" ]
machinehead
1
ipython/ipython
data-science
14,507
IPython.display.display() with multiple objects and display_id=True display wrong objects.
This may be a bug in Jupyter, but since the function that fails is in IPython I thought I would start here. Calling `IPython.display.display()` with multiple objects when `display_id=False` works correctly, but if you call it with `display_id=True` then the last object is displayed multiple times. For example, this ...
open
2024-08-30T00:31:19Z
2024-08-30T00:31:19Z
https://github.com/ipython/ipython/issues/14507
[]
nickovs
0
ydataai/ydata-profiling
pandas
1,509
cannot import name 'Buffer' from 'typing_extensions' (/usr/local/lib/python3.10/dist-packages/typing_extensions.py)
### Current Behaviour I get this error: cannot import name 'Buffer' from 'typing_extensions' (/usr/local/lib/python3.10/dist-packages/typing_extensions.py) when I try importing from ydata_profiling import ProfileReport ### Expected Behaviour I should get a Report as shown on the https://docs.profiling.ydata.a...
closed
2023-11-29T14:37:56Z
2023-12-04T21:17:18Z
https://github.com/ydataai/ydata-profiling/issues/1509
[ "information requested ❔" ]
Balogunhabeeb14
4
Yorko/mlcourse.ai
matplotlib
572
typo in topic3_decision_trees_kNN article's image
Hello. Typo in image [topic3_hse_instruction.png](https://github.com/Yorko/mlcourse.ai/blob/master/img/topic3_hse_instruction.png) Arvix -> arXiv
closed
2019-02-17T18:39:46Z
2019-02-17T19:41:21Z
https://github.com/Yorko/mlcourse.ai/issues/572
[]
klensy
1
ageitgey/face_recognition
machine-learning
778
import face_recognition error
* face_recognition version: 1.2.3 * Python version: Python 3.6.3 |Anaconda, Inc.| (default, Oct 13 2017, 12:02:49) * Operating System: ubuntu 16.04 ### Description run face_recognition command and import face_recognition get following unkown error ### What I Did ``` just follow the instruction install d...
closed
2019-03-21T12:13:38Z
2019-03-22T13:50:31Z
https://github.com/ageitgey/face_recognition/issues/778
[]
myguaguagua
0
xinntao/Real-ESRGAN
pytorch
366
A very interesting question.
Dear xintao wang. I have long been in the topic of super-resolution neural networks. And I want to ask you a question. Is it possible to create an algorithm that can almost 100% recover lost parts of an image? Thank you.
open
2022-06-17T21:01:57Z
2022-06-17T21:01:57Z
https://github.com/xinntao/Real-ESRGAN/issues/366
[]
ARTUROSING
0
microsoft/nni
tensorflow
5,734
Cannot get the correct value,Can you tell me how to get the correct value? thank you very much
**Describe the issue**: when i use Detectron2 and adet model, i want to prune model, and i got error, how can i solve it; ![image](https://github.com/microsoft/nni/assets/71381036/66e39505-2e9c-4b66-9fae-bafe73304081) ![image](https://github.com/microsoft/nni/assets/71381036/66e47088-bfb8-4e5a-be8b-40e585e...
open
2024-01-16T13:13:53Z
2024-01-16T13:16:00Z
https://github.com/microsoft/nni/issues/5734
[]
tianlan6767
0
plotly/dash-core-components
dash
691
Upgrade plotly.js to 1.51.1
https://github.com/plotly/plotly.js/releases/tag/v1.51.0 Particularly, I'd like to use `title.standoff` in Dash Design Kit.
closed
2019-10-31T21:56:57Z
2019-11-04T19:13:35Z
https://github.com/plotly/dash-core-components/issues/691
[]
wbrgss
0
CatchTheTornado/text-extract-api
api
49
[feat] Check Paddle OCR
https://github.com/PaddlePaddle/PaddleOCR/blob/main/README_en.md
open
2024-12-01T18:03:05Z
2025-01-09T17:20:49Z
https://github.com/CatchTheTornado/text-extract-api/issues/49
[ "feature" ]
pkarw
1
LibreTranslate/LibreTranslate
api
113
Feature request: dockerhub documentation and env
On the dockerhub image, it would be beautiful to have a README or something with documentation In addition, it would be beautiful to have (if there are not yet) the options as ENV variables, so that in a docker compose you can just put the envs
closed
2021-07-12T16:55:58Z
2021-07-14T00:22:29Z
https://github.com/LibreTranslate/LibreTranslate/issues/113
[ "enhancement" ]
euberdeveloper
6
huggingface/datasets
computer-vision
7,029
load_dataset on AWS lambda throws OSError(30, 'Read-only file system') error
### Describe the bug I'm using AWS lambda to run a python application. I run the `load_dataset` function with cache_dir="/tmp" and is still throws the OSError(30, 'Read-only file system') error. Is even updated all the HF envs to point to /tmp dir but the issue still persists. I can confirm that the I can write to /...
open
2024-07-04T19:15:16Z
2024-07-17T12:44:03Z
https://github.com/huggingface/datasets/issues/7029
[]
sugam-nexusflow
1
browser-use/browser-use
python
951
Bug with version 0.1.40 - Task stuck in endless loop when completing the task
### Bug Description Browser navigation does not end (at least with headless true) with version 0.1.40, but finishes as expected in all versions before that one. I suspect that the different behaviour is due to the changes in PR #835, specifically: > Added logic to handle the last step in the agent's execution, incl...
open
2025-03-06T03:09:12Z
2025-03-24T14:44:59Z
https://github.com/browser-use/browser-use/issues/951
[ "bug" ]
tropxy
6
simple-login/app
flask
1,488
Blocking a sender for any alias
When a spammer find multiple aliases, I’ve to block it in all those aliases. I should be able to block a spammer globally.
open
2022-12-13T12:52:10Z
2024-06-12T08:23:35Z
https://github.com/simple-login/app/issues/1488
[]
ploum
4
samuelcolvin/watchfiles
asyncio
83
RuntimeError throws using cli on windows
I have this error: ```py RuntimeError: Attempt to start a new process before the current process has finished its bootstrapping phase. This probably means that you are on Windows and you have forgotten to use the proper idiom in the main module: if...
closed
2021-05-21T15:59:35Z
2021-05-23T16:00:03Z
https://github.com/samuelcolvin/watchfiles/issues/83
[]
rairou
0
mirumee/ariadne
graphql
1,018
Factor common schema directives logic used by make_executable_schema from SchemaDirectiveVisitor
Currently SchemaDirectiveVisitor does two things: - Its a base class for custom GraphQL directives. - Its a manager class for directives, with `visit_schema_directives` and `get_declared_directives` classmethods that `make_executable_schema` uses to apply directives to the schema We should introduce new abstract...
open
2023-02-03T12:01:01Z
2024-03-25T08:24:16Z
https://github.com/mirumee/ariadne/issues/1018
[ "enhancement", "to do" ]
rafalp
0
chatanywhere/GPT_API_free
api
367
dall模型图片变体功能无法调用?
**Describe the bug 描述bug** 文生图功能可以使用,但是无法调用dall图片功能?按要求图片为png格式,且是方形 **To Reproduce 复现方法** ```Python import requests def generate_image_variation(api_key, image_url): url = "https://api.chatanywhere.org/v1/images/variations" headers = { "Authorization": f"Bearer {api_key}", "Content-Type": "ap...
closed
2025-02-26T02:30:19Z
2025-03-01T15:41:19Z
https://github.com/chatanywhere/GPT_API_free/issues/367
[]
IgararA
1
encode/uvicorn
asyncio
1,769
Error with websockets - wsproto.utilities.LocalProtocolError: Event CloseConnection(code=1000, reason='') cannot be sent in state ConnectionState.CLOSED
Error: ```py ERROR: Exception in ASGI application Traceback (most recent call last): File "C:\Users\name\AppData\Local\Programs\Python\Python310\lib\site-packages\uvicorn\protocols\websockets\wsproto_impl.py", line 219, in run_asgi result = await self.app(self.scope, self.receive, self.send) File "C:\...
closed
2022-11-20T03:29:29Z
2022-11-20T12:20:19Z
https://github.com/encode/uvicorn/issues/1769
[]
cibere
4
supabase/supabase-py
flask
225
Setting timeout for postgrest-py client
postgrest-py accepts a timeout parameter from [v0.8.0](https://github.com/supabase-community/postgrest-py/commit/1ea965a6cb32dacb5f41cd1198f8a970a24731b6) We don't have an option to set this from supabase-py. So, if the queries run longer than 5s it throws an exception.
closed
2022-06-21T05:37:16Z
2022-10-07T07:41:04Z
https://github.com/supabase/supabase-py/issues/225
[ "enhancement" ]
tbrains
0
plotly/dash
jupyter
2,407
Mistake/Incorrect value in Error Message
I think the error message in this line is incorrect: https://github.com/plotly/dash/blob/dev/dash/_validate.py#L196 Should this line be ``` Expected {len(outi)}, got {len(vi)} ``` instead of ``` Expected {len(vi)}, got {len(outi)} ``` ? My understanding is `outi` is the output_list (aka output spec), w...
open
2023-02-01T05:19:08Z
2024-08-13T19:25:55Z
https://github.com/plotly/dash/issues/2407
[ "bug", "P3" ]
ajyl
3
wkentaro/labelme
deep-learning
820
(node:8756) Electron: Loading non-context-aware native module in renderer: '...\spdlog.node'. This is deprecated, see https://github.com/electron/electron/issues/18397.
Sir, I wannt use your labelme code. However it doesn't work, and these are the error in anaconda prompt. (I am a baby of Python.. haha). I guess https://github.com/electron/electron/issues/18397 is the solution, however I cannot find the way to solve it... (venv_labelme) C:\ProgramData\Anaconda3\envs\venv_labelme\...
closed
2021-01-11T08:18:16Z
2022-06-25T04:49:23Z
https://github.com/wkentaro/labelme/issues/820
[]
twinsben94
1
pydantic/pydantic
pydantic
11,234
Model.model_construct(..),model_field_set returns a dict, not a set
### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description The model_fields_set (and __pydantic_fields_set__) generated from model_construct is a dict of name -> value, rather than a set(names...) as provied from model_validate. ### Example Code ```Python # /// script # dependencies = [ "pydant...
closed
2025-01-08T16:46:26Z
2025-01-16T17:31:10Z
https://github.com/pydantic/pydantic/issues/11234
[ "bug V2" ]
arrjaytee
2
miguelgrinberg/Flask-SocketIO
flask
734
pika blocks updates
When I run my code using pika (to read a RabbitMQ queue) is seems to block the socketIO connection between the python program and the html file. More specifically; the `on_message` function below receives a message body every few seconds, a body which contains a random number "c". The web page (index.html) does not loa...
closed
2018-07-10T21:30:45Z
2018-08-21T03:04:14Z
https://github.com/miguelgrinberg/Flask-SocketIO/issues/734
[ "question" ]
teslam
6
dnouri/nolearn
scikit-learn
292
Multiple Input layers?
I want to feed the metadata of an image to my network. How should I get started with implementing a network with two input layers? Is it possible with nolearn? Let's say I have an input image with the following shape 3x32x32 and 10 metadata features. I define two input layers: ``` li1= InputLayer(shape=(None, 3, 32...
closed
2016-09-01T19:33:09Z
2016-09-03T09:21:07Z
https://github.com/dnouri/nolearn/issues/292
[]
EliasVansteenkiste
1
deepset-ai/haystack
machine-learning
8,438
The Quick Start Ready Made Template Example doesnt work
The Ready made template example given in: https://haystack.deepset.ai/overview/quick-start doesnt work. This is the code I tried: ``` import os from dotenv import load_dotenv from haystack import Pipeline, PredefinedPipeline load_dotenv() pipeline = Pipeline.from_template(PredefinedPipeline.CHAT_WITH_WEBSITE...
closed
2024-09-20T04:10:46Z
2024-10-04T16:25:26Z
https://github.com/deepset-ai/haystack/issues/8438
[ "type:bug", "2.x" ]
msanaulla
3
Morizeyao/GPT2-Chinese
nlp
190
生成语句长度限制
数据集:80% 长度在620,平均长度在400的中文文本数据。 训练等一切正常,生成语句流利并且符合逻辑,但是均停止于230左右的长度,请问这种情况正常吗?
open
2021-02-02T10:06:14Z
2021-02-05T06:55:40Z
https://github.com/Morizeyao/GPT2-Chinese/issues/190
[]
Yuchen-Li
1
harry0703/MoneyPrinterTurbo
automation
296
能否使用本地自建的模型,应该如何设置
![image](https://github.com/harry0703/MoneyPrinterTurbo/assets/16535458/4d9240fe-da5a-4ce2-b59e-bff4d9ac8d44) API Key,Pexels API Key都是随便填的123456. Base Url:http://127.0.0.1:11434是我的模型地址。 点击生成会报错。APIConnectionError: Connection error. 是不是我的设置有错?
closed
2024-04-22T01:41:41Z
2024-04-22T10:35:25Z
https://github.com/harry0703/MoneyPrinterTurbo/issues/296
[]
wc1322000
1
kizniche/Mycodo
automation
586
Cannot activate DS18B20 sensor
Hi Kyle, I'm unable to activate a DS18B20 sensor. After installing the dependency, I'm able to add the sensor and can find the sensor ID in the drop list, but I get an error when trying to activate or deactivate it. If I unplug the sensor, I don't see the ID in the list. I've tried using different sensors and diffe...
closed
2018-12-27T00:00:00Z
2019-01-08T15:55:57Z
https://github.com/kizniche/Mycodo/issues/586
[ "bug" ]
Magnum-Pl
17
flairNLP/flair
nlp
3,255
[Question]: How to Train a Multi-label Text Classifier?
### Objective I am trying to use Flair to replicate the **Kaggle Toxic Comment Classification Challenge** which seeks to identify and classify toxic online comments. [https://www.kaggle.com/c/jigsaw-toxic-comment-classification-challenge]() ### Approach To do this I started with the Flair Tutorial: **Train a ...
closed
2023-05-29T17:59:57Z
2023-06-07T03:34:47Z
https://github.com/flairNLP/flair/issues/3255
[ "question" ]
None-Such
2
2noise/ChatTTS
python
120
阅读英文单词回出现混乱的情况
生成文本: ``` texts = [""" empty empty;empty;empty empty;空的 empty;empty;空的 encourage encourage;encourage;encourage encourage;鼓励 encourage;encourage;鼓励 end end;end;end end;末端 end;end;末端 """] ``` 常规的,小朋友阅读单词,读中文意思的。。 阅读后,可能出现空白音、混乱、读不完全的情况。
closed
2024-05-31T02:46:08Z
2024-07-17T04:01:39Z
https://github.com/2noise/ChatTTS/issues/120
[ "stale" ]
lingfengchencn
2
s3rius/FastAPI-template
asyncio
196
Add Ruff
Hi, I tried [Ruff](https://docs.astral.sh/ruff/) recently and I was astonished by the speed. It would be awesome if it was integrated with the `pre-commit` hooks.
closed
2023-11-22T14:38:27Z
2024-06-30T08:29:41Z
https://github.com/s3rius/FastAPI-template/issues/196
[]
valckmir
2
Lightning-AI/pytorch-lightning
data-science
19,718
Training stuck when running on Slurm with multiprocessing
### Bug description Hi, I'm trying to train a model on Slurm using a single GPU, and in the training_step I call multiprocessing.Pool() to parallel some function calls (function is executes on every example in the training data). When I run multiprocessing.Pool from the training_step, the call never ends. I added mu...
open
2024-03-31T15:31:36Z
2024-03-31T16:03:55Z
https://github.com/Lightning-AI/pytorch-lightning/issues/19718
[ "question", "environment: slurm", "ver: 2.1.x" ]
talshechter
1
iperov/DeepFaceLab
machine-learning
805
ValueError: cannot reshape array of size 4800 into shape (5,5,3,32)
I trained a Quick96 model on Google Colab. When I downloaded the trained model to the local, the following error occurred when used the model on my PC: ``` Traceback (most recent call last): File "C:\DEEP\DeepFaceLab_NVIDIA\_internal\DeepFaceLab\mainscripts\Merger.py", line 50, in main cpu_only=cpu_only) ...
closed
2020-07-02T07:41:51Z
2021-10-09T18:27:02Z
https://github.com/iperov/DeepFaceLab/issues/805
[]
Rocky-17
3
Avaiga/taipy
automation
2,501
GitHub Security Advisory
### What went wrong? 🤔 Backport of #2500 for Taipy GUI 4.0.3.
closed
2025-03-17T14:38:30Z
2025-03-17T17:19:23Z
https://github.com/Avaiga/taipy/issues/2501
[ "🟥 Priority: Critical", "💥Malfunction", "Gui: Back-End" ]
FabienLelaquais
0
neuml/txtai
nlp
521
Question: How to use semantic graph & add edges
TLDR: How do we use both similarity search and define edges with the semantic graph? In the example on how to build a graph it shows how to use GraphFactory to create a graph, then graph.addnode to create a node and graph.addedge to create the edges. However lower down in the notebook it shows how to use embedd...
closed
2023-08-17T01:19:23Z
2023-08-18T15:42:48Z
https://github.com/neuml/txtai/issues/521
[]
dustyatx
5
AirtestProject/Airtest
automation
749
airtest 用poco获取该控件后在对控件截图???
airtest 用poco获取该控件后在对控件截图???
closed
2020-06-03T10:44:07Z
2020-06-04T01:49:22Z
https://github.com/AirtestProject/Airtest/issues/749
[]
jekoie
1
anselal/antminer-monitor
dash
84
Add support for Innosilicon A4+ A6
It would be very good if you can add Innosilicon A4+ ASIC I have done like you say in "Can you add ebit e9+?" thread and here is file [https://gist.github.com/SiDR2013/31cfb626b5571ad1f4831f6075ecc884](https://gist.github.com/SiDR2013/31cfb626b5571ad1f4831f6075ecc884) Also here is discussion thread [https://bitcoint...
open
2018-04-06T09:45:11Z
2018-04-10T20:32:40Z
https://github.com/anselal/antminer-monitor/issues/84
[ ":pick: miner_support" ]
SiDR2013
1
gradio-app/gradio
machine-learning
10,570
Column width is incorrect when `show_row_numbers=True`
### Describe the bug When `show_row_numbers=False`, the column widths are automatically adjusted as expected, like this: ![](https://github.com/user-attachments/assets/c6b12563-55c4-4765-87c0-42f9234aa656) But, when `show_row_numbers=True`, the automatic adjustment doesn't work correctly, and the table is rendered l...
closed
2025-02-12T05:53:30Z
2025-03-07T10:52:19Z
https://github.com/gradio-app/gradio/issues/10570
[ "bug", "💾 Dataframe" ]
hysts
1
wagtail/wagtail
django
11,920
Saving a page draft or publishing raises `django.utils.datastructures.MultiValueDictKeyError: 'body-count' error
<!-- Found a bug? Please fill out the sections below. 👍 --> ### Issue Summary <!-- A summary of the issue. --> When I save any page by clicking "save draft" or "publish" `django.utils.datastructures.MultiValueDictKeyError: 'body-count` error is raised. This happened after I upgraded from 6.0 to 6.1. Belo...
closed
2024-05-02T14:32:48Z
2024-05-02T16:01:20Z
https://github.com/wagtail/wagtail/issues/11920
[ "type:Bug", "status:Needs Info", "status:Unconfirmed" ]
Grustamli
3
Textualize/rich
python
2,582
[REQUEST] Provide a means to replace the BarColumn with a message when the task is stopped
As in https://github.com/jedib0t/go-pretty/tree/main/progress I would like to be able to indicate that a task is done/completed when it is not a known quantity (spinner). on the event of a call to "progress.stop_task(task_id, message="Done.")" I would like for the BarColumn to display the word "Done." and stop ren...
closed
2022-10-15T14:37:38Z
2022-10-17T15:29:50Z
https://github.com/Textualize/rich/issues/2582
[ "Needs triage" ]
hpe-ykoehler
4
robotframework/robotframework
automation
5,257
`GROUP` syntax for grouping keywords and control structures
The proposed BLOCK keyword would allow users to logically group related steps, improving test case organization, readability, and making the logs clearer and more structured by avoiding clutter at the top level. Currently, to achieve logical grouping, users often create custom keywords to wrap related steps, leading...
closed
2024-11-07T03:33:27Z
2024-12-18T21:33:33Z
https://github.com/robotframework/robotframework/issues/5257
[ "enhancement", "priority: high", "beta 1", "acknowledge", "effort: large" ]
wenkai5566
26
pydantic/pydantic-core
pydantic
786
Subclasses of `str`
Continued from discussion on https://github.com/pydantic/pydantic/issues/6261#issuecomment-1637782831 Currently the behaviour is weird: strict validation of strings maintains subclass information, while lax strings don't, unless there's mutating constraint, in which case information is lost again. This means that...
closed
2023-07-18T14:09:01Z
2023-07-19T13:38:11Z
https://github.com/pydantic/pydantic-core/issues/786
[ "bug" ]
samuelcolvin
2
CorentinJ/Real-Time-Voice-Cloning
tensorflow
1,103
Model files not found. error
![image](https://user-images.githubusercontent.com/111333178/184795265-9fdd883a-6aa7-4a17-b369-8fb1c2f9557e.png) How to fix this error? I've tried to download encoder.pt , vocoder.pt , synthesizer.pt and put this three files into saved_models/default/ However it was not working.. any idea for this?
open
2022-08-16T04:03:51Z
2022-08-31T11:21:19Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/1103
[]
dga87351
2
huggingface/datasets
machine-learning
6,438
Support GeoParquet
### Feature request Support the GeoParquet format ### Motivation GeoParquet (https://geoparquet.org/) is a common format for sharing vectorial geospatial data on the cloud, along with "traditional" data columns. It would be nice to be able to load this format with datasets, and more generally, in the Datasets Hub...
open
2023-11-20T11:54:58Z
2024-02-07T08:36:51Z
https://github.com/huggingface/datasets/issues/6438
[ "enhancement" ]
severo
6
scikit-image/scikit-image
computer-vision
7,398
Invalid no-name-in-module from pylint on scikit-image>=0.19.0 using filters module
### Description: I'm seeing an invalid `no-name-in-module` error in `pylint` when using `scikit-image>=0.19.0` (I believe related to the introduction of lazy loading). This was tested on a conda environment created using: ```bash conda create -n skimage_env -c conda-forge python=3.8 scikit-image==0.19.3 pylint==3.1....
closed
2024-04-16T21:41:43Z
2024-04-17T13:55:47Z
https://github.com/scikit-image/scikit-image/issues/7398
[ ":bug: Bug" ]
defe007
3
NullArray/AutoSploit
automation
533
Unhandled Exception (a4303ee49)
Autosploit version: `3.0` OS information: `Linux-4.15.0-45-generic-x86_64-with-Ubuntu-18.04-bionic` Running context: `autosploit.py` Error meesage: `global name 'Except' is not defined` Error traceback: ``` Traceback (most recent call): File "/home/username/Desktop/AutoSploit-master/autosploit/main.py", line 113, in m...
closed
2019-03-04T14:31:06Z
2019-03-06T01:26:27Z
https://github.com/NullArray/AutoSploit/issues/533
[]
AutosploitReporter
0
2noise/ChatTTS
python
561
Failed to create input filter: "time_base=1/24000:sample_rate=24000:sample_fmt=flt:channel_layout=0x0"
使用demo时候出现下列错误,求解呀 后端安装ffmpeg出现 ``` File "llm/ChatTTS/testTTs.py", line 12, in <module> torchaudio.save("output1.wav", torch.from_numpy(wavs[0]), 24000) File "miniconda3/envs/llm/lib/python3.11/site-packages/torchaudio/_backend/utils.py", line 313, in save return backend.save( ^^^^^^^^^^^^...
closed
2024-07-10T09:24:24Z
2024-10-22T07:41:08Z
https://github.com/2noise/ChatTTS/issues/561
[ "documentation" ]
shaofanqi
5
recommenders-team/recommenders
deep-learning
1,510
[FEATURE] Export RBM model
### Description <!--- Describe your issue/bug/request in detail --> Problem when saving RBM model, following the Wide&Deep model implementation https://nbviewer.jupyter.org/github/microsoft/recommenders/blob/staging/examples/00_quick_start/wide_deep_movielens.ipynb#4.3-Export-Model but when I exported the RBM model I...
closed
2021-08-26T14:29:40Z
2022-01-21T08:51:31Z
https://github.com/recommenders-team/recommenders/issues/1510
[ "enhancement" ]
miguelgfierro
4
serengil/deepface
deep-learning
1,336
[FEATURE]: Comprehensive list of model URLs
### Description We'd like to ship a prepackaged `DEEPFACE_HOME` in order to avoid unexpectedly downloading large files at runtime. At the moment, this is hard to do, because model downloads occur all throughout the codebase. It'd be great if the model names, URLs, and file paths were kept in an easily parseable dat...
closed
2024-09-04T23:37:34Z
2024-10-06T18:52:52Z
https://github.com/serengil/deepface/issues/1336
[ "enhancement" ]
hacker1024
4
dpgaspar/Flask-AppBuilder
rest-api
2,009
Number of history_pages
Hi, I have the necessity to change the number of history_pages. I am not able to find where i can configure it. The default is 5 bat I think it would be possible to change it. Thanks in advance for the help. Enrico
open
2023-03-21T11:15:10Z
2023-03-21T12:56:30Z
https://github.com/dpgaspar/Flask-AppBuilder/issues/2009
[]
enricosecco
2
kubeflow/katib
scikit-learn
1,900
Support multi CPU architectures (amd64 and arm64) in all container images with one image tag
/kind feature **Describe the solution you'd like** [A clear and concise description of what you want to happen.] As discussed In [this](https://github.com/kubeflow/katib/pull/1898#discussion_r897557325), we need to make all container images compatible with multi-CPU architectures (amd64 and arm64) with a single im...
closed
2022-06-19T16:04:38Z
2022-09-23T14:27:12Z
https://github.com/kubeflow/katib/issues/1900
[ "kind/feature" ]
tenzen-y
3
PaddlePaddle/models
computer-vision
5,540
提供的这几个预训练模型链接全部失效了
![image](https://user-images.githubusercontent.com/85534457/183591546-120482e2-d18b-4d24-867d-8249c6667113.png)
open
2022-08-09T07:35:32Z
2024-02-26T05:07:58Z
https://github.com/PaddlePaddle/models/issues/5540
[]
caidou05
2
PokeAPI/pokeapi
api
275
wormadam name mismatch from evolution chain
The name for wormadam are inconsistent between the /pokemon and /evolution-chain endpoints. The name is shown as wormadam in the evolution chain but at pokemon/413 shows wormadam-plant. I was building an evolution tree and get a 404 when requesting pokemon/wormadam. see: [http://pokeapi.co/api/v2/evolution-chain/213...
closed
2016-10-27T18:38:19Z
2016-10-28T13:44:50Z
https://github.com/PokeAPI/pokeapi/issues/275
[]
hshtgbrendo
1
microsoft/unilm
nlp
1,192
[Kosmos-2] Batch Inferencing and Computation Requirement
Hi, just tried out Kosmos-2's demo, and found it super impressive! I wonder if there's a way to run batch inferencing with Kosmos-2? For example, captioning a large corpus of images. Also wonder what's the computing requirement for inferencing (# of GPUs, RAM), and is it possible to run it with CPU? Thanks! ...
open
2023-07-12T01:23:22Z
2023-07-12T08:34:01Z
https://github.com/microsoft/unilm/issues/1192
[]
bwang514
2
chaoss/augur
data-visualization
2,150
Issue when running augur backend --help and running augur --help
Please help us help you by filling out the following sections as thoroughly as you can. **Description:** ValueError thrown when running augur backend --help and running augur --help commands **How to reproduce:** Run the commands **Expected behavior:** Help description from augur **Screenshots** Error l...
closed
2023-01-25T19:07:06Z
2023-04-03T21:55:42Z
https://github.com/chaoss/augur/issues/2150
[ "installation", "server", "release", "devops" ]
salleejackson2020
4
benbusby/whoogle-search
flask
418
[QUESTION] container won't start - "exec user process caused: operation not permitted"
I cloned the repo, running in the main branch. Tried 'docker-compose up -d' but get this error in the logs: ``` $ sudo docker-compose logs -f Attaching to whoogle-search whoogle-search | standard_init_linux.go:228: exec user process caused: operation not permitted whoogle-search | standard_init_linux.go:22...
closed
2021-09-06T17:54:07Z
2021-11-12T16:04:28Z
https://github.com/benbusby/whoogle-search/issues/418
[ "question", "needs more info" ]
allenwalker3
1
lepture/authlib
django
508
IntrospectionToken doesn't seem to implement TokenMixin
**Describe the bug** The [IntrospectionToken](https://github.com/lepture/authlib/blob/master/authlib/oauth2/rfc7662/models.py#L4) class doesn't seem to implement the [TokenMixin](https://github.com/lepture/authlib/blob/9ae4db94b10767452da55183d265a8a2acf4d441/authlib/oauth2/rfc6749/models.py#L174) in it's current fo...
open
2022-11-03T18:27:28Z
2025-02-20T20:45:58Z
https://github.com/lepture/authlib/issues/508
[ "bug", "server" ]
jeffsawatzky
0
youfou/wxpy
api
126
查找好友,名称为中文时就报错
报错全部信息如下 --------------------------------------------------------------------------- UnicodeDecodeError Traceback (most recent call last) <ipython-input-39-66a02722e919> in <module>() ----> 1 my_friend = bot.friends().search('四姨妈')[0] /Library/Python/2.7/site-packages/wxpy/api/chats/chats....
open
2017-07-24T13:30:13Z
2018-07-17T01:11:09Z
https://github.com/youfou/wxpy/issues/126
[]
MacLeeee
6
rthalley/dnspython
asyncio
976
Race Condition Resulting in Deadlock (async)
Hello! First off, thanks for making this project, it's very useful. I've been running into a rare and insidious deadlock bug that appears to be due to a race condition. The bug triggers on approximately 1 out of a million DNS queries (this is not an exaggeration), but when it does trigger it is very problematic. ...
closed
2023-08-03T17:28:42Z
2023-08-08T00:46:25Z
https://github.com/rthalley/dnspython/issues/976
[ "Bug", "Fixed" ]
TheTechromancer
8
tflearn/tflearn
data-science
798
WARNING:tensorflow:Error encountered when serializing layer_variables/seq2seq_model. Type is unsupported, or the types of the items don't match field type in CollectionDef. 'list' object has no attribute 'name'
Can someones please help me with this error? I do not know how to fix it. I am using TF 1.0.1 and tflearn 0.3.1. It is not making any sense to me. Please let me know if you have worked around or have fixed it.
open
2017-06-15T23:06:07Z
2017-07-21T11:00:09Z
https://github.com/tflearn/tflearn/issues/798
[]
rahulraju93
2
deepfakes/faceswap
deep-learning
651
ERROR initialising aligner during EXTRACT
**Describe the bug** i am recieving an error when trying to extract. **To Reproduce** Steps to reproduce the behavior: 1. run python extract 2. See error **Expected behavior** Extract is successful for images ---------CRASH REPORT IS BELOW---------- File "C:\Users\factoryorganicquery\faceswap\plugi...
closed
2019-03-06T22:08:50Z
2019-03-06T22:30:36Z
https://github.com/deepfakes/faceswap/issues/651
[]
haarissiddiqie1
1