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
statsmodels/statsmodels
data-science
8,925
mnlogit does not have confidence intervals for predictions (available in .get_prediction() for other models in statsmodels)
When I tried to call result.get_prediction() after fitting result = smf.mnlogit("dep_var ~ indep_var", data = data).fit() I got an error message that "MultinomialResults object has no attribute 'get_prediction'". Looking at the documentation for MultinomialResults (https://www.statsmodels.org/dev/generated/statsmodels....
open
2023-06-22T20:07:38Z
2023-06-23T15:13:30Z
https://github.com/statsmodels/statsmodels/issues/8925
[ "type-enh", "comp-discrete", "topic-predict", "prio-elev", "topic-post_estim" ]
svetlanakosterina
2
pallets/flask
python
4,808
mypy check error: "JSONProvider" has no attribute "sort_keys" [attr-defined]
Following the warning `The 'JSON_SORT_KEYS' config key is deprecated and will be removed in Flask 2.3. Set 'app.json.sort_keys' instead` we modified the code to use the mentioned `app.json.sort_keys`. However mypy check fails with the following error: ``` % mypy --install-types --non-interactive app.py:24: error:...
closed
2022-09-07T09:57:41Z
2022-09-22T00:08:38Z
https://github.com/pallets/flask/issues/4808
[]
jakubczaplicki
1
hbldh/bleak
asyncio
1,533
NotSupported error from Bluez
* bleak version: 0.21.1 * Python version: 3.11.8 * Operating System: Debian GNU/Linux * BlueZ version (`bluetoothctl -v`) in case of Linux: 5.71 ### Description I'm trying to subscribe to events for a given characteristic using `start_notify`, but I'm getting the following error: ``` bleak.exc.BleakDBusErr...
closed
2024-04-07T16:18:11Z
2024-04-08T14:42:20Z
https://github.com/hbldh/bleak/issues/1533
[ "3rd party issue", "Backend: BlueZ" ]
joselsegura
2
CorentinJ/Real-Time-Voice-Cloning
pytorch
401
Toolbox not working with python3.8
Hello All, Debian 11 Bullseye. Started with python3.7.x and python3.8.x and recently updated to python3.8.xx along with deprecation python3.7. Tried installing python3.7 from source but for some reason python3.7 is never seen as an alternative and did install with the altinstall switch or whatever that is. From a ...
closed
2020-07-05T16:32:20Z
2020-07-07T01:18:05Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/401
[]
brcisna
19
marcomusy/vedo
numpy
113
How to generate mask from surface?
Hi marcomusy, the vtkplotter is really a very good tool. I have a question, how can I obtain the mask from a mesh? For example, ``` import numpy as np from vtkplotter import * cs = [] for i in range(-10, 10): r = 10 / (i * i + 10) c = Circle(r=r).wireframe().rotateY(i*5).z(i / 10) cs.appen...
closed
2020-03-23T06:14:25Z
2020-11-28T21:17:11Z
https://github.com/marcomusy/vedo/issues/113
[]
NeuZhangQiang
6
littlecodersh/ItChat
api
679
对话免打扰如何设置?
请问itchat是否提供接口能将对话、群聊设置为“免打扰”状态?文档里没有找到相关说明
open
2018-06-11T02:05:23Z
2018-06-15T10:07:20Z
https://github.com/littlecodersh/ItChat/issues/679
[ "help wanted" ]
david-leon
1
xinntao/Real-ESRGAN
pytorch
771
请问该项目支持模型的增量学习吗?
open
2024-03-25T07:10:18Z
2024-03-25T07:10:18Z
https://github.com/xinntao/Real-ESRGAN/issues/771
[]
kl402401
0
aiortc/aiortc
asyncio
525
RAM flooded by frames
Hello, We based ourselves on the webcam example. Our objective was to display our high speed camera `/dev/video0` driven by v4l2. Aiortc is not able to deal with an as powerful stream, it floods the RAM until the machine crashes. ![image](https://user-images.githubusercontent.com/75309014/115380964-66cfd500-a1d3-11e...
closed
2021-04-20T11:10:14Z
2021-05-07T07:45:30Z
https://github.com/aiortc/aiortc/issues/525
[]
HugoMoreaupro
1
sktime/sktime
data-science
7,879
[ENH] do we need `broadcasting` and tag setting in every `_BaseGlobalForecaster` subclass, as the extension template implies?
`extension_templates/forecasting_global_supersimple.py` contains the `_BaseGlobalForecaster` class and acts as the template for all the global forecasting models in `sktime`, strangely the global forecasting capability is set to `False` in a template meant for global forecasting. ```py self.broadcasting = broadcastin...
open
2025-02-21T16:50:55Z
2025-02-24T16:41:48Z
https://github.com/sktime/sktime/issues/7879
[ "API design", "module:forecasting", "enhancement" ]
jgyasu
4
pytest-dev/pytest-xdist
pytest
819
How to disable color display
My commands :pytest.main(['-q', "--html=report.html", '-n=4']) I have not set pytest "-- color=yes" Using xdits causes the report color output to be ansi characters. Unrecognized html report ![image](https://user-images.githubusercontent.com/42427586/196027113-5637c57e-4a9c-45cd-a88f-43df95a4cfc6.png) I wan...
open
2022-10-16T09:03:19Z
2022-10-16T10:46:57Z
https://github.com/pytest-dev/pytest-xdist/issues/819
[]
shelkio
1
pywinauto/pywinauto
automation
1,153
Click() is not working for the background window, But send_keystrokes() works well
## Expected Behavior Mouse left click to a background window can work. ## Actual Behavior nothing ## Short Example of Code to Demonstrate the Problem ```python app = Application(backend="win32").connect(handle=hwnd) win = app.window(class_name=class_name) # it works win.send_keystrokes("...
open
2021-12-05T08:01:32Z
2021-12-06T07:59:20Z
https://github.com/pywinauto/pywinauto/issues/1153
[ "wontfix", "3rd-party issue" ]
meifans
6
deezer/spleeter
tensorflow
261
Training Does Not Work / Hangs - GPU Version
Hi, I have just started doing an EPQ for my A levels and have decided to do this on audio technology, and came across spleeter whilst researching ideas on the net. The idea is to build a system to separate a string quartet. I can use the musicians as school as part of the project. I have installed spleeter (see s...
closed
2020-02-06T21:14:36Z
2020-06-10T06:51:07Z
https://github.com/deezer/spleeter/issues/261
[ "bug", "invalid" ]
stickyninja3
1
tensorpack/tensorpack
tensorflow
886
How can I see the value of parameters in the trained model?
I've trained a model that I arbitrary constructed. I'd like to see the value of the parameters in each layer. For example, when I construct the model like below, Trainable Variables: name shape dim ======= ========= ======= conv0/W:0 [3, 3, 3, 32] ...
closed
2018-09-06T05:13:13Z
2018-09-09T06:09:11Z
https://github.com/tensorpack/tensorpack/issues/886
[ "usage" ]
SeunghyunMoon
1
desec-io/desec-stack
rest-api
555
api: wildcard domains don't work with IP update API
I noticed that the dynDNS/IP update API doesn't accept wildcard domains, I get a `badauth` when trying to specify a wildcard domain as username or `nohost` when specifying as GET parameter. Skimming through [the code](https://github.com/desec-io/desec-stack/blob/b6f3d47bf4b725cd0547d1087439fcff6118d594/api/desecapi/...
closed
2021-07-02T09:13:17Z
2021-07-05T14:51:20Z
https://github.com/desec-io/desec-stack/issues/555
[ "bug", "api" ]
Eisfunke
4
pydantic/logfire
pydantic
264
Specifying `http_client` in openai client options causing `TypeError` with `instrument_httpx`
### Description If I use `instrument_httpx()`, and then construct an OpenAI client with a custom httpx client, openai will raise an TypeError: ```py TypeError: Invalid `http_client` argument; Expected an instance of `httpx.AsyncClient` but got <class 'httpx.AsyncClient'> ``` ### Python, Logfire & OS Versions, re...
closed
2024-06-14T12:09:36Z
2024-07-18T07:02:11Z
https://github.com/pydantic/logfire/issues/264
[ "bug", "OTel Issue" ]
CNSeniorious000
5
deeppavlov/DeepPavlov
nlp
785
Add __getitem__() method for Chainer class
`str` argument for getting by id and `int` for getting by index
closed
2019-03-29T14:06:50Z
2019-05-02T19:04:06Z
https://github.com/deeppavlov/DeepPavlov/issues/785
[ "enhancement" ]
yoptar
1
junyanz/pytorch-CycleGAN-and-pix2pix
pytorch
1,474
RuntimeError: Error(s) in loading state_dict for ResnetGenerator
Hello, I am trying to run test.py script but got this error. Can you help me to fix this? Thank you! RuntimeError: Error(s) in loading state_dict for ResnetGenerator: Missing key(s) in state_dict: "model.4.weight", "model.4.bias", "model.7.filt", "model.8.weight", "model.8.bias", "model.11.filt", "model.12.conv_...
open
2022-08-27T21:44:28Z
2022-09-06T20:31:08Z
https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/1474
[]
fnurkinali
1
microsoft/MMdnn
tensorflow
761
The input shape of pytorch model in model collection
Platform (like ubuntu 16.04/win10): ubuntu 16.04 Python version: 3.5.5 Source framework with version (like Tensorflow 1.4.1 with GPU): pytorch1.0.1 Destination framework with version (like CNTK 2.3 with GPU): caffe1.0 Pre-trained model path (webpath or webdisk path): https://github.com/Microsoft/MMdnn/blob/mas...
open
2019-10-26T02:55:19Z
2019-11-01T09:46:47Z
https://github.com/microsoft/MMdnn/issues/761
[]
hnuhchen
2
graphql-python/graphene-django
graphql
582
how to upload file with graphene-file-upload
how to save file .. is confuse for me.
closed
2019-02-06T15:57:23Z
2021-04-14T20:08:26Z
https://github.com/graphql-python/graphene-django/issues/582
[ "question" ]
kevinzDzul
4
lux-org/lux
jupyter
108
High-cardinality bar chart text color overridden by color channel encoding
For high cardinality bar chart, we have a text indicator that shows "X more..." bars, however the text attribute color: ``` text = alt.Chart(visData).mark_text( x=155, y=142, align="right", color = "#ff8e04", fontSize = 11, text=f"+ 230 more ..." ) ``` is overridden by the color encoding: ``` chart ...
closed
2020-10-06T13:35:10Z
2020-10-25T08:30:21Z
https://github.com/lux-org/lux/issues/108
[ "bug", "easy" ]
dorisjlee
0
numpy/numpy
numpy
27,605
BUG: Performance Degradation with Concurrent Docker Images Using NumPy > 2.0.0
### Describe the issue: We have observed a significant performance degradation when running multiple concurrent Docker images, each executing a Python script that utilizes NumPy functions. This issue appears specifically with NumPy versions greater than 2.0.0. ### Reproduce the code example: ```python # bash scri...
open
2024-10-21T07:38:59Z
2024-11-03T11:52:59Z
https://github.com/numpy/numpy/issues/27605
[ "00 - Bug", "06 - Regression" ]
jlevypaloalto
17
ultralytics/ultralytics
pytorch
19,291
LetterBox on RT-DETR
### Search before asking - [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/orgs/ultralytics/discussions) and found no similar questions. ### Question My ultralytics was the laster version. In [ultralytics/models/rtdetr/predic...
open
2025-02-18T08:53:33Z
2025-02-18T09:56:49Z
https://github.com/ultralytics/ultralytics/issues/19291
[ "question" ]
As957LoveYourSelf
2
huggingface/transformers
python
36,814
When I use BF16 or FP16 to perform Lora fine-tuning on GemMA-3-12B-it, there will be an error when saving the checkpoint, but FP32 is normal
### System Info Copy-and-paste the text below in your GitHub issue and FILL OUT the two last points. - `transformers` version: 4.50.0.dev0 - Platform: Linux-5.15.0-43-generic-x86_64-with-glibc2.35 - Python version: 3.11.7 - Huggingface_hub version: 0.29.3 - Safetensors version: 0.5.3 - Accelerate version: 1.5.2 - Acc...
open
2025-03-19T07:42:36Z
2025-03-20T03:02:26Z
https://github.com/huggingface/transformers/issues/36814
[ "bug" ]
Fluchw
3
tatsu-lab/stanford_alpaca
deep-learning
184
Specifications for how to integrate services in AI models
Please join discussion. Here is a repository I created for specs, for now it's empty. Discussion is welcome. https://github.com/openservices4ai/spec **What is an AI-integrated sevice** As AI models trained on a fixed set of data and cannot learn something new in real-time while serving, services integrated i...
open
2023-04-06T08:59:50Z
2023-04-07T01:55:27Z
https://github.com/tatsu-lab/stanford_alpaca/issues/184
[]
PengXing
0
facebookresearch/fairseq
pytorch
4,665
Is there any method can be used to prune translation model in fairseq?
## ❓ Questions and Help ### Before asking: 1. search the issues. 2. search the docs. <!-- If you still can't find what you need: --> #### What is your question? #### Code <!-- Please paste a code snippet if your question requires it! --> #### What have you tried? #### What's your environment? ...
open
2022-08-23T12:35:27Z
2022-09-09T11:35:31Z
https://github.com/facebookresearch/fairseq/issues/4665
[ "question", "needs triage" ]
robotsp
8
ansible/awx
django
15,832
installation issue
### Please confirm the following - [x] I agree to follow this project's [code of conduct](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html). - [x] I have checked the [current issues](https://github.com/ansible/awx/issues) for duplicates. - [x] I understand that AWX is open source software provide...
closed
2025-02-13T08:23:12Z
2025-03-12T15:20:29Z
https://github.com/ansible/awx/issues/15832
[ "type:bug", "needs_triage", "community" ]
venkatasaimanduva94
2
hbldh/bleak
asyncio
714
OSError: [WinError -2147023836] The specified service does not exist as an installed service
* bleak version: 0.13.0 * Python version: 3.9.6 - pip 21.3.1 * Operating System: Windows 10 Pro 19043.1415 * BlueZ version (`bluetoothctl -v`) in case of Linux: ### Description scanner doesn't works, sample discovery also doesn't work. application.py is: ``` import asyncio from bleak import BleakScanner as...
open
2022-01-03T13:03:53Z
2023-07-19T15:27:44Z
https://github.com/hbldh/bleak/issues/714
[ "Backend: WinRT", "more info required" ]
vuslat-ozel
6
ageitgey/face_recognition
python
1,611
import face_recognition ModuleNotFoundError: No module named 'face_recognition'
I have installed all three Cmake pip install dlib pip install face_recognition but it still shows no module found, What should i do?
open
2024-09-14T09:50:40Z
2025-02-13T17:25:42Z
https://github.com/ageitgey/face_recognition/issues/1611
[]
SyedThameemuddin
5
codertimo/BERT-pytorch
nlp
85
.
closed
2020-10-03T07:41:16Z
2020-11-16T10:44:02Z
https://github.com/codertimo/BERT-pytorch/issues/85
[]
ghost
0
python-visualization/folium
data-visualization
1,565
Export a draw circle
This exported geojson of a circle has only one point. Should there be a radius in the output geojson? ```python import folium import folium.plugins as plugins m = folium.Map() plugins.Draw(export=True).add_to(m) m ``` ![folium](https://user-images.githubusercontent.com/5016453/150208760-5f3ec546-728f-46c9-a...
closed
2022-01-19T20:30:53Z
2022-11-17T16:09:09Z
https://github.com/python-visualization/folium/issues/1565
[]
giswqs
4
litestar-org/litestar
asyncio
3,552
Bug: normal usage of route handler decorators causes deprecation warnings
### Description Using any of the route handler decorators get, post, etc now causes the warning "Semantic HTTP route handler classes are deprecated and will be replaced by functional decorators in Litestar 3.0. I was told [here](https://github.com/orgs/litestar-org/discussions/3551) that this is not intended beha...
closed
2024-06-07T09:55:32Z
2025-03-20T15:54:45Z
https://github.com/litestar-org/litestar/issues/3552
[ "Bug :bug:" ]
bunny-therapist
2
reloadware/reloadium
flask
9
Working with multiple virtual environments
``` $ reloadium run ./myscript.py ■■■■■■■■■■■■■■■ Reloadium 0.8.6 ■■■■■■■■■■■■■■■ If you like this project please support it by giving a star at https://github.com/reloadware/reloadium Watching paths: ‣ /home/.../Code/<snip>/**/*.py Traceback (most recent call last): <snip> import numpy as np ModuleN...
closed
2022-04-28T07:25:26Z
2022-04-28T07:27:21Z
https://github.com/reloadware/reloadium/issues/9
[]
dkrystki
1
seleniumbase/SeleniumBase
web-scraping
2,592
Logging color seems to be permanently changed
When importing SeleniumBase I have noticed that colorama does not seem to be able to be changed. I very much enjoy SeleniumBase functionality. The use case I have is that I have a custom logger with coloring. I don't think SeleniumBase should change the stream output of all stdout (or maybe that is the intention?) ...
closed
2024-03-11T05:16:03Z
2024-03-11T16:57:23Z
https://github.com/seleniumbase/SeleniumBase/issues/2592
[ "question", "workaround exists" ]
jkoestner
3
InstaPy/InstaPy
automation
6,763
Huss
open
2023-10-03T04:09:16Z
2023-10-03T04:09:16Z
https://github.com/InstaPy/InstaPy/issues/6763
[]
Hussainch0786
0
huggingface/datasets
computer-vision
7,443
index error when num_shards > len(dataset)
In `ds.push_to_hub()` and `ds.save_to_disk()`, `num_shards` must be smaller than or equal to the number of rows in the dataset, but currently this is not checked anywhere inside these functions. Attempting to invoke these functions with `num_shards > len(dataset)` should raise an informative `ValueError`. I frequently...
open
2025-03-10T22:40:59Z
2025-03-10T23:43:08Z
https://github.com/huggingface/datasets/issues/7443
[]
eminorhan
1
sinaptik-ai/pandas-ai
data-science
1,128
'No code found in the response' error - retry code gen with chatgpt
### System Info pandasai: 2.0.35 python: 3.11 OS: win11 ### 🐛 Describe the bug when error correction framework triggered, it's likely the LLM respondes without code delimiter '''' (in my case Chatgpt 3.5 turbo, like 3 out of 5 times), and pandasai returned 'No code found in the response' error and breaks the p...
closed
2024-04-21T17:43:17Z
2024-09-18T16:07:11Z
https://github.com/sinaptik-ai/pandas-ai/issues/1128
[]
gDanzel
1
mljar/mercury
data-visualization
311
Notebooks' persistence
I added two notebooks under /app/mercury directory and execute mercury run. The two notebooks were displayed on Mercury front end and still showing. Then, I was trying to add a new notebook in that directory and saw that the two ipynb files disappeared. Is this a bug or do we have a persistence issue? Note that...
closed
2023-06-06T13:59:25Z
2023-06-13T11:22:34Z
https://github.com/mljar/mercury/issues/311
[ "deployment" ]
gmouawad
25
agronholm/anyio
asyncio
517
asyncio: odd behaviour with `TaskGroup.start()`
Consider the following code: ```python import anyio async def sleep_and_raise(task_status=anyio.TASK_STATUS_IGNORED): await anyio.sleep(3) raise RuntimeError async def sleep_only(task_status=anyio.TASK_STATUS_IGNORED): await anyio.sleep(20) task_status.started() async def foo(): as...
closed
2023-01-09T01:42:02Z
2023-07-26T20:42:30Z
https://github.com/agronholm/anyio/issues/517
[]
arthur-tacca
6
SYSTRAN/faster-whisper
deep-learning
362
RuntimeError: cuDNN failed with status CUDNN_STATUS_NOT_INITIALIZED
I got this error when i run fast whisper. ``` vidia-smi Thu Jul 20 06:39:18 2023 +-----------------------------------------------------------------------------+ | NVIDIA-SMI 470.199.02 Driver Version: 470.161.03 CUDA Version: 11.4 | |-------------------------------+----------------------+----------------...
closed
2023-07-20T06:50:53Z
2023-07-20T09:44:41Z
https://github.com/SYSTRAN/faster-whisper/issues/362
[]
nobody4t
3
PokeAPI/pokeapi
graphql
269
Mega-Pidgeot sprites missing
As stated above, each sprites of Mega-Pidgeot are missing (the return value is null). How to reproduce: simply visit [this link](http://pokeapi.co/api/v2/pokemon/10073/)
closed
2016-09-27T18:07:31Z
2017-06-12T12:51:54Z
https://github.com/PokeAPI/pokeapi/issues/269
[]
lmerotta-zz
0
waditu/tushare
pandas
1,122
token 复制操作失败
![Screenshot from 2019-08-18 17-56-35](https://user-images.githubusercontent.com/1115503/63223018-fbee1f80-c1e1-11e9-8222-386b53cfba97.png) 主页上的token 复制操作失败, https://tushare.pro/user/token chrome, ubuntu 18.04
open
2019-08-18T10:00:49Z
2019-08-27T06:20:54Z
https://github.com/waditu/tushare/issues/1122
[]
arisliang
1
modAL-python/modAL
scikit-learn
2
Performance on MNIST doesn't seem great
When comparing to random sampling it does not seem to give significantly different results. I would have expected the curve to be much higher for active learning. Potentially the defaults aren't great? ![active_learning_300](https://user-images.githubusercontent.com/116120/36399709-73aec3e8-15cd-11e8-915a-792ef304b7...
open
2018-02-19T22:35:36Z
2021-03-10T02:54:55Z
https://github.com/modAL-python/modAL/issues/2
[]
kmader
12
ydataai/ydata-profiling
pandas
1,432
Feature Request - Data Profile Report - Pull sample data at random rather than first 5 rows
### Missing functionality I wish the pandas data profiling report would select sample data at random rather than displaying the first 5 records from the column. In its current state, profile reports on tables with personally identifiable information (PII) exposes this sensitive data. Adding the sensitivity=true attrib...
open
2023-08-30T18:21:03Z
2024-03-05T16:10:26Z
https://github.com/ydataai/ydata-profiling/issues/1432
[ "needs-triage" ]
claymcbride
3
gradio-app/gradio
deep-learning
10,337
Regarding support for multiple webcams
- [x] I have searched to see if a similar issue already exists. **Is your feature request related to a problem? Please describe.** I encountered the `image.no_webcam_support` issue when trying out examples provided in the documentation during my recent project using Gradio. After reviewing some previously reporte...
closed
2025-01-12T07:58:07Z
2025-02-03T19:54:27Z
https://github.com/gradio-app/gradio/issues/10337
[ "pending clarification" ]
Anonyame
8
marimo-team/marimo
data-visualization
3,718
Status update for slow functions, which don't require manipulation with mo.output
### Description I like to build my UI based on components, and to show my UI as a single page, rather than stacked output cells (in vertical mode). I'm doing a lot of longer calculations which are triggered by e.g. a run button. When a long calculation takes place, I want to show a status spinner. The current solutio...
open
2025-02-07T15:58:42Z
2025-02-10T21:58:50Z
https://github.com/marimo-team/marimo/issues/3718
[ "enhancement" ]
mrdobalina2k
6
ydataai/ydata-profiling
jupyter
1,652
list index out of range when comparing more than 2 dataframes
### Current Behaviour The following example is from the docs (modified a bit for testing against my files): ```py from ydata_profiling import ProfileReport, compare train_df = pd.read_excel("datasets/Train.xlsx") train_report = ProfileReport(train_df, title="Train") test_df = pd.read_excel("datasets/Test....
open
2024-09-26T16:04:27Z
2024-10-15T10:25:45Z
https://github.com/ydataai/ydata-profiling/issues/1652
[ "question/discussion ❓" ]
alikleit
1
miguelgrinberg/Flask-SocketIO
flask
2,022
Multiple SocketIO instances connected to the same Flask server
**Describe the bug** I have an application which attempts to have two separate SocketIO instances over different paths (e.g., `localhost:80/socket.io` and `localhost:80/socket.io.2`). This seems to be not supported, as the _last_ `socketio.init_app(app)` will take precedence over what events the `test_client` will re...
closed
2023-11-06T10:45:13Z
2023-11-06T11:36:47Z
https://github.com/miguelgrinberg/Flask-SocketIO/issues/2022
[]
Fjf
1
pytest-dev/pytest-cov
pytest
217
locking the coverage file before use
Maybe, lock the coverage data file with something like https://pypi.org/project/filelock/ before reading/writing it? When using pytest-cov on Travis-CI with --cov-append, several jobs from the job matrix might be using the file concurrently.
open
2018-07-31T15:35:44Z
2020-06-27T17:02:26Z
https://github.com/pytest-dev/pytest-cov/issues/217
[]
notestaff
4
jazzband/django-oauth-toolkit
django
1,383
Generate the Grant without using the AuthorisationView
We are using DRF with react, so basically the backend is not accessible by the client, all backend calls are done via react, so there is no way to hit the authorize URL without DRF, the issue is when i request that URL from axios or Postman it gives me as a response the admin login despite the skip authorization is che...
open
2024-01-03T19:19:47Z
2024-01-03T19:19:47Z
https://github.com/jazzband/django-oauth-toolkit/issues/1383
[ "enhancement" ]
housUnus
0
encode/databases
sqlalchemy
83
'Delete' object has no attribute 'values'
It seems the **_build_query** method in core does not work with SQLAlchemy Core **Delete** statements. The Delete object does not have a values attribute, and will throw an exception if you attempt to pass one in: ```python stmt = table.delete().where(model.id = sa.bindparam('id')) values = [dict(id=1), dict(id=2), ...
open
2019-04-16T16:31:04Z
2019-06-20T10:29:00Z
https://github.com/encode/databases/issues/83
[ "bug" ]
szelenka
3
dynaconf/dynaconf
django
404
[bug] Duplicated text in ValidationError message
**Describe the bug** There is a duplicated string in the string for a `ValidationError` message when using combined validators. Logged output below includes some text from the error message, which is included in the reproducer ``` Configuration error in settings_file.yaml: combined validators failed combined vali...
closed
2020-09-04T15:52:19Z
2020-09-17T05:52:57Z
https://github.com/dynaconf/dynaconf/issues/404
[ "bug" ]
mshriver
0
JaidedAI/EasyOCR
pytorch
658
Pillow version depencency conflict
Currently installing via pip seems to cause `pillow` library required version conflict between dependencies `torchvision`and `sckikit-image`. **OS**: MacOS Catalina 10.15.7 **Pyhon version**: 3.8.2 Output of `pipdeptree` tool after `pip install easyocr` fails with error `imageio 2.14.1 requires pillow>=8.3.2, bu...
closed
2022-02-03T15:10:55Z
2022-03-11T22:20:37Z
https://github.com/JaidedAI/EasyOCR/issues/658
[]
mikko-kepit
2
autokey/autokey
automation
350
AppImage support
## Classification: Enhancement ## Reproducibility: Always Linux Distribution: openSUSE / All ## Summary It would be great to have an AppImage of AutoKey so that one could carry it everywhere :)
closed
2020-01-03T15:35:39Z
2024-10-18T05:10:32Z
https://github.com/autokey/autokey/issues/350
[ "enhancement", "wontfix", "installation/configuration" ]
maverick74
4
tensorflow/datasets
numpy
5,428
Higgs Dataset - ValueError on download_and_prepare()
**Short description** The Higgs dataset cannot be used, probably because it contains unexpected missing values. **Environment information** * Operating System: Windows 11 * Python version: 3.11.1 * `tensorflow-datasets`/`tfds-nightly` version: tensorflow-datasets 4.9.4 * `tensorflow`/`tf-nightly` version: ten...
open
2024-05-27T14:35:29Z
2024-06-07T09:43:01Z
https://github.com/tensorflow/datasets/issues/5428
[ "bug" ]
zwouter
1
roboflow/supervision
computer-vision
899
Cannot import certain packages
### Search before asking - [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar feature requests. ### Question In the collab; even after updation the errors looks like this. `--------------------------------------------------------------------------- At...
closed
2024-02-14T04:16:50Z
2024-02-14T04:20:13Z
https://github.com/roboflow/supervision/issues/899
[ "question" ]
NandiniLReddy
0
huggingface/datasets
pandas
7,443
index error when num_shards > len(dataset)
In `ds.push_to_hub()` and `ds.save_to_disk()`, `num_shards` must be smaller than or equal to the number of rows in the dataset, but currently this is not checked anywhere inside these functions. Attempting to invoke these functions with `num_shards > len(dataset)` should raise an informative `ValueError`. I frequently...
open
2025-03-10T22:40:59Z
2025-03-10T23:43:08Z
https://github.com/huggingface/datasets/issues/7443
[]
eminorhan
1
junyanz/pytorch-CycleGAN-and-pix2pix
computer-vision
744
output of style transfer turns out to be all approximately blue/inversed colors
I am trying to use the pretrained model of style transfer(monet, vangogh etc), but my own data images turn out to be all in a blue tone. Then I try to download and input the test images of style_monet and find out that the ouput images seem to be approximately invered in colors compared to the input images. e.g. a war...
open
2019-08-26T08:03:46Z
2022-09-23T15:55:40Z
https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/744
[]
YvonneTsang16
2
RayVentura/ShortGPT
automation
104
❓ [Question]: How can I run it without the GUI?
### Your Question Hello, I'm really interested in running it without the GUI just from the comand line, can anyone help me with that? Thank you so much!
open
2023-09-16T23:41:12Z
2023-09-27T21:07:15Z
https://github.com/RayVentura/ShortGPT/issues/104
[ "question" ]
AkramHamd
1
httpie/cli
rest-api
1,587
Pasting some curl requests in the URL field mostly fails
I think half of the cURL examples out there whether from API documentation or whatever curl requests ChatGPT spits out have a backslash at the end of the endpoint URL Example `curl -X POST https://login.microsoftonline.com/{tenant}/oauth2/v2.0/token \ -d "client_id={client_id}" \ -d "scope=https://ads.microso...
open
2024-07-11T13:39:31Z
2024-07-11T13:39:31Z
https://github.com/httpie/cli/issues/1587
[ "bug", "new" ]
SabbirAC
0
tensorflow/tensor2tensor
machine-learning
1,718
¿Why the scaling factor of the embedding layer by sqrt hidden size?
### Description I found that the hyperparameter multiply_embedding_mode can be chosen to scale the embeddings after they are looked up. I also found that this make sense as the initialization of the embeddings is a normal `(0, sqrt(hidden_dim))` in line 475 of modalities.py: ` tf.get_variable( var_name, [shard_...
open
2019-10-02T08:41:41Z
2020-01-07T01:21:13Z
https://github.com/tensorflow/tensor2tensor/issues/1718
[]
Nikotarou
1
tensorpack/tensorpack
tensorflow
1,417
Training stops at first epoch: Using fixed Tensor Input in Graph building
If you're asking about an unexpected problem which you do not know the root cause, use this template. __PLEASE DO NOT DELETE THIS TEMPLATE, FILL IT__: If you already know the root cause to your problem, feel free to delete everything in this template. ### 1. What you did: (1) **If you're using examples, what...
closed
2020-04-02T21:51:16Z
2020-04-03T01:12:23Z
https://github.com/tensorpack/tensorpack/issues/1417
[]
mdv3101
11
davidsandberg/facenet
computer-vision
629
Test time increases with every new request in API
Hi, I have made an API which sends a photo to test with an already trained model. It returns the probability of the highest match class in model. Every time I make a call to this API the response time increases exponentially with every subsequent call. When I stop the API and run it again the response time comes back ...
closed
2018-01-29T13:15:10Z
2018-02-02T10:26:01Z
https://github.com/davidsandberg/facenet/issues/629
[]
rakshitajain5
1
erdewit/ib_insync
asyncio
14
How can I retrieve FuturesOption() prices?
Hello! First of all I want to thank you for this beautiful piece of software. Would you please be so kind and give me an example of how to retrieve FuturesOptions prices and greeks? Or if you could add that to your notebooks that would be great. Am Looking at Option on the 10y Treasury Note Future (IB code is 'ZN')....
closed
2017-09-08T06:38:48Z
2017-09-08T09:01:24Z
https://github.com/erdewit/ib_insync/issues/14
[]
stnatter
1
jina-ai/serve
fastapi
6,089
Update the Twitter Logo.
**Describe your proposal/problem** In the footer of the docs, we are still using the old logo of Twitter. https://docs.jina.ai/ --- **Screenshots** ![image](https://github.com/jina-ai/jina/assets/97905637/b33e34ac-8ab6-4637-8eb9-c95ed5c8eb13) **Solution** Update the Logo of Twitter to latest logo (X). ...
closed
2023-10-18T18:32:57Z
2024-04-12T00:17:46Z
https://github.com/jina-ai/serve/issues/6089
[ "Stale" ]
niranjan-kurhade
20
mlfoundations/open_clip
computer-vision
780
How to reproduce the experiment of Figure 13 in "Learning Transferable Visual Models From Natural Language Supervision"
I tried to reproduce Figure 13 which compared CLIP zero-shot transfer and ResNet101 on banana class of the natural distribution shift datasets. However, my result has a gap between the results in the paper, I got only 23% on Imagenet-a. I think there might be something wrong with the logic of my code. I used zeroshot...
closed
2024-01-04T00:31:23Z
2024-05-10T18:38:24Z
https://github.com/mlfoundations/open_clip/issues/780
[]
wendioooo
1
encode/uvicorn
asyncio
1,151
support @asynccontextmanager app_factory functions
### Checklist <!-- Please make sure you check all these items before submitting your feature request. --> - [x] There are no similar issues or pull requests for this yet. - [x] I discussed this idea on the [community chat](https://gitter.im/encode/community) and feedback is positive. ### Is your feature relat...
open
2021-08-13T13:07:43Z
2025-01-09T14:28:33Z
https://github.com/encode/uvicorn/issues/1151
[]
graingert
10
developmentseed/lonboard
jupyter
256
Comparison: keplergl-jupyter
I think it would be great to provide a comparison to [keplergl-jupyter](https://docs.kepler.gl/docs/keplergl-jupyter) in the [Alternatives](https://developmentseed.org/lonboard/latest/alternatives/) section. The goals seem quite similar: both libraries utilize deck.gl to create performant interactive visualizations ...
closed
2023-11-21T18:54:52Z
2023-11-28T21:57:05Z
https://github.com/developmentseed/lonboard/issues/256
[]
DahnJ
2
d2l-ai/d2l-en
data-science
2,608
Can't install d2l 1.0.3 on python 3.12.4
The D2L Package version 1.0.3 requires numpy 1.23.5. Python 3.12.4/pip 24.1 consider it(numpy 1.23.5) depreciated and does not conclude the installation. It's needed to update the D2L package to depend on numpy 2.0.0. I'm waiting for it. Regards.
open
2024-06-25T09:40:51Z
2025-02-11T13:12:20Z
https://github.com/d2l-ai/d2l-en/issues/2608
[]
TheJeffah
8
postmanlabs/httpbin
api
342
New X-Request-Id header showing up in /get endpoint
Hello, we've been using httpbin.org to check that some of our proxy configuration is sending through the headers that we expect (and not ones that we don't expect). Previously, we were ensuring that we had properly "turned off" generation of an X-Request-Id header in our software which was working great. However, ht...
closed
2017-03-21T22:42:28Z
2019-11-17T22:42:35Z
https://github.com/postmanlabs/httpbin/issues/342
[]
dteirney
8
microsoft/nni
tensorflow
5,761
The process is stuck in the waiting status
**Describe the issue**: ![image](https://github.com/microsoft/nni/assets/30302418/1e87f652-663d-4f87-8e87-766916e91754) Anybody know how to solve it? **Environment**: - NNI version: - Training service (local|remote|pai|aml|etc): - Client OS: - Server OS (for remote mode only): - Python version: - PyTorch/T...
open
2024-03-21T07:12:35Z
2024-05-15T12:06:34Z
https://github.com/microsoft/nni/issues/5761
[]
534145232
1
gradio-app/gradio
data-science
10,266
Support for In-Memory Byte Transfer
Gradio is an excellent project, and I really enjoy using it to develop apps. However, I’ve encountered a problem: **due to user privacy concerns, my server is not allowed to store user input and output files** (e.g., images and audio) on the disk. To address this issue, I hope Gradio can support in-memory byte trans...
open
2024-12-30T11:48:38Z
2024-12-30T14:29:26Z
https://github.com/gradio-app/gradio/issues/10266
[ "enhancement", "needs designing" ]
CyberVy
2
pytest-dev/pytest-html
pytest
257
Need an ability to include "short test summary info" section into HTML report
Let have `test_1.py` test file with the following content: ```python #!/usr/bin/env python3.7 import pytest def test_1(): pass @pytest.mark.xfail(reason="Reason for expected failure") def test_2(): assert False @pytest.mark.xfail(reason="Reason for unexpected failure") def test_3(): pass ...
closed
2020-01-10T12:59:49Z
2024-01-15T09:26:50Z
https://github.com/pytest-dev/pytest-html/issues/257
[]
AshotVantsyan
3
CorentinJ/Real-Time-Voice-Cloning
tensorflow
651
Resource exhausted: OOM when allocating tensor with shape[36,512,1,702] and type float on /job:localhost/replica:0/task:0/device:GPU:0 by allocator GPU_0_bfc
hello. Please help me, I do not know how to solve my problem problem. I run and completed without errors `python synthesizer_preprocess_audio.py <datasets_root>` `python synthesizer_preprocess_embeds.py <datasets_root>/SV2TTS/synthesizer` but after typing `python synthesizer_train.py my_run <datasets_root>/SV2T...
closed
2021-02-05T17:17:12Z
2021-02-05T19:47:00Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/651
[]
tailname
4
adap/flower
scikit-learn
4,399
Update embedded-devices example for the latest PyTorch and JetPack
### Describe the type of feature and its functionality. Following @jafermarq's suggestion(#4381 , #4382 ), I am creating this new issue. How would you feel about providing guidelines for the build script? I’ve modified the build script (`build_jetson_flower_client.sh`) to use Flower (`flwr`) with JetPack 6.0 and ...
open
2024-10-30T02:27:03Z
2025-03-07T14:34:48Z
https://github.com/adap/flower/issues/4399
[ "feature request", "part: examples", "state: revision needed" ]
wwjang
6
onnx/onnx
deep-learning
5,807
Function infrastructure support for multiple target opset versions
# Bug Report ### Describe the bug See [this issue](https://github.com/microsoft/onnxruntime/issues/16438) for more context and background. (i) `SetContextDependentFunctionBodyBuilder` has a default value for the opset. But [the default behavior](https://github.com/onnx/onnx/blob/8a980683df9acbcb82dc3385fc7eb8cce...
closed
2023-12-14T23:52:03Z
2025-01-26T06:42:45Z
https://github.com/onnx/onnx/issues/5807
[ "bug", "stale", "contributions welcome" ]
gramalingam
0
piccolo-orm/piccolo
fastapi
332
Better safe guards when running tests
## Problem We have a custom command for running unit tests: ```bash # Simple usage: piccolo tester run # Or passing extra args to pytest: piccolo tester run --pytest_args="-s tests/routers/test_node.py::TestGetNodes" ``` It wraps pytest, and makes sure that `piccolo_conf_test.py` is being used instead o...
closed
2021-11-09T12:40:13Z
2021-11-09T15:09:33Z
https://github.com/piccolo-orm/piccolo/issues/332
[ "enhancement", "proposal - input needed" ]
dantownsend
1
marcomusy/vedo
numpy
923
How to keep the labels always facing vertically to the screen?
Hi Marco, I want all the labels to always face vertically towards the screen, how to do that? Thanks in advance~ ![image](https://github.com/marcomusy/vedo/assets/143779445/ae5a1031-7873-4bef-8e56-4502ffd7ba38)
closed
2023-09-01T06:14:25Z
2023-09-01T08:40:51Z
https://github.com/marcomusy/vedo/issues/923
[]
HuafengPython
1
strawberry-graphql/strawberry
graphql
3,343
Schema visibility filters
I'm opening a new issue to spec-out the API, and also write down what should we take into account to make this happen. Visibility filters will be a feature that allows to hide fields (or types) based on the current request. This is different from #3274 where we allow people to customise fields at schema build time. ...
open
2024-01-16T11:36:50Z
2025-03-20T15:56:34Z
https://github.com/strawberry-graphql/strawberry/issues/3343
[ "feature-request" ]
patrick91
0
JaidedAI/EasyOCR
deep-learning
426
Speed up the inference of easyocr model in GPU
First, Thanks to the great efforts of developer team at EasyOCR! I really need a help from you. Please help me providing info How do I increase the speed of Easyocr model inference in GPU ? Can we use the techniques like TensorRT or converting model into ONNX model to increase its speed ? Please help
closed
2021-05-07T08:56:22Z
2021-05-23T02:51:42Z
https://github.com/JaidedAI/EasyOCR/issues/426
[]
uditdixit11
3
jupyter-incubator/sparkmagic
jupyter
165
Make IPython version requirement less restrictive
Right now we're pinning to IPython v4.0.2, which is inconvenient for users running other IPython versions. 4.0.2 isn't even the most recent IPython, [4.1.1 is](https://pypi.python.org/pypi/ipython/4.1.1). We should make this a less strict inequality so that we can accept any version of IPython >= 4.0.2 (for example)....
closed
2016-02-16T22:22:37Z
2016-03-04T22:46:06Z
https://github.com/jupyter-incubator/sparkmagic/issues/165
[ "kind:bug", "installationdocs" ]
msftristew
2
xinntao/Real-ESRGAN
pytorch
714
How to finetune realesr-general-x4v3.pth?
Specifically, I've come across 2 obstacles: 1. The disciminator network for `realesr-general-x4v3.pth` is not provided. Can you please provide this model so that it can be finetuned along with the generator? Alternatively, is it acceptable to use `RealESRGAN_x4plus_netD.pth` as the discriminator? 2. What to do about ...
open
2023-10-27T13:24:37Z
2023-11-17T23:57:44Z
https://github.com/xinntao/Real-ESRGAN/issues/714
[]
bluelight773
2
QingdaoU/OnlineJudge
django
197
Feature Request:加入题目使用display_id排序功能
relate to #106。 请诸位帮忙看看,先给出一个可行的pull request也好。 不根据display id排序问题,题库显得很乱呀。
open
2018-12-01T05:41:10Z
2018-12-01T05:41:10Z
https://github.com/QingdaoU/OnlineJudge/issues/197
[]
RonTang
0
matterport/Mask_RCNN
tensorflow
2,844
Model response changes for different image formats during inference
The model basically is trained with image dataset of JPG and PNG formats and now in inference for the same image file with PNG it's giving a set of outputs which is different from JPG inferencing
open
2022-06-15T18:21:07Z
2022-06-15T18:21:07Z
https://github.com/matterport/Mask_RCNN/issues/2844
[]
ratva0717
0
pallets-eco/flask-sqlalchemy
sqlalchemy
1,021
Do you have an expectation of when https://github.com/pallets/flask-sqlalchemy/pull/613 will be released?
Hi, Firstly thanks for all your time and maintenance on this! Secondly, we are currently using a pinned version by commit of Flask-Sqlalchemy so we can get the functionality of https://github.com/pallets/flask-sqlalchemy/pull/613. We'd love to swap back to using an official release as we are missing out on all th...
closed
2021-12-03T18:32:45Z
2021-12-18T00:08:14Z
https://github.com/pallets-eco/flask-sqlalchemy/issues/1021
[]
idavidmcdonald
1
taverntesting/tavern
pytest
559
max_retries parameter is not taking tavern environment variable
Earlier (working) max_retries: 10 ---- now trying to implement env var --( giving error error) max_retries: !int "{tavern.env_vars.MAX_RETRY_TESTS}" SchemaError: <SchemaError: error code 2: Schema validation failed: - Value '<tavern.util.loader.IntToken object at 0x110043310>' is not of type 'int'. Path: '/sta...
closed
2020-06-04T09:09:37Z
2020-08-26T11:17:11Z
https://github.com/taverntesting/tavern/issues/559
[]
truptikant
1
sherlock-project/sherlock
python
2,280
ERROR: Bad Response
### Installation method Other (indicate below) ### Description Installation method: via blackarch when running 'sherlock <username>' I get the following error output: "A problem occurred while checking for an update: list index out of range ERROR: Bad response while accessing data file URL 'https://raw.github...
closed
2024-08-29T04:57:59Z
2024-08-29T16:34:45Z
https://github.com/sherlock-project/sherlock/issues/2280
[ "bug" ]
Cyph3rByte
4
mitmproxy/mitmproxy
python
6,888
Windows MSI installer does not clear old ARP entries on version upgrade
#### Problem Description Upon upgrading to a newer version of mitmproxy with the MSI installer while an older one is already installed, the installer does not clear the old Windows ARP entries. This leads to mitmproxy being listed multiple twice under the installed apps. Additionally the winget package manager do...
open
2024-06-01T17:46:57Z
2024-06-11T12:56:00Z
https://github.com/mitmproxy/mitmproxy/issues/6888
[ "help wanted", "os/windows", "area/infra", "kind/ux" ]
a-mnich
0
hyperspy/hyperspy
data-visualization
2,997
_Map_iterate is always Parallel
#### _Map_iterate is always Parallel Not sure if this is actually a bug or something that we should keep as the default. Regardless it should be better documented. As every array which is passed to _map_iterate is cast to a dask array it is always run in parallel. The `parallel` kwarg isn't really used and the `n...
closed
2022-08-25T14:41:35Z
2023-09-08T21:19:57Z
https://github.com/hyperspy/hyperspy/issues/2997
[ "type: bug" ]
CSSFrancis
1
graphql-python/graphene-mongo
graphql
162
Forced to use relay pagination on list of embedded documents?
Suppose I have this document structure: ```python class PersonModel(EmbeddedDocument): name = StringField() class HouseModel(Document): people = ListField(EmbeddedDocumentField(PersonModel)) ``` Then I define my MongoengineObjectTypes: ```python class Person(MongoengineObjectType): class M...
open
2020-11-06T02:48:53Z
2020-11-06T02:48:53Z
https://github.com/graphql-python/graphene-mongo/issues/162
[]
BeauGieskens
0
Lightning-AI/pytorch-lightning
machine-learning
20,310
`hparams` not loaded when loading checkpoint via LightningCLI
### Bug description Loading a model from a checkpoint using `LitModule.load_from_checkpoint(...)` loads the weights and stored hparams to initialize the model through its constructor. However, running the `LightningCLI` with the `--ckpt_path` parameter only loads the weights, not the hyperparameters. Debugging shows ...
open
2024-09-30T14:40:13Z
2024-09-30T14:40:28Z
https://github.com/Lightning-AI/pytorch-lightning/issues/20310
[ "bug", "needs triage", "ver: 2.4.x", "ver: 2.3.x" ]
YouRik
0
slackapi/python-slack-sdk
asyncio
1,192
Get Slack bot tokens after invoking manifest API?
Hey there, I'm creating a Slack bot that runs on AWS Lambda and I'd like to automate the process of setting up the bot. To create the AWS resources the bot will run on, I'm using AWS SAM templates to create a Lambda function and an API gateway. Then I'm using the new Slack manifest API to automate the creation ...
closed
2022-03-19T08:25:31Z
2022-11-12T13:33:27Z
https://github.com/slackapi/python-slack-sdk/issues/1192
[ "question" ]
nyavramov
3
QuivrHQ/quivr
api
3,214
Allowing configuration of the ingestion and retrieval pipelines via a yaml file
We want to enable users to configure the ingestion and retrieval pipelines via a yaml file. Users will be able to configure the actual steps to be included in the pipelines, as well as the configuration of each step. Below is an example of a yaml configuration file we are testing ``` ingestion_config: parser_config...
closed
2024-09-17T08:08:03Z
2024-09-23T16:11:09Z
https://github.com/QuivrHQ/quivr/issues/3214
[ "area: backend" ]
jacopo-chevallard
1
albumentations-team/albumentations
deep-learning
1,784
Instance Segmentation Mask/Bbox Relation
## Describe the bug I work on a usecase of instance segmentation with torchvision. In this case, i have : - image - bboxes - masks - labels I'have created an augmentation set with albumentation, something like that : ```python def augmentations(instance_item:dict): transform = A.Compose([ A.Lo...
open
2024-06-11T12:41:26Z
2024-07-04T15:42:11Z
https://github.com/albumentations-team/albumentations/issues/1784
[ "bug" ]
FrsECM
7
aimhubio/aim
tensorflow
2,485
Add support for Run progress reporting for remote tracking
## 🚀 Feature Support for `Run.report_progress()` `Run.report_successful_finish()` methods for runs with remote tracking. ### Motivation Currently stalled runs detection and notification is not supported for the runs with remote tracking. This is a big limitation making not possible to switch from embedded sto...
closed
2023-01-19T08:51:30Z
2023-02-10T12:56:11Z
https://github.com/aimhubio/aim/issues/2485
[ "type / enhancement", "phase / shipped", "area / SDK-storage" ]
alberttorosyan
0
sloria/TextBlob
nlp
36
suggestion: wrap goose
https://github.com/grangier/python-goose all python html -> text extractor
closed
2013-10-17T17:30:19Z
2013-10-18T23:36:39Z
https://github.com/sloria/TextBlob/issues/36
[]
darenr
1
hack4impact/flask-base
flask
99
same setUp function code for testing should be extracted
https://codeclimate.com/github/hack4impact/flask-base/tests/test_basics.py <img width="437" alt="screen shot 2017-01-28 at 4 27 14 pm" src="https://cloud.githubusercontent.com/assets/4250521/22399960/a89ea1dc-e576-11e6-8449-d7fcaf901df1.png">
closed
2017-01-28T21:26:19Z
2017-02-28T02:35:24Z
https://github.com/hack4impact/flask-base/issues/99
[]
yoninachmany
0
deezer/spleeter
deep-learning
503
[Discussion] Confusion about different sample rates
Hi! Until quite recently I assumed that the models were trained using 44100 Hz, since this is also the parameter in the config. I noticed that for some of the tracks I used, there is actually a difference between the mix and the summed sources. I read all the issues related to this (https://github.com/deezer/spleeter/...
closed
2020-10-09T09:29:12Z
2021-04-28T19:41:06Z
https://github.com/deezer/spleeter/issues/503
[ "question" ]
expectopatronum
4
babysor/MockingBird
deep-learning
489
找不到模型
模型已经放在特定的文件夹里面了,但是还是显示没有找到模型Error: Model files not found. Please download the models
open
2022-04-05T13:34:54Z
2022-04-05T13:34:54Z
https://github.com/babysor/MockingBird/issues/489
[]
ghost
0
pytest-dev/pytest-html
pytest
149
Custom metadata missing from environment table when all tests are skipped
If a user skips all tests then the 'Environment' table does not show in the html report.
closed
2018-03-02T13:50:18Z
2018-06-19T11:18:56Z
https://github.com/pytest-dev/pytest-html/issues/149
[ "bug", "help wanted" ]
mike-maliska
12
paperless-ngx/paperless-ngx
django
8,198
[BUG] Getting SIGKILL when uploading 5MB PDF file
### Description Getting SIGKILL error during upload. RAM usage is around 6GB out of 9GB at time of upload. Docker containers usage: ![image](https://github.com/user-attachments/assets/ae30f4d3-2e98-4c79-8259-5f046bb004e7) Host usage: ![image](https://github.com/user-attachments/assets/30e7ea7a-a27d-41d9-9ba4-...
closed
2024-11-05T09:30:10Z
2024-12-06T03:17:31Z
https://github.com/paperless-ngx/paperless-ngx/issues/8198
[ "not a bug" ]
kingp0dd
3