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
pydantic/pydantic-ai
pydantic
664
Gemini Agent run from cached context
I have a corpus that I cache using Gemini context caching. ``` from google.generativeai import caching cache = caching.CachedContent.create( model='models/gemini-1.5-flash-001', display_name='book_123_abc', # used to identify the cache system_instruction=( 'Your job is to answer the user\'s...
open
2025-01-13T06:06:57Z
2025-03-17T14:05:46Z
https://github.com/pydantic/pydantic-ai/issues/664
[ "question", "more info" ]
tranhoangnguyen03
11
dynaconf/dynaconf
django
1,212
feat: Implement the `@insert` converter
```bash export FOO_KEY="@insert 0 value" ``` must call ``` settings.KEY.insert(0, value) ```
closed
2024-12-20T18:32:15Z
2025-01-21T17:13:28Z
https://github.com/dynaconf/dynaconf/issues/1212
[ "Not a Bug", "RFC", "aap" ]
rochacbruno
0
Kludex/mangum
fastapi
38
Use with serverlessframework
Hi, is there any chance to use this easily as https://github.com/logandk/serverless-wsgi? Thank you
closed
2019-04-26T08:59:22Z
2019-07-21T01:49:20Z
https://github.com/Kludex/mangum/issues/38
[ "feature", "maybe" ]
1oglop1
2
jmcnamara/XlsxWriter
pandas
383
Applying format to row causes row to be hidden in sheet
Hi, I am using XlsxWriter to do apply row format and it applies it but hides the row that is formated. I am using Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:40:30) [MSC v.1500 64 bit (AMD64)] on win32, XlsXWriter 0.9.3 and Excel 16.0.7167.2060 Here is some code that demonstrates the problem: ``` python i...
closed
2016-10-06T02:09:14Z
2016-11-22T10:30:07Z
https://github.com/jmcnamara/XlsxWriter/issues/383
[ "question", "ready to close" ]
Freewilly3d
1
tfranzel/drf-spectacular
rest-api
1,212
`@extend_schema_field` type hint does not accept simple python types
**Describe the bug** https://drf-spectacular.readthedocs.io/en/latest/customization.html#step-3-extend-schema-field-and-type-hints states that > In case of basic types (e.g. str, int, etc.) a type hint is already sufficient. Which seems correct. However, the type hint does no represent that (see screenshot) **...
open
2024-03-23T21:55:36Z
2024-07-12T02:42:12Z
https://github.com/tfranzel/drf-spectacular/issues/1212
[]
Samuel-Therrien-Beslogic
6
coqui-ai/TTS
python
2,736
[Feature request] Multilingual YourTTS checkpoint: Dutch, French, German, Italian, Portuguese, Polish, Spanish, and English
<!-- Welcome to the 🐸TTS project! We are excited to see your interest, and appreciate your support! ---> **🚀 Feature Description** Adding a YourTTS checkpoint in the languages: Dutch, French, German, Italian, Portuguese, Polish, Spanish, and English **Solution** I have added a new checkpoint for the YourTTS ...
closed
2023-07-02T22:12:46Z
2024-12-22T19:11:39Z
https://github.com/coqui-ai/TTS/issues/2736
[ "feature request" ]
freds0
8
keras-rl/keras-rl
tensorflow
165
Why custom ringbuffer used instead of deque?
ERROR: type should be string, got "https://github.com/matthiasplappert/keras-rl/blob/d9e3b64a20f056030c02bfe217085b7e54098e48/rl/memory.py#L42 states:\r\nDo not use deque to implement the memory. This data structure may seem convenient but it is way too slow on random access. Instead, we use our own ring buffer implementation.\r\n\r\nNot sure why this is stated. I ran this quick test:\r\n`\r\n ring = RingBuffer(maxlen = 1000)\r\n \r\n start_time = time.time()\r\n for i in range(100000):\r\n ring.append(i)\r\n print(\"--- %s seconds ---\" % (time.time() - start_time))\r\n \r\n d = deque(maxlen=1000)\r\n start_time = time.time()\r\n for i in range(100000):\r\n d.append(i)\r\n print(\"--- %s seconds ---\" % (time.time() - start_time))\r\n \r\n start_time = time.time()\r\n for i in range(100000):\r\n l = ring[i%1000-1]\r\n print(\"--- %s seconds ---\" % (time.time() - start_time))\r\n \r\n start_time = time.time()\r\n for i in range(100000):\r\n l = d[i%1000]\r\n print(\"--- %s seconds ---\" % (time.time() - start_time))\r\n`\r\nand got this result:\r\n`\r\n--- 0.0608789920807 seconds ---\r\n--- 0.00712609291077 seconds ---\r\n--- 0.0430929660797 seconds ---\r\n--- 0.00617289543152 seconds ---\r\n`\r\n\r\nYou can see that the custom ringbuffer is significantly slower than the deque at adding or removing. Can someone explain to me what the comment is referring to exactly and why the ringbuffer is used?\r\n"
closed
2018-01-31T18:09:20Z
2019-06-05T07:50:28Z
https://github.com/keras-rl/keras-rl/issues/165
[ "wontfix" ]
kirkscheper
16
albumentations-team/albumentations
deep-learning
2,451
[Feature request] Add apply_to_images to BaseCropAndPad
open
2025-03-11T01:23:03Z
2025-03-11T01:28:02Z
https://github.com/albumentations-team/albumentations/issues/2451
[ "enhancement", "good first issue" ]
ternaus
0
flasgger/flasgger
api
414
Blueprint wise multiple swagger docs
Hello, I have a flask app with multiple blue prints. I want to create separate swagger document per blueprint as each blue print has been designed for different third party and we need to provide different swagger document link to each third party. My problem will get solved if I can add multiple `specs_route` f...
open
2020-07-03T13:16:59Z
2022-07-04T06:47:19Z
https://github.com/flasgger/flasgger/issues/414
[]
vivek-sculptsoft
2
autogluon/autogluon
computer-vision
4,800
`predict_proba_oof` will fail when setting `use_bag_holdout=True`?
### Discussed in https://github.com/autogluon/autogluon/discussions/4639 <div type='discussions-op-text'> <sup>Originally posted by **Crispy13** November 11, 2024</sup> `num_bag_folds=5` `use_bag_holdout=True` I gave the two to fit(), and `predict_proba_oof()` of the model failed. It said it used validati...
open
2025-01-15T01:30:41Z
2025-01-15T01:31:08Z
https://github.com/autogluon/autogluon/issues/4800
[ "bug", "module: tabular" ]
Innixma
0
gunthercox/ChatterBot
machine-learning
1,977
Feeding data using yml
How to write a yml file which consists same question in different styles but have same answer. Ex: Ques: Where is your location? Your location? what is your location? what location? Ans: It's India
closed
2020-05-19T05:17:06Z
2025-02-28T03:12:39Z
https://github.com/gunthercox/ChatterBot/issues/1977
[]
mahesh-D
1
ludwig-ai/ludwig
computer-vision
3,088
Support Polars as an alternative to Pandas for local execution
Will require some modifications to move from Pandas to Polars: https://pola-rs.github.io/polars-book/user-guide/coming_from_pandas.html Also, there is no support for Polars on Ray at this moment.
closed
2023-02-13T22:11:05Z
2024-10-20T01:44:23Z
https://github.com/ludwig-ai/ludwig/issues/3088
[ "feature" ]
tgaddair
0
deeppavlov/DeepPavlov
nlp
1,198
Can someone help me how can I implement 3rd party API calls in custom defined actions? Like get weather details or location with google API.
closed
2020-05-05T12:15:27Z
2020-05-29T06:48:27Z
https://github.com/deeppavlov/DeepPavlov/issues/1198
[]
Ahzam-Lathiya
7
deezer/spleeter
deep-learning
767
[Discussion] Help Docker on Synology
Hello, Could someone please explain me how to set up and use Spleeter under Synology Docker ? Add image => ok Add volume => ok Add env MODEL_DIRECTORY, AUDIO_OUT, AUDIO_IN => ok On start => error : ``` spleeter: error: the following arguments are required: command ``` Thanks
open
2022-05-23T20:36:49Z
2022-05-31T07:58:10Z
https://github.com/deezer/spleeter/issues/767
[ "question" ]
Silbad
1
Guovin/iptv-api
api
925
[Bug]: 输出的结果文件有问题,接口url不完整,丢失部分信息
### Don't skip these steps | 不要跳过这些步骤 - [x] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field | 我明白,如果我“故意”删除或跳过任何强制性的\*字段,我将被**限制** - [x] I am sure that this is a running error exception problem and will not submit any problems unrelated to this project | 我确定这是运行报错异常问题,...
closed
2025-02-21T13:54:34Z
2025-02-22T06:14:34Z
https://github.com/Guovin/iptv-api/issues/925
[ "bug" ]
zhycn9033
8
jadore801120/attention-is-all-you-need-pytorch
nlp
37
Document strings' style do not accord PEP8
As mentioned [here](https://www.python.org/dev/peps/pep-0008/#documentation-strings): > PEP 257 describes good docstring conventions. Note that most importantly, the """ that ends a multiline docstring should be on a line by itself, e.g.: > > """Return a foobang > > Optional plotz says to frobnicate the bizbaz fir...
closed
2017-12-20T07:50:03Z
2018-08-26T00:32:04Z
https://github.com/jadore801120/attention-is-all-you-need-pytorch/issues/37
[]
ghrua
1
minimaxir/textgenrnn
tensorflow
200
Inconsistency of dropout parameter usage
In `textgenrnn/textgenrnn/textgenrnn.py` line 226 and 248, there is an inconsistency of dropout parameter where at line 226, the `dropout` parameter is used if there is `context_labels` and `multi_gpu` is `True` to create model but at line 248 when there is no `context_labels` and `multi_gpu` is `True`. Is there a reas...
open
2020-07-07T11:36:02Z
2020-07-07T11:36:02Z
https://github.com/minimaxir/textgenrnn/issues/200
[]
fahadh4ilyas
0
serengil/deepface
machine-learning
766
how to resuing Face Embedding for verifying same face in different pictures
face verify method doesn't accept any embedding parameter by looking at the code we have replicate similar code to achieve this. Is there any out of the box method which does this.
closed
2023-06-01T15:37:41Z
2023-06-01T16:48:16Z
https://github.com/serengil/deepface/issues/766
[ "question" ]
surapuramakhil
1
babysor/MockingBird
deep-learning
104
Problem
Sometimes while taking it will just shut off.
closed
2021-09-27T15:50:37Z
2021-10-16T08:55:04Z
https://github.com/babysor/MockingBird/issues/104
[]
ghost
3
graphql-python/gql
graphql
346
Client.validate() with fetch_schema_from_transport=True
**Describe the bug** After initializing a client with the `fetch_schema_from_transport` set to `True`, I was hoping on writing some queries and then always validating them in my test suite. Unfortunately, it seems like calling `validate()` is only possible with a manually set schema, as I'm getting the error ``` Ca...
closed
2022-07-28T14:25:07Z
2022-07-28T15:06:56Z
https://github.com/graphql-python/gql/issues/346
[ "type: question or discussion" ]
Dzeri96
1
Significant-Gravitas/AutoGPT
python
9,408
Remove “secret” from block schema and frontend types
As a follow up to the tsc checks enablement, @pwuts noticed that we are secrets that still exist in the system. We should remove them from both sides of the api interface
open
2025-02-04T09:56:01Z
2025-02-04T09:56:01Z
https://github.com/Significant-Gravitas/AutoGPT/issues/9408
[]
ntindle
0
zihangdai/xlnet
nlp
1
Link to the paper
Can you post a link to the paper? Thanks!
closed
2019-06-20T00:25:13Z
2019-06-20T00:47:30Z
https://github.com/zihangdai/xlnet/issues/1
[]
HarshTrivedi
1
babysor/MockingBird
pytorch
48
kiwisolver是个什么东西。。。。
> Traceback (most recent call last): File "D:\code\Realtime-Voice-Clone-Chinese\demo_toolbox.py", line 2, in <module> from toolbox import Toolbox File "D:\code\Realtime-Voice-Clone-Chinese\toolbox\__init__.py", line 1, in <module> from toolbox.ui import UI File "D:\code\Realtime-Voice-Clone-Chinese\t...
closed
2021-08-26T01:12:20Z
2021-08-26T02:41:31Z
https://github.com/babysor/MockingBird/issues/48
[]
276562578
1
albumentations-team/albumentations
deep-learning
1,561
[Documentation] Add examples how to apply transforms to videos
We can apply the same transform to videos using `additional targets`. But no one knows about this methods => need example notebook
closed
2024-03-05T00:14:16Z
2024-10-31T02:18:37Z
https://github.com/albumentations-team/albumentations/issues/1561
[ "good first issue", "documentation" ]
ternaus
4
dynaconf/dynaconf
django
690
[bug] Dynamic variables are evaluated before environment variables populate values
**Describe the bug** When using dynamic variables, we have noticed that they receive the value set in the settings file(s) and are not updated when those referenced settings are overridden by an environment variable. **To Reproduce** Steps to reproduce the behavior: my_settings.yaml ```yaml SERVER: VERSION...
closed
2021-11-15T20:24:02Z
2023-07-13T19:11:02Z
https://github.com/dynaconf/dynaconf/issues/690
[ "bug", "LazyIssue" ]
JacobCallahan
2
FlareSolverr/FlareSolverr
api
594
[yggtorrent] (updating) The cookies provided by FlareSolverr are not valid
**Please use the search bar** at the top of the page and make sure you are not creating an already submitted issue. Check closed issues as well, because your issue may have already been fixed. ### How to enable debug and html traces [Follow the instructions from this wiki page](https://github.com/FlareSolverr/Fl...
closed
2022-11-21T23:09:08Z
2022-11-22T09:52:08Z
https://github.com/FlareSolverr/FlareSolverr/issues/594
[ "duplicate", "invalid" ]
spideytoto
1
LAION-AI/Open-Assistant
python
3,563
Model training developer setup
I'm trying to set up the developer environment to run supervised fine-tuning. When running `pip install -e ..` from this Readme https://github.com/LAION-AI/Open-Assistant/blob/main/model/model_training/README.md with `CUDA_HOME=/usr/local/cuda-11.4`, I get ``` × python setup.py egg_info did not run successfully....
closed
2023-07-11T17:15:43Z
2023-07-12T18:29:23Z
https://github.com/LAION-AI/Open-Assistant/issues/3563
[]
theophilegervet
1
autogluon/autogluon
data-science
4,529
[tabular] Enable pseudo_data in `fit` without requiring refit
We should allow users to specify labelled pseudo_data in the fit call to fit AutoGluon with the pseudo_data as extra training data (not part of validation). This should not include a redundant fit without the pseudo_data, which is what happens if the user instead calls `fit_pseudodata`. [Kaggle Discussion Reference]...
open
2024-10-07T21:21:47Z
2024-11-25T22:47:18Z
https://github.com/autogluon/autogluon/issues/4529
[ "enhancement", "module: tabular" ]
Innixma
0
dgtlmoon/changedetection.io
web-scraping
2,248
Error in `playwright-chrome` container `_request_retry:188 - No response from Chrome`
**Describe the bug** playwright-chrome fetcher doesn't work with current docker-compose.yml settings. https://github.com/dgtlmoon/changedetection.io/blob/master/docker-compose.yml **Version** `v0.45.16` **To Reproduce** ``` # docker-compose.yml version: '3.2' services: changedetection: image: g...
closed
2024-03-12T09:08:28Z
2024-03-12T13:32:06Z
https://github.com/dgtlmoon/changedetection.io/issues/2248
[ "triage" ]
MMquant
0
cvat-ai/cvat
pytorch
8,844
All outside skeleton trajectory
### Actions before raising this issue - [X] I searched the existing issues and did not find anything similar. - [x] I read/searched [the docs](https://docs.cvat.ai/docs/) ### Steps to Reproduce Create a skeleton trajectory with k keypoint. One of the keypoints is outside in all of the frames. Download the annotati...
open
2024-12-19T06:44:10Z
2025-01-31T13:56:57Z
https://github.com/cvat-ai/cvat/issues/8844
[ "bug" ]
ItayCoifman
0
nonebot/nonebot2
fastapi
2,505
Plugin: Waiter 插件
### PyPI 项目名 nonebot-plugin-waiter ### 插件 import 包名 nonebot_plugin_waiter ### 标签 [{"label":"waiter","color":"#ea5252"}] ### 插件配置项 _No response_
closed
2023-12-28T08:08:56Z
2023-12-28T08:18:35Z
https://github.com/nonebot/nonebot2/issues/2505
[ "Plugin" ]
RF-Tar-Railt
1
X-PLUG/MobileAgent
automation
43
PC-agent安装和使用流程不好用。
![屏幕截图 2024-08-26 145146](https://github.com/user-attachments/assets/3e6d4a7d-8d62-4a8f-b868-8fc1db9a670d) 报错
open
2024-08-26T06:53:04Z
2025-03-14T07:21:01Z
https://github.com/X-PLUG/MobileAgent/issues/43
[]
Weltberg
13
K3D-tools/K3D-jupyter
jupyter
58
Getting back screenshot as an image in python
It would be nice to be able to get a screenshot programmatically, i.e. `image = plot.screenshot()` and `plot.screenshot(filaname)`. Example: ``` # setup a plot plot = K3D(...) ... plot.display() ``` then retrieve a screenshot programmatically: ``` image = plot.screenshot() plot.close() # don't need this a...
closed
2017-06-01T09:42:13Z
2021-11-14T20:22:47Z
https://github.com/K3D-tools/K3D-jupyter/issues/58
[ "enhancement" ]
martinal
4
abhimishra91/insight
streamlit
6
Internal server error invoking NER predict end point
Hi, I have all other models working except for NER, which uses spaCy. `lexemes.bin` seems to be missing. I've used spaCy before, but not with an unpackaged model like this appears to be. Any pointers welcomed. This is my trace: ```console nginx_1 | 172.20.0.1 - - [26/Aug/2020:12:29:56 +0000] "GET /a...
open
2020-08-26T12:40:12Z
2020-09-18T13:04:49Z
https://github.com/abhimishra91/insight/issues/6
[ "bug" ]
asehmi
2
aleju/imgaug
machine-learning
555
Random seed / state examples?
I'm having trouble setting a random state or seed to create a reproducible augmenter. Using to_deterministic() does work, but I'm working with someone else's code so it would be difficult to use. Is it possible to set a seed or state and expect future calls to some augmenter to be repeatable? ( assuming none have us...
closed
2020-01-07T18:05:07Z
2020-01-07T23:35:46Z
https://github.com/aleju/imgaug/issues/555
[]
cclaan
3
jmcnamara/XlsxWriter
pandas
333
Feature request: Get worksheet by name
This would be a handy method where one is able to get a worksheet object from a workbook by supplying the name of the worksheet.
closed
2016-02-16T13:51:36Z
2020-01-08T13:53:59Z
https://github.com/jmcnamara/XlsxWriter/issues/333
[ "feature request", "short term" ]
bmarika
10
wkentaro/labelme
deep-learning
1,220
This application failed to start because no Qt platform plugin could be initialized
### Provide environment information qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "/home/pidl/.local/lib/python3.9/site-packages/cv2/qt/plugins" even though it was found. This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this prob...
open
2022-11-29T02:06:55Z
2025-02-25T13:15:03Z
https://github.com/wkentaro/labelme/issues/1220
[ "issue::bug" ]
haithienld
13
explosion/spaCy
machine-learning
13,550
Spacy 3.7.5 not working with python 3.12.4
## How to reproduce the behaviour * Install spacy 3.7.5 * Use Python 3.12.4 * Run the example from the homepage ```py # pip install -U spacy # python -m spacy download en_core_web_sm import spacy # Load English tokenizer, tagger, parser and NER nlp = spacy.load("en_core_web_sm") # Process whole documents ...
closed
2024-06-30T18:29:20Z
2024-10-15T00:02:52Z
https://github.com/explosion/spaCy/issues/13550
[]
Snawe
7
joouha/euporie
jupyter
48
Notebook object has no attribute inspect
When I try to use the `--autoinspect` swtich, whenever I try to type something I get the following errors. I'm using the standard ipython kernel. ![image](https://user-images.githubusercontent.com/118444583/205242337-072823d1-2450-4238-ab87-0a0d44516ff7.png)
closed
2022-12-02T07:48:18Z
2022-12-05T18:30:34Z
https://github.com/joouha/euporie/issues/48
[]
ghost
3
stanfordnlp/stanza
nlp
1,356
[QUESTION] How to use my own POS model when training a constituency model?
I am working on adding a constituency model for Icelandic. I used the constituency treebank I have for training a POS tagger but how do I use it when training the constituency model? The instructions say this: "To change to a specific model (such as if you build one yourself) use the --retag_model_path command line f...
open
2024-02-29T20:54:37Z
2025-01-22T01:16:26Z
https://github.com/stanfordnlp/stanza/issues/1356
[ "question" ]
ingunnjk
14
sqlalchemy/alembic
sqlalchemy
315
missing check for batch mode in render for create_foreign_key.
**Migrated issue, originally created by Ryan Lahfa ([@OzVessalius](https://github.com/OzVessalius))** In batch mode (for SQLite support), autogeneration doesn't work as expected with Foreign Key generation for example. Look at autogenerate/render.py:245 function, it should add `create_foreign_key` calls. The argument...
closed
2015-08-12T08:35:09Z
2018-11-30T15:35:00Z
https://github.com/sqlalchemy/alembic/issues/315
[ "bug", "autogenerate - rendering", "batch migrations" ]
sqlalchemy-bot
6
gradio-app/gradio
data-science
10,656
Allow permanent rewriting of chatbot history
- [x] I have searched to see if a similar issue already exists. **Is your feature request related to a problem? Please describe.** I'm trying to build a chatbot with multiple tabs (different histories). The issue I'm running into is when chatbot is an output, I can modify the history temporarily, but, when new inp...
closed
2025-02-22T13:33:03Z
2025-02-24T19:38:19Z
https://github.com/gradio-app/gradio/issues/10656
[]
brycepg
1
ScrapeGraphAI/Scrapegraph-ai
machine-learning
278
deepseek api not working
#222 there are 2 issues here: abstract_graph.py needs to import DeepSeek: from scrapegraphai.models.deepseek import DeepSeek Deepseek no embedding provided, so examples needs local embedding instead.
closed
2024-05-21T07:21:10Z
2024-05-21T08:37:09Z
https://github.com/ScrapeGraphAI/Scrapegraph-ai/issues/278
[]
zx9597446
1
globaleaks/globaleaks-whistleblowing-software
sqlalchemy
3,744
Focus on the first field of forms
### Proposal Please, would it be possible to put the focus on the first field (username) of the login forms and when 2FA code is requested? ### Motivation and context This improves usability and streamlines usage by not having to click on those fields.
open
2023-11-03T08:36:46Z
2024-01-18T14:29:39Z
https://github.com/globaleaks/globaleaks-whistleblowing-software/issues/3744
[ "T: Enhancement", "C: Client", "F: UI", "F: Accessibility" ]
v-j-f
8
SALib/SALib
numpy
405
Sobol Sensitivity Analysis with sampling from normal distribution
Hi, first, thank you very much for you library, which I have been using extensively in the last weeks! I am wondering, if I can sample my parameters for sensitivity analysis (Saltelli) a from a normal distribution instead of the upper and lower limit. Is this already possible or am I missing a point here? Ma...
closed
2021-03-08T12:51:06Z
2021-03-08T13:21:23Z
https://github.com/SALib/SALib/issues/405
[]
jellinge
3
OpenInterpreter/open-interpreter
python
1,128
open interpreter crash when using computer.display.view
### Describe the bug Every time the interpreter has to pull computer.display.view it crashes ### Reproduce Last login: Mon Mar 25 14:33:59 on ttys000 joniy@Air-de-Joao ~ % interpreter --os ▌ OS Control enabled > Open my music and tell me wh...
open
2024-03-25T18:04:38Z
2024-04-13T14:17:42Z
https://github.com/OpenInterpreter/open-interpreter/issues/1128
[ "Bug", "Help Required", "Triaged" ]
Jpkovas
7
mljar/mljar-supervised
scikit-learn
232
Remove Linear from mode Compete
1. The Linear algorithm can be sometimes very slow (for large datasets). 2. There are Neural Networks that represent a similar class of algorithm.
closed
2020-11-23T08:55:24Z
2020-11-23T09:03:40Z
https://github.com/mljar/mljar-supervised/issues/232
[ "enhancement" ]
pplonski
0
Evil0ctal/Douyin_TikTok_Download_API
web-scraping
123
How to download video from https://aweme.snssdk.com on colab
How to download from https://aweme.snssdk.com video on colab
closed
2022-12-09T17:42:59Z
2022-12-15T04:06:21Z
https://github.com/Evil0ctal/Douyin_TikTok_Download_API/issues/123
[ "help wanted" ]
tamkimd
1
tensorpack/tensorpack
tensorflow
1,010
No improvement for cifar10-resnet example with Squeeze-and-Excitation operation on cifar10
Hi, Thanks a lot for your great work. I'm trying to test performance of your implementation of Squeeze-and-Excitation ResNet on cifar10. I use your code 'cifar10-resnet.py' under the folder of '/examples/ResNet/' and make some changes to line 52-72 about residual block based on your se_resnet_bottleneck code in ...
closed
2018-12-12T22:24:31Z
2018-12-12T23:31:04Z
https://github.com/tensorpack/tensorpack/issues/1010
[ "unrelated" ]
KunpengLi1994
4
ray-project/ray
deep-learning
51,619
[core] Split giant ray core C++ targets into small ones(plasma store)
As of now, ray core uses [bazel](https://bazel.build/) as build system, which encourages small targets. Ray core is not following the best practice, which bundles all related files into several giant targets This issue is part of the #50586 and we're going to working on `plasma store`.
open
2025-03-22T07:09:46Z
2025-03-22T07:19:40Z
https://github.com/ray-project/ray/issues/51619
[ "enhancement", "core" ]
kenchung285
2
benbusby/whoogle-search
flask
211
[FEATURE] anti-captcha support.
with stuff that can get blocked easily, anti-captcha support would be huge. invidious has it implemented perfectly, and it allows public instances to be used with out any major rate-limiting. just an idea. thanks!
open
2021-02-26T17:36:27Z
2025-01-02T04:09:11Z
https://github.com/benbusby/whoogle-search/issues/211
[ "enhancement" ]
ghost
17
huggingface/datasets
deep-learning
7,149
Datasets Unknown Keyword Argument Error - task_templates
### Describe the bug Issue ```python from datasets import load_dataset examples = load_dataset('facebook/winoground', use_auth_token=<YOUR USER ACCESS TOKEN>) ``` Gives error ``` TypeError: DatasetInfo.__init__() got an unexpected keyword argument 'task_templates' ``` A simple downgrade to lower `data...
closed
2024-09-13T10:30:57Z
2025-03-06T07:11:55Z
https://github.com/huggingface/datasets/issues/7149
[]
varungupta31
3
drivendataorg/cookiecutter-data-science
data-science
40
Rename src/model to src/models - Should be plural right?
closed
2016-07-19T13:38:54Z
2016-07-21T14:06:53Z
https://github.com/drivendataorg/cookiecutter-data-science/issues/40
[]
ohenrik
1
ymcui/Chinese-LLaMA-Alpaca
nlp
323
损失值大小
请问下,经过训练的后的损失值大小大约是多少呢?我自己在从头pretrain 13B模型,不确定最终loss会收敛到多少,想参考下你的loss带下。
closed
2023-05-12T11:02:54Z
2023-05-23T22:02:23Z
https://github.com/ymcui/Chinese-LLaMA-Alpaca/issues/323
[ "stale" ]
guozhiyao
7
aminalaee/sqladmin
asyncio
828
Internal Server Error relationship field
### Checklist - [X] The bug is reproducible against the latest release or `master`. - [X] There are no similar issues or pull requests to fix it yet. ### Describe the bug Internal Server Error ________ When I try to place in column_list a column from my model A "TipoAutoridadesPrestador" defined as "relationship"...
open
2024-10-09T06:14:31Z
2024-10-14T15:32:55Z
https://github.com/aminalaee/sqladmin/issues/828
[]
jrujano
3
voila-dashboards/voila
jupyter
522
Run "cells below" in voila app
I created an `ipywidgets` Button that runs a Javascript command to run cells below (`IPython.notebook.execute_cells_below()`). This works in the notebook, but not in the Voila app. Is there a way to make this work? The use case is that, I have a dropdown list that allows selection of a file, and graphs below the ...
open
2020-01-23T06:52:32Z
2020-06-14T16:57:58Z
https://github.com/voila-dashboards/voila/issues/522
[]
iedr
5
allure-framework/allure-python
pytest
552
Allure-pytest: Ci runs only tests from tests/acceptance folder
#### I'm submitting a ... - [x] bug report - [ ] feature request Current [CI build setup](https://github.com/allure-framework/allure-python/blob/master/.github/workflows/build.yaml ) for allure-pytest does not include execution of integration tests - ex. https://github.com/allure-framework/allure-python/pull/...
closed
2021-01-25T14:10:37Z
2021-03-02T10:12:40Z
https://github.com/allure-framework/allure-python/issues/552
[]
dgusakov
0
psf/requests
python
6,778
Request for py3.7 support
Hi Team, We are on an application which still supports py3.7 and it would for a year. I understand it is already EOL, but it is more of a compatibility decision. With the recent vulnerability found in v2.31.0, which was py3.7 supported, we need to fix this, but we can't upgrade as the newer versions don't support...
closed
2024-08-01T03:03:10Z
2024-08-01T03:03:21Z
https://github.com/psf/requests/issues/6778
[ "Question/Not a bug", "actions/autoclose-qa" ]
anishj-crest
1
KevinMusgrave/pytorch-metric-learning
computer-vision
403
Tensors missmatch in inference model
Hi, I run into two issues: 1. If I'm running: `inference_model.train_knn(dataset, batch_size=bs)` where `bs != 1` I'm getting: `RuntimeError: stack expects each tensor to be equal size, but got [3, 64, 145] at entry 0 and [3, 65, 64] at entry 1` But when `bs=1`,it's OK (64 is my embedding dim) 2. When I'm r...
closed
2021-12-15T10:09:53Z
2021-12-16T21:27:29Z
https://github.com/KevinMusgrave/pytorch-metric-learning/issues/403
[ "question" ]
shaikaz
6
mwaskom/seaborn
data-science
3,624
sns.histplot does not draw correct bins when using log for y-axis.
I'm stuck on a frustrating issue. There is a Jupyter Notebook that I created about a year ago. It contains some histograms. When running the notebook again I noticed that now the drawing of the bins are broken when using log for the y-axis. Unfortunately I don't know what python and library versions I was using then...
open
2024-01-28T21:02:51Z
2025-01-07T11:06:35Z
https://github.com/mwaskom/seaborn/issues/3624
[]
SimonHedrich
4
MycroftAI/mycroft-core
nlp
2,493
Importing python modules fail on skill load
## Be clear about the software, hardware and version you are running Running on Arch Linux, latest version. ## Try to provide steps that we can use to replicate the Issue 1. Create skill with mycroft-msk 2. Change to fallback skill 3. Create other python files in the same directory as the skill 4. Import th...
closed
2020-03-06T14:56:20Z
2020-03-06T19:09:51Z
https://github.com/MycroftAI/mycroft-core/issues/2493
[]
DAMO238
7
aminalaee/sqladmin
fastapi
586
UI: use checkbox for `bool` type
Need some small fix to display boolean tablr fields using **checkbox** instead of **drop box list**.
closed
2023-08-21T09:54:39Z
2023-08-21T10:46:51Z
https://github.com/aminalaee/sqladmin/issues/586
[]
anton-petrov
1
ARM-DOE/pyart
data-visualization
646
ImportError: No module named io
**Compiled the source code:** [kvenkatesa@nid00030 pyart]$ python setup.py build running build running build_py running build_ext **Installed in my home directory:** [kvenkatesa@nid00030 pyart]$ python setup.py install --user running install running bdist_egg running egg_info writing pyart.egg-info/PKG-I...
closed
2017-04-10T22:16:29Z
2017-06-19T22:39:16Z
https://github.com/ARM-DOE/pyart/issues/646
[]
ucrkarthik
25
openapi-generators/openapi-python-client
fastapi
219
Support discriminator for polymorphic types and support oneOf
**Is your feature request related to a problem? Please describe.** When an endpoint returns `oneOf` several different classes, currently it returns an empty object. Sample component snippet: ```yaml ReturnedObject: oneOf: - $ref: '#/components/schemas/PolymorphicType' - $ref: '#/comp...
closed
2020-10-16T14:29:17Z
2023-08-13T02:10:38Z
https://github.com/openapi-generators/openapi-python-client/issues/219
[ "✨ enhancement", "🍭 OpenAPI Compliance" ]
bowenwr
1
huggingface/datasets
deep-learning
6,788
A Question About the Map Function
### Describe the bug Hello, I have a question regarding the map function in the Hugging Face datasets. The situation is as follows: when I load a jsonl file using load_dataset(..., streaming=False), and then utilize the map function to process it, I specify that the returned example should be of type Torch.ten...
closed
2024-04-06T11:45:23Z
2024-04-11T05:29:35Z
https://github.com/huggingface/datasets/issues/6788
[]
Klein-Lan
2
aiortc/aiortc
asyncio
406
apprtc example broken
The script works up until the aiortc peer is supposed to join the room. This message is what I'm getting ``` AppRTC room is 8152665571 https://appr.tc/r/8152665571 Track video received Traceback (most recent call last): File "apprtc.py", line 125, in <module> loop.run_until_complete( File "/home/dev/m...
closed
2020-08-17T16:48:23Z
2020-08-25T13:08:35Z
https://github.com/aiortc/aiortc/issues/406
[]
DevinBayly
2
Miserlou/Zappa
flask
1,816
AuthorizationScopes not supported
## Context When using Cognito, API Gateway provides the authorizationScopes property on the API Gateway Method to match against scopes in the access token. https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationscopes > A list of auth...
open
2019-03-14T22:55:13Z
2020-06-08T22:48:58Z
https://github.com/Miserlou/Zappa/issues/1816
[]
urluba
3
huggingface/datasets
computer-vision
6,538
ImportError: cannot import name 'SchemaInferenceError' from 'datasets.arrow_writer' (/opt/conda/lib/python3.10/site-packages/datasets/arrow_writer.py)
### Describe the bug While importing from packages getting the error Code: ``` import os import torch from datasets import load_dataset, Dataset from transformers import ( AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig, HfArgumentParser, TrainingArguments, pipeline, ...
closed
2023-12-27T13:31:16Z
2024-01-03T10:06:47Z
https://github.com/huggingface/datasets/issues/6538
[]
Sonali-Behera-TRT
15
onnx/onnx
pytorch
6,697
Shape inference fails when the `pads` in Pad is a constant with value_ints
https://github.com/onnx/onnx/blob/a6b828cdabfb5c0f8795d82e6a3851224acecd10/onnx/defs/tensor/utils.cc#L481-L485 Fails when pads is a constant with value_ints. It can only be `value` right now.
open
2025-02-12T02:25:23Z
2025-02-19T17:32:45Z
https://github.com/onnx/onnx/issues/6697
[ "bug", "module: shape inference" ]
justinchuby
0
slackapi/bolt-python
fastapi
293
Why does Bolt create new theads to handle requests? [question]
I'm using Flask for my production app with Gunicorn as the HTTP server. Bolt is [handling requests in independent threads](https://github.com/slackapi/bolt-python/blob/dafc833e9cbc39edb87528e8e782422e87fefc5b/slack_bolt/app/app.py#L390) and there doesn't appear to be a way to disable this. This causes issues with poole...
closed
2021-04-12T13:54:21Z
2021-04-12T18:40:41Z
https://github.com/slackapi/bolt-python/issues/293
[ "question" ]
alexaisok
0
jupyter-incubator/sparkmagic
jupyter
426
0.12.3 in pip / conda?
pip and conda are currently installing 0.12.1 I'm getting the BadUserConfigurationException that was fixed in 0.12.3 Any chance of getting the installers updated?
closed
2017-12-15T17:50:07Z
2017-12-15T18:28:43Z
https://github.com/jupyter-incubator/sparkmagic/issues/426
[]
DruidSmith
1
coqui-ai/TTS
deep-learning
3,685
[Bug] Unable to install Coqui TTS
### Describe the bug Could not install out of the box Coqui TTS due to missing setup tools command. ### To Reproduce ```bash git clone https://github.com/coqui-ai/TTS pip install -e .[all,dev,notebooks] -error here ``` ### Expected behavior Successful installation. ### Logs ```shell Collecting sudachipy!=0.6....
closed
2024-04-14T03:14:23Z
2024-10-13T20:16:35Z
https://github.com/coqui-ai/TTS/issues/3685
[ "bug" ]
WarpWing
9
MorvanZhou/tutorials
numpy
59
condtioal sentence seems unnecessary
https://github.com/MorvanZhou/tutorials/blob/3e018ce7c78bda95ed89f45b7500632bd0ddc8e5/tensorflowTUT/tf22_scope/tf22_RNN_scope.py#L57
closed
2017-11-17T07:03:27Z
2017-11-22T10:05:39Z
https://github.com/MorvanZhou/tutorials/issues/59
[]
raytroop
0
AirtestProject/Airtest
automation
542
图像识别匹配问题,竖屏下截取的桌面图标,能匹配,横屏就匹配不了
(请尽量按照下面提示内容填写,有助于我们快速定位和解决问题,感谢配合。否则直接关闭。) **(重要!问题分类)** * 测试开发环境AirtestIDE使用问题 -> https://github.com/AirtestProject/AirtestIDE/issues * 控件识别、树状结构、poco库报错 -> https://github.com/AirtestProject/Poco/issues * 图像识别、设备控制相关问题 -> 按下面的步骤 **描述问题bug** (简洁清晰得概括一下遇到的问题是什么。或者是报错的traceback信息。) 图像识别匹配问题,竖屏下截取的桌面图标,进行识别...
closed
2019-09-26T06:09:23Z
2019-09-26T09:06:12Z
https://github.com/AirtestProject/Airtest/issues/542
[]
bill68551632
2
CorentinJ/Real-Time-Voice-Cloning
deep-learning
851
recycle problem
hope u will solve it soon, (base) E:\typroject\try4\Real-Time-Voice-Cloning>python encoder_train.py my_run ./dataset/SV2TTS/encoder 2021-09-19 21:11:04.425284: I tensorflow/stream_executor/platform/default/dso_loader.cc:53] Successfully opened dynamic library cudart64_110.dll ...
closed
2021-09-20T04:46:45Z
2021-09-21T04:57:25Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/851
[]
sahil-dhuri
2
jonaswinkler/paperless-ng
django
1,603
[Other] Apache reverse proxy error "403 Forbidden"
Moin, first of all: Thanks for the amazing work! I have some problems with the dockerized setup and Apache reverse proxy (for adding SSL/Letsencrypt). Using this Image: https://hub.docker.com/r/jonaswinkler/paperless-ng I use Apache as reverse proxy and not Nginx because Nginx can not do LDAP-Auth which I need...
closed
2022-02-06T12:34:33Z
2022-02-11T16:10:17Z
https://github.com/jonaswinkler/paperless-ng/issues/1603
[]
egabosh
12
miguelgrinberg/Flask-Migrate
flask
406
ImportError: cannot import name 'MigrateCommand'
I started getting an error in a repo that I'm maintaining: ``` Traceback (most recent call last): File "registry/manage.py", line 3, in <module> from flask_migrate import Migrate, MigrateCommand ImportError: cannot import name 'MigrateCommand' ``` This is how the command is used in code: ``` app = Flas...
closed
2021-05-17T18:32:24Z
2021-07-26T07:16:39Z
https://github.com/miguelgrinberg/Flask-Migrate/issues/406
[ "question" ]
yulihav
4
jonra1993/fastapi-alembic-sqlmodel-async
sqlalchemy
57
Question about Oso
Hello, first of all, I'd like to thank you for this useful project example. I find the codebase very neat. One thing that I noticed is that you're using Oso library for authorization but I don't see it being initialised anywhere in the Python codebase. Can you please point me to where you initialise Oso, load the ma...
closed
2023-03-22T19:29:55Z
2023-03-23T07:10:13Z
https://github.com/jonra1993/fastapi-alembic-sqlmodel-async/issues/57
[]
mateoradman
1
jmcnamara/XlsxWriter
pandas
789
Issue with Excel auto-filling Table references in formula with row reference (@) after opening workbook
Hi, Firstly, I can't thank you enough for all your hard work. This library has made my life so much easier. It is a fantastic resource and I am so grateful for all of the hard work you do. Thank you so much. I am using XlsxWriter to summarize data on a table I wrote. In particular, I am trying to find distinc...
closed
2021-02-11T21:21:38Z
2021-02-12T13:03:32Z
https://github.com/jmcnamara/XlsxWriter/issues/789
[]
deployment-ian
7
Textualize/rich
python
2,542
Rich Live display specified console, but the style of console is not used.
Edit: `live = Live(auto_refresh=False, console=console) doesn't work . ```python from rich.text import Text from rich.console import Console from rich.live import Live console = Console(style="blue on white") live = Live(auto_refresh=False, console=console) live.start() console.print(Text("Hello from c...
closed
2022-09-23T12:37:56Z
2022-09-27T04:04:21Z
https://github.com/Textualize/rich/issues/2542
[]
LampV
5
seleniumbase/SeleniumBase
pytest
3,361
Need help about Profile Chrome
How to run uc_driver with UC mode as specific profile Like: ``` from seleniumbase import Driver from seleniumbase import undetected user_data_dir = "C:\\Users\\ripssas\\AppData\\Local\\Google\\Chrome\\User Data" option = undetected.ChromeOptions() option.add_argument(r"--user-data-dir=user_data_dir") option....
closed
2024-12-22T15:54:56Z
2024-12-24T13:10:41Z
https://github.com/seleniumbase/SeleniumBase/issues/3361
[ "duplicate", "invalid usage", "UC Mode / CDP Mode" ]
thienha1
4
mitmproxy/mitmproxy
python
6,164
block specific cookie
#### Problem Description the header `cookie` can be used multiple times in a request, I need to block a specific cookie #### Steps to reproduce the behavior: 1. set `modify_headers` to `['/~h user_session/cookie/']` 2. request a page 3. for matching requests ALL `cookie` headers are removed #### System Info...
closed
2023-06-04T13:16:29Z
2023-09-01T00:10:31Z
https://github.com/mitmproxy/mitmproxy/issues/6164
[ "kind/triage" ]
ghost
0
babysor/MockingBird
pytorch
197
Hindi Version REQUIRED
Can also support language like Hindi by the use of Inltk.
open
2021-11-07T14:49:21Z
2021-11-07T14:49:21Z
https://github.com/babysor/MockingBird/issues/197
[]
Mihir-Bhasin
0
plotly/plotly.py
plotly
4,554
`fillgradient` doesn't work when `renderer=vscode` is used on notebook
According to the [documentation](https://plotly.com/python/filled-area-plots/), the latest version `5.20` includes `fillgradient` parameter for `go.Scatter`. However it only works when `renderer` is set to `browser`. Here goes the code (I am using the example provided in the documentation itself). ```python import p...
closed
2024-03-20T08:38:50Z
2024-03-20T08:45:47Z
https://github.com/plotly/plotly.py/issues/4554
[]
acmoudleysa
1
lukas-blecher/LaTeX-OCR
pytorch
55
Runtime error while running
I am getting this following error: ```RuntimeError: Error(s) in loading state_dict for ResNetV2: size mismatch for head.fc.weight: copying a param with shape torch.Size([21, 1024, 1, 1]) from checkpoint, the shape in current model is torch.Size([22, 1024, 1, 1]). size mismatch for head.fc.bias: copyin...
closed
2021-11-20T15:03:12Z
2021-11-21T11:33:11Z
https://github.com/lukas-blecher/LaTeX-OCR/issues/55
[]
pritam-dey3
2
Zeyi-Lin/HivisionIDPhotos
fastapi
126
v1.2.3中dpi选项的输出结果不正确
刚测试了一下最新版,有dpi设置了,但结果下载后用ps打开,仍然是72像素/英寸,无论dpi设置是多少,图像尺寸还是一样大。不同dip应该不一样像素输出。
closed
2024-09-14T16:54:05Z
2024-09-15T19:42:44Z
https://github.com/Zeyi-Lin/HivisionIDPhotos/issues/126
[]
dscao
3
labmlai/annotated_deep_learning_paper_implementations
deep-learning
146
Bug in SA for DDPM UNet?
https://github.com/labmlai/annotated_deep_learning_paper_implementations/blob/05632f9f8e0de4657c210a13954a81f9556fd1ed/labml_nn/diffusion/ddpm/unet.py#L188 According to my understanding of Self-Attention, the softmax operation should be done along the `j` axis in einsum? https://github.com/labmlai/annotated_deep_...
closed
2022-09-07T17:28:50Z
2022-10-13T11:16:47Z
https://github.com/labmlai/annotated_deep_learning_paper_implementations/issues/146
[ "bug" ]
FutureXiang
3
matplotlib/matplotlib
matplotlib
29,337
KeyError: 'buttons' when plotting with matplotlib / ipympl backend in Jupyter Notebook within VSCode presumably due to typo
Using a current install of Python and notebook, matplotlib, ipympl etc. on Windows 11 within VSCode, ``` %matplotlib ipympl #%matplotlib widget import matplotlib.pyplot as plt ``` and ``` fig, ax = plt.subplots() ... ax.plot(...) ``` raise `KeyError: 'buttons'` in `c:\Users\user\AppData\Local\Progr...
closed
2024-12-17T16:49:00Z
2024-12-18T06:51:44Z
https://github.com/matplotlib/matplotlib/issues/29337
[ "status: downstream fix required" ]
gnbl
6
quantumlib/Cirq
api
6,402
`cirq.Simulator` final_state_vector is not normalized
**Description of the issue** The final state vector of `cirq.Simulator.simulate` may acccumulate enough numerical error that it may not have unit norm. similar to #5916 **How to reproduce the issue** ```py3 q0 = cirq.LineQubit(0) circuit = cirq.Circuit( cirq.S(q0), cirq.H(q0), cirq.S(q0), c...
closed
2024-01-08T21:27:56Z
2024-12-20T00:42:10Z
https://github.com/quantumlib/Cirq/issues/6402
[ "good first issue", "kind/bug-report", "good for learning" ]
NoureldinYosri
9
jonaswinkler/paperless-ng
django
1,234
[Other] Fresh CapRover Install has issues
More to follow. I just wanted to get this posted. I will add details when I have time. I did a fresh install using CapRover. The first thing I am attempting to do is add a tag. (No documents yet.) I am getting a 403 `2021-08-16T12:43:47.324297013Z [2021-08-16 07:43:47,323] [WARNING] [django.request] Forbidden: /a...
closed
2021-08-16T12:50:18Z
2021-08-18T21:55:13Z
https://github.com/jonaswinkler/paperless-ng/issues/1234
[]
tinjaw
0
deepfakes/faceswap
machine-learning
736
no grapsh is show train warning
Logs: Loading... 05/29/2019 16:25:18 INFO Log level set to: INFO Using TensorFlow backend. 05/29/2019 16:25:21 INFO Model A Directory: C:\Users\lipeng\faceswap\workspace\data_dst\aligned 05/29/2019 16:25:21 INFO Model B Directory: C:\Users\lipeng\faceswap\workspace\data_src\aligned 05/29/2019 16:25:21...
closed
2019-05-29T06:55:21Z
2019-05-31T08:08:27Z
https://github.com/deepfakes/faceswap/issues/736
[]
fortunelee
0
keras-team/keras
machine-learning
20,591
Strange results for gradient tape : Getting positive gradients for negative response
### TensorFlow version 2.11.0 ### Custom code Yes ### OS platform and distribution Windows ### Python version 3.7.16 Hello, I'm working with some gradient based interpretability method ([based on the GradCam code from Keras ](https://keras.io/examples/vision/grad_cam/) ) , and I'm running int...
closed
2024-12-04T13:16:53Z
2025-01-05T02:06:23Z
https://github.com/keras-team/keras/issues/20591
[ "stat:awaiting response from contributor", "stale", "type:Bug" ]
liamaltarac
4
pytest-dev/pytest-qt
pytest
105
Setup/teardown exception capturing as early/late as possible to catch all exceptions
I noticed sometimes, an exception happens and PyQt5 calls `abort`, even with `pytest-qt`. It seems this happens when an exception happens in a virtual Qt method during setup or teardown, e.g. with a `yield_fixture` or when `qtbot` calls `close()` on the widget. I think `pytest-qt` should do the exception capturing se...
closed
2015-10-23T18:49:07Z
2015-10-30T11:50:50Z
https://github.com/pytest-dev/pytest-qt/issues/105
[]
The-Compiler
1
yzhao062/pyod
data-science
198
无监督如何部署
Hi,赵越大佬 有个问题,我用pyod可以发现异常样本呢,但是我如何部署无监督模型到系统里面呢,求指导。
open
2020-05-28T10:02:02Z
2020-06-03T06:39:16Z
https://github.com/yzhao062/pyod/issues/198
[]
xuyunlong123
2
mars-project/mars
scikit-learn
3,366
[BUG]Build fails under Windows platform
**Bug description** The MSVC team recently added Mars as part of RWC testing to detect compiler regression. Seems the project will fail to build under Windows due to error C1189: #error: unsupported platform. Could you please take a look? **To Reproduce** 1. Open VS2022 x64 Tools command . 2. git clone C:\gitP\T...
open
2024-05-11T08:18:43Z
2024-05-14T02:39:33Z
https://github.com/mars-project/mars/issues/3366
[]
brianGriifin114
1
Anjok07/ultimatevocalremovergui
pytorch
1,384
出bug了 赶紧修修吧
Last Error Received: Process: VR Architecture The application was unable to allocate enough GPU memory to use this model. Please close any GPU intensive applications and try again. If the error persists, your GPU might not be supported. Raw Error Details: OutOfMemoryError: "CUDA out of memory. Tried to all...
open
2024-06-02T07:37:15Z
2024-07-02T03:03:36Z
https://github.com/Anjok07/ultimatevocalremovergui/issues/1384
[]
jacksonYeewifezhou
1
ipython/ipython
data-science
13,966
Nothing works in embedded mode after moving from 8.10 to 8.11
# Issue I am embedding IPython in my command line application. v8.5 to v8.10 work fine but after upgrading to v8.11 nothing works. The command line starts up, but every command results in `Exception 'NoneType' object has no attribute 'check_complete'` Simple act of starting up the application and pressing 'Enter...
closed
2023-03-07T19:12:39Z
2023-08-28T18:18:56Z
https://github.com/ipython/ipython/issues/13966
[ "bug" ]
akhileshraju
7
alyssaq/face_morpher
numpy
61
Image RGB array must be uint8 or floating point; found int32
When using background=average, got this: root@bfa4a21e5b8e:/app# python face_morpher/facemorpher/averager.py --work=/app/work/tmp/avg --out=work/result/1.png --background=average <class 'numpy.ndarray'> Averaged 3 work Image RGB array must be uint8 or floating point; found int32
open
2020-03-27T20:42:45Z
2021-06-25T17:18:26Z
https://github.com/alyssaq/face_morpher/issues/61
[]
ivan-uskov
3
deeppavlov/DeepPavlov
tensorflow
1,221
Alphabet File
Hi, I wanna know if possible, what does the alphabet.pkl file contain and where can i obtain it, because i need that file. Best regards.
closed
2020-05-19T07:21:05Z
2020-07-03T10:34:31Z
https://github.com/deeppavlov/DeepPavlov/issues/1221
[]
vRicardo98
1
bauerji/flask-pydantic
pydantic
46
when response_many is set, can't handle returning errors
When a route that has `repononse_many` wants to return a proper error code on a, flask-pydantic crashes with This should return a 400 error ```python @app.route("/<myid>", methods=["GET"]) @pydantic_validate(response_many=True) def return_many(myid: str): if not_in_db(myid): return jsonify({"succe...
open
2022-01-05T11:44:21Z
2022-10-17T14:00:57Z
https://github.com/bauerji/flask-pydantic/issues/46
[]
yfried
2