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
nolar/kopf
asyncio
1,021
How to invoke kopf when only operating against cluster level resources
### Keywords cluster only ### Problem When kopf is invoked without either --namespace or --all-namespaces, the following warning is emitted: ``` /opt/aws-auth/.venv/lib/python3.11/site-packages/kopf/_core/reactor/running.py:176: FutureWarning: Absence of either namespaces or cluster-wide flag will become an error ...
open
2023-03-29T00:08:28Z
2023-07-23T21:05:48Z
https://github.com/nolar/kopf/issues/1021
[ "question" ]
iciclespider
2
idealo/image-super-resolution
computer-vision
133
documentation not working
documentation not working i tried to follow this prediction but i was not able to make it work at al... class module or weights always having problems. https://idealo.github.io/image-super-resolution/tutorials/prediction/ please update it.
open
2020-07-15T18:56:57Z
2020-07-20T09:30:31Z
https://github.com/idealo/image-super-resolution/issues/133
[]
sinanisler
1
horovod/horovod
deep-learning
3,595
Torch test deadlock on MacOS CI
Just observed on master: https://github.com/horovod/horovod/runs/7232373749?check_suite_focus=true ``` ... [1,0]<stdout>:test_torch.py::TorchTests::test_horovod_allreduce_average [1,1]<stdout>: [1,1]<stdout>:test_torch.py::TorchTests::test_horovod_allreduce_average [1,1]<stdout>:PASSED[1,0]<stdout>:PASSED[1,1]<st...
open
2022-07-07T13:22:39Z
2022-10-12T11:30:16Z
https://github.com/horovod/horovod/issues/3595
[ "bug" ]
maxhgerlach
2
MagicStack/asyncpg
asyncio
922
TypeError: an integer is required (got type asyncpg.Record)
<!-- Thank you for reporting an issue/feature request. If this is a feature request, please disregard this template. If this is a bug report, please answer to the questions below. It will be much easier for us to fix the issue if a test case that reproduces the problem is provided, with clear instructions on ...
closed
2022-06-03T03:59:07Z
2022-06-03T12:42:44Z
https://github.com/MagicStack/asyncpg/issues/922
[]
danizen
2
microsoft/nni
deep-learning
4,910
Accessing/regenerating the model objects used in the trials
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: The ability to programmatically instantiate a model object using the ModelSpace class given the set of choices. **Why is this needed**: 1- For better testing! The user cannot test the ModelSpace modul...
open
2022-06-03T01:14:09Z
2022-06-15T02:46:35Z
https://github.com/microsoft/nni/issues/4910
[ "new feature", "user raised", "NAS" ]
aminabedi
1
laughingman7743/PyAthena
sqlalchemy
545
Feature request: support for positional parameter substitution
Thank you for a wonderful library and for your work maintaining it! One feature I hope can be considered for future development is implementing `?` style param support. Athena supports [parameterized queries](https://docs.aws.amazon.com/athena/latest/ug/querying-with-prepared-statements.html) using the `?` character...
closed
2024-05-15T17:43:40Z
2024-12-26T07:46:56Z
https://github.com/laughingman7743/PyAthena/issues/545
[]
paulgrow-octane
1
autokey/autokey
automation
329
Now that Autokey google forums is closed, is there a place where we could share our scripts with others?
## Classification: (Pick one of: Bug, Crash/Hang/Data Loss, Performance, UI/Usability, Feature (New), Enhancement) ## Reproducibility: (Pick one of: Always, Sometimes, Rarely, Unable, I Didn't Try) ## Version AutoKey version: Used GUI (Gtk, Qt, or both): If the problem is known to be present in m...
closed
2019-11-27T05:45:08Z
2019-11-28T16:55:02Z
https://github.com/autokey/autokey/issues/329
[ "documentation" ]
stepnjump
1
litestar-org/litestar
api
3,554
Unexpected behavior from `module_to_os_path`
### Description The file [litestar/utils/module_loader.py](https://github.com/litestar-org/litestar/blob/84f51c8afc3203cd4914922b2ec3c1e92d5d40ba/litestar/utils/module_loader.py#L21) contains a function definition for `module_to_os_path`. Assuming I've understood the code comments, the purpose of this code is to re...
closed
2024-06-09T17:27:27Z
2025-03-20T15:54:45Z
https://github.com/litestar-org/litestar/issues/3554
[ "Bug :bug:" ]
ghferrari
5
ultralytics/ultralytics
pytorch
19,574
Use ray to tune
### Search before asking - [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and found no similar bug report. ### Ultralytics YOLO Component Train ### Bug Hi guys, I need your help with an issue I'm facing when using Ray to tune my YOLO model. When using Ray, som...
closed
2025-03-08T08:28:18Z
2025-03-24T09:03:21Z
https://github.com/ultralytics/ultralytics/issues/19574
[ "bug", "enhancement" ]
csn223355
12
skypilot-org/skypilot
data-science
4,836
Ulimit low on MacOS, but incorrect way to update it
``` Open file descriptor limit (256) is low. File sync to remote clusters may be slow. Consider increasing the limit using `ulimit -n <number>` or modifying system limits. ``` But on MacOS 15 you can not do that anymore ``` $ ulimit -n 4096 $ launchctl limit maxfiles maxfiles 256 unlimited ```
open
2025-02-27T09:53:37Z
2025-02-27T10:28:55Z
https://github.com/skypilot-org/skypilot/issues/4836
[ "good first issue", "interface/ux", "good starter issues" ]
kesitrifork
0
wandb/wandb
data-science
8,942
[Bug]: log_params flag in the wandb_callback() of the lightgbm integration is not working
### Describe the bug <!--- Describe your issue here ---> the `log_params` looks not to be passed to the `_WandbCallback` constructor, I think the following fix is needed ```diff - return _WandbCallback(define_metric) + return_WandbCallback(log_params, define_metric) ``` See: https://github.com/wandb/wandb/blob/4e7...
closed
2024-11-25T05:41:39Z
2024-12-03T22:31:52Z
https://github.com/wandb/wandb/issues/8942
[ "ty:bug", "a:app" ]
i-aki-y
3
dsdanielpark/Bard-API
api
136
Unable to install Bard-Api - Windows 10 - Python 3.9.1
Hello! I downloaded the code and unzipped it to a particular folder then in a windows 10 command prompt I navigate to the folder and entered the command: python -m pip install bard-api --user I get this error message: ERROR: Could not find a version that satisfies the requirement bard-api (from versions: none) ...
closed
2023-07-24T11:04:06Z
2023-11-26T21:57:30Z
https://github.com/dsdanielpark/Bard-API/issues/136
[]
Alexo47
7
rthalley/dnspython
asyncio
1,093
with `raise_on_no_answer=False`, dns.resolver.Answer objects evaluate inconsistently depending on what sections are present in a reply
**Describe the bug** See the code example: basically certain cases using `raise_on_no_answer=False` produce astonishing behavior when trying to evaluate the result of the dns.resolver.resolve() method. Some SOA cases do not return an answer section for the rtype, but will return SOA in an authority section and poss...
closed
2024-06-18T13:39:15Z
2024-06-18T15:06:40Z
https://github.com/rthalley/dnspython/issues/1093
[ "Will Not Fix" ]
wesinator
2
zama-ai/concrete-ml
scikit-learn
646
Feature Request: Add support for embedding layers
Hey, I already created [an issue](https://huggingface.co/zama-fhe/concrete-ml-encrypted-deeplearning/discussions/1) on Huggingface. One of the issues can be closed if you need to. I want to use `concerete-ml` for the Transformer model, such as BERT. Do you have any resources to look at or advice you could give ...
open
2024-04-24T14:22:48Z
2024-05-06T11:39:36Z
https://github.com/zama-ai/concrete-ml/issues/646
[]
dopc
4
pallets-eco/flask-sqlalchemy
flask
1,366
Relationship between classes with __bind_key__ defined throws InvalidRequestError
When defining a relationship between two classes via association class and query to one of them it raise the InvalidRequestError exception. Define a minimal flask app, with six (three as default and three with bind key) classes and a second bind for the configuration. ```python from flask import Flask from fla...
closed
2024-08-09T04:31:45Z
2024-08-09T06:59:18Z
https://github.com/pallets-eco/flask-sqlalchemy/issues/1366
[]
graedo-ogd
1
PokemonGoF/PokemonGo-Bot
automation
5,538
[Issue] Considering all pokemon as VIP
### Expected Behavior Treat only unseen, or IV above 1500 or CP above 0.9 or listed pokemon as VIP ### Actual Behavior Treated Meowth and Mankey as VIP ### Your FULL config.json (remove your username, password, gmapkey and any other private info) http://pastebin.com/m5JJJjVf ### Output when issue occurred [2016-09-...
closed
2016-09-19T02:17:17Z
2016-09-19T03:39:15Z
https://github.com/PokemonGoF/PokemonGo-Bot/issues/5538
[]
pranavperfect
3
feder-cr/Jobs_Applier_AI_Agent_AIHawk
automation
1,085
[BUG]: <Not able to open the new window which redirects to linkedin login>
### Describe the bug Hi, please fix the error am facing as i followed one of the youtube @17:01 min video https://www.youtube.com/watch?v=gdW9wogHEUM&t=1s am not getting lib_resume_building and gpt_resume_builder options in lib package and am using gemini API key .donnot how to sort this out even i fixed some of the ...
open
2025-02-04T15:35:00Z
2025-02-04T15:35:39Z
https://github.com/feder-cr/Jobs_Applier_AI_Agent_AIHawk/issues/1085
[ "bug" ]
kavuthavarapuh
0
allenai/allennlp
nlp
5,354
the last decoding step miscalculated in the forward_loss of CopyNet?
<!-- Please fill this template entirely and do not erase any of it. We reserve the right to close without a response bug reports which are incomplete. If you have a question rather than a bug, please ask on [Stack Overflow](https://stackoverflow.com/questions/tagged/allennlp) rather than posting an issue here. --...
closed
2021-08-11T03:17:29Z
2021-08-19T18:10:08Z
https://github.com/allenai/allennlp/issues/5354
[ "bug" ]
GregoryZeng
10
Yorko/mlcourse.ai
numpy
584
Assignment 4 fix is not published
There was a fix made at https://github.com/Yorko/mlcourse.ai/commit/e5227683e961d0a3327d0dca3b76964858b26098 but it was not merged to /jupyter_english/assignments_spring2019/assignment4_time_series.ipynb
closed
2019-04-01T15:36:06Z
2019-04-01T15:42:14Z
https://github.com/Yorko/mlcourse.ai/issues/584
[]
chekan-o
1
pykaldi/pykaldi
numpy
208
Reading UBM models in PyKaldi
Hi, it's one of the best kaldi wrappers. I want to use this to extract i-vectors, I already have the fullUBM in fubm.mdl or fubm.ubm formats (from KALDI). However, I couldn't find in the documentation how to read this type of models. @dogancan Any ideas, please? :)
open
2020-02-28T09:46:02Z
2020-03-02T18:09:19Z
https://github.com/pykaldi/pykaldi/issues/208
[]
jvel07
1
InstaPy/InstaPy
automation
6,124
App download page
<!-- Did you know that we have a Discord channel ? Join us: https://discord.gg/FDETsht --> <!-- Is this a Feature Request ? Please, check out our Wiki first https://github.com/timgrossmann/InstaPy/wiki --> ## Expected Behavior Instapy logs in ## Current Behavior A app download and login page is added between the c...
closed
2021-03-19T08:09:10Z
2021-07-21T05:18:36Z
https://github.com/InstaPy/InstaPy/issues/6124
[ "wontfix" ]
RoneFRANCE
1
PaddlePaddle/models
nlp
4,846
请问使用LAC分词,怎么返回词语在原句子中的位置信息?(tokenize)
例如在jieba分词中可以这么用: jieba.tokenize(u'永和服装饰品有限公司', mode='search') word 永和 start: 0 end:2 word 服装 start: 2 end:4 word 饰品 start: 4 end:6 word 有限 start: 6 end:8 word 公司 start: 8 ...
open
2020-09-11T08:27:52Z
2024-02-26T05:10:12Z
https://github.com/PaddlePaddle/models/issues/4846
[]
LeeYongchao
1
keras-team/keras
tensorflow
20,324
Reason for the recently added shape restriction in MultiHeadAttention
Hello, Wondering why is there a restriction on the input shape of `query` and `value` to have a matching final dimension? This blocks having cross-attention to a source that has a different shape than query, unless adding an extra projection layer. Given that all input tensors (`query`, `key`, `value`) are immedi...
closed
2024-10-04T19:48:49Z
2024-10-14T17:36:53Z
https://github.com/keras-team/keras/issues/20324
[ "type:support", "keras-team-review-pending" ]
aarbabi
4
jupyter-widgets-contrib/ipycanvas
jupyter
277
Images with alpha fail: OSError: cannot write mode RGBA as JPEG
Trying to add an alpha chanel to the [example in the docs](https://ipycanvas.readthedocs.io/en/latest/drawing_images.html?highlight=put_image_data#from-a-numpy-array) leads to an error `OSError: cannot write mode RGBA as JPEG` on Mac OS X: ```python import numpy as np from ipycanvas import Canvas x = np.linsp...
closed
2022-06-15T23:37:23Z
2022-08-19T07:51:14Z
https://github.com/jupyter-widgets-contrib/ipycanvas/issues/277
[]
mforbes
0
deepset-ai/haystack
nlp
8,818
LLM-based Evaluators ask for an API key when run with local LLMs
**Describe the bug** When I run the llm-based evaluators with local llms, I get an error saying that OPENAI API key is missing even though no key is needed. **Error message** ```bash ... None of the following authentication environment variables are set: ('OPENAI_API_KEY',) ``` **Expected behavior** `api_key` param s...
closed
2025-02-05T15:47:31Z
2025-02-24T08:59:54Z
https://github.com/deepset-ai/haystack/issues/8818
[ "type:bug", "type:documentation", "P2" ]
bilgeyucel
3
3b1b/manim
python
2,110
Export with transparency on Windows
### Describe the bug I have spent a couple of days working on my animations and exporting them as .mp4 for testing purposes. I thought switching to a .mov format with transparent background would be as easy as adding the -t flag to my manim command, but apparently it’s not. `manim -qh myfile.py BounceImage ` w...
open
2024-03-16T13:35:05Z
2024-03-16T13:35:05Z
https://github.com/3b1b/manim/issues/2110
[ "bug" ]
stephanedebove
0
hzwer/ECCV2022-RIFE
computer-vision
289
RIFE-large trained model link??
Where can I find the RIFE-large pretrained model? I can only see RIFE and RIFE-m models in the github repository.
open
2022-11-10T18:50:18Z
2022-11-15T03:45:46Z
https://github.com/hzwer/ECCV2022-RIFE/issues/289
[]
abhishri-medewar
3
matplotlib/matplotlib
data-visualization
28,813
[Bug]: pip install matplotlib fails
### Bug summary Cannot install matplotlib ### Code for reproduction ```Python python3 -m pip install matplotlib --user --verbose --no-build-isolation Using pip 24.2 from /usr/local/lib/python3.9/dist-packages/pip (python 3.9) Collecting matplotlib Using cached matplotlib-3.9.2.tar.gz (36.1 MB) Running...
closed
2024-09-12T23:56:20Z
2024-09-13T21:43:37Z
https://github.com/matplotlib/matplotlib/issues/28813
[]
tokamac
10
2noise/ChatTTS
python
809
Achieving Over 3x Faster with TensorRT on Windows
I accelerated ChatTTS to over 3x speed with TensorRT, and it can be used with a simple one-click extraction on Windows. [ChatTTSPlus](https://github.com/warmshao/ChatTTSPlus)
closed
2024-10-31T00:43:41Z
2024-11-03T11:58:57Z
https://github.com/2noise/ChatTTS/issues/809
[ "ad" ]
warmshao
0
neuml/txtai
nlp
654
Update HFTrainer to add PEFT support
This change will add additional configuration to train models using the [PEFT](https://github.com/huggingface/peft) library and [bitsandbytes](https://github.com/TimDettmers/bitsandbytes). After this change, the trainer will support any of the methods supported by PEFT such as [LoRA](https://arxiv.org/abs/2106.09685...
closed
2024-01-31T15:15:50Z
2024-01-31T18:53:04Z
https://github.com/neuml/txtai/issues/654
[]
davidmezzetti
0
howie6879/owllook
asyncio
64
redis密码问题
REDIS_PASSWORD= 990990 无效 REDIS_PASSWORD='990990' 无效 REDIS_PASSWORD= '990990' 无效 REDIS_PASSWORD= '990990' 无效 测试以上都密码错误
closed
2019-04-14T14:56:52Z
2019-04-22T05:43:20Z
https://github.com/howie6879/owllook/issues/64
[]
anson1007
1
ymcui/Chinese-LLaMA-Alpaca
nlp
167
有人量化了13B模型可以提供下载链接的吗
感谢您使用Issue提问模板,请按照以下步骤提供相关信息。我们将优先处理信息相对完整的Issue,感谢您的配合。 *提示:将[ ]中填入x,表示打对钩。* ### 问前必查项目 - [ ] 由于相关依赖频繁更新,请确保按照[README.md](https://github.com/ymcui/Chinese-LLaMA-Alpaca)中的相关步骤执行 - [x] 我已在Issue中对问题进行了搜索,没有找到相似问题和解决方案 - [ ] 我已阅读README中的[FAQ章节](https://github.com/ymcui/Chinese-LLaMA-Alpaca#faq),没有找到相似问题和解决方案 -...
closed
2023-04-16T14:03:37Z
2023-05-23T22:02:46Z
https://github.com/ymcui/Chinese-LLaMA-Alpaca/issues/167
[ "stale" ]
lianggaoquan
22
allenai/allennlp
pytorch
4,785
GumbelMaxSampler should return examples in descending order of log probability
Should be a simple one-line fix somewhere.
closed
2020-11-12T00:38:08Z
2020-11-12T06:19:21Z
https://github.com/allenai/allennlp/issues/4785
[]
epwalsh
0
mwaskom/seaborn
matplotlib
2,937
documentation is not reachable
"NET::ERR_CERT_COMMON_NAME_INVALID"
closed
2022-08-05T08:46:10Z
2022-08-05T23:03:35Z
https://github.com/mwaskom/seaborn/issues/2937
[]
dryguz
4
HIT-SCIR/ltp
nlp
244
pyltp依存句法求助
各位老师好,我在使用pyltp进行中文句法分析后,想获取弧头和弧尾,但是pyltp中只有head和relation两个弧相关信息,不知道能否帮忙解决? 比如:系统->流畅,通过pyltp(arc.head)只能获取流畅,我想要同时获取系统,即我想获取整条弧的弧头和弧尾。 希望得到帮助,万分感谢!
closed
2017-08-02T08:25:17Z
2020-06-25T11:20:37Z
https://github.com/HIT-SCIR/ltp/issues/244
[]
licunlin2012
20
sinaptik-ai/pandas-ai
data-science
591
Code not showing on Databricks notebook
### 🐛 Describe the bug Hi, you can see in the image below that when I try to use `show_code = True`, there is no code shown in Databricks. How could I solve this? Thanks Francesco ![image](https://github.com/gventuri/pandas-ai/assets/92798799/8e3e0e00-ee07-4c29-82d3-6923cd7d81de)
closed
2023-09-25T09:07:22Z
2023-09-30T20:32:25Z
https://github.com/sinaptik-ai/pandas-ai/issues/591
[]
FrancescoRettondini
6
Miserlou/Zappa
django
1,502
Tag release commits with version in repository for easier code browsing/inspection
## Context This issue is git / github / repository / release process related, rather than a bug in zappa code. ## Expected Behavior Most projects tag their release commits with the version so that changes/diffs/checkouts of code is made easy for users. E.g. if I want to see code changes made between versions (or b...
closed
2018-05-10T08:40:22Z
2018-08-08T15:05:01Z
https://github.com/Miserlou/Zappa/issues/1502
[ "good-idea" ]
mattaustin
3
stanfordnlp/stanza
nlp
1,280
Missing language model for Livvi
**Describe the bug** The [doc](https://stanfordnlp.github.io/stanza/available_models.html) lists Livvi as a supported language, but there are no available language model to be downloaded. **To Reproduce** ``` import stanza stanza.download('olo') Downloading https://raw.githubusercontent.com/stanfordnlp/stanza...
closed
2023-08-31T21:05:33Z
2023-09-17T13:37:26Z
https://github.com/stanfordnlp/stanza/issues/1280
[ "bug" ]
BLKSerene
13
oegedijk/explainerdashboard
dash
6
Seperating global vs local explanation and adding what-if analysis under local explanation?
As the title suggests, is there a plan of adding such functionality?
closed
2020-10-02T12:49:21Z
2020-10-08T10:17:01Z
https://github.com/oegedijk/explainerdashboard/issues/6
[]
rezacsedu
4
horovod/horovod
machine-learning
3,303
Is there an example of distributed training using only CPU
I want to try distributed training with multiple machines using CPU. What command should I use to start it? Is there an example for reference
closed
2021-12-08T10:08:25Z
2021-12-08T10:33:15Z
https://github.com/horovod/horovod/issues/3303
[]
liiitleboy
0
lepture/authlib
flask
359
Why is refresh_token method unavailable on FASTAPI/Starlette client? How to enable it?
**Describe the bug** Unable to access ```refresh_token``` method from FAST API starlette client ```python from authlib.integrations.starlette_client import OAuth oauth = OAuth() provider = oauth.register( "cognito", client_id=cognito_config.client_id, client_secret=cogn...
closed
2021-06-22T15:16:08Z
2021-11-02T21:49:24Z
https://github.com/lepture/authlib/issues/359
[ "bug" ]
dcs3spp
2
google-research/bert
tensorflow
594
how many data does it require to do sentence pair classification task?
Hi, my task is do sentence pair semantic meaning classification, 0 means the two sentences represent the same meaning, 1 means yes. For example, I want to eat breakfast, I need to take my breakfast, 1. How many data should I prepare for this task? Thank you.
open
2019-04-22T07:19:47Z
2019-04-23T01:52:22Z
https://github.com/google-research/bert/issues/594
[]
leolle
1
psf/requests
python
6,871
"I use the same proxy for requests to 300 websites from china, and httpx and requests behave completely differently."
same code ,same proxies! success rate verry diffrrence this is requests success rate! <img width="988" alt="image" src="https://github.com/user-attachments/assets/8e3c3338-c71b-4818-8d59-1e2a339f1738" /> <img width="1209" alt="image" src="https://github.com/user-attachments/assets/6f791157-e544-4d4c-a213-7d1839...
closed
2025-01-15T05:46:49Z
2025-01-20T13:15:32Z
https://github.com/psf/requests/issues/6871
[]
wjsw1781
2
tqdm/tqdm
jupyter
1,072
NameError: name 'IProgress' is not defined
Jupyter notebook. Downloading MNIST. Installed ipywidgets. _Can_ import IntProgress from ipywidgets. _Can't_ import IProgress from ipywidgets, because there's no such thing. I have no idea how to fix this. The error message says to update jupyter and ipywidgets, but they're both freshly installed and fully up to dat...
closed
2020-11-10T00:06:52Z
2022-02-28T15:58:26Z
https://github.com/tqdm/tqdm/issues/1072
[ "p0-bug-critical ☢", "question/docs ‽", "submodule-notebook 📓", "c1-quick 🕐" ]
mercertom
3
pytest-dev/pytest-cov
pytest
238
--no-cov on pytest 4.0.0 produces warning
Using pytest-cov 2.6.0 and pytest 4.0.0, running `py.test --no-cov` logs a long traceback with a warning that `config.warn` is deprecated: ``` % pipenv run py.test --no-cov ======================================================================================================== test session starts =================...
closed
2018-11-15T13:00:21Z
2018-11-15T14:43:24Z
https://github.com/pytest-dev/pytest-cov/issues/238
[ "bug" ]
sybrenstuvel
1
opengeos/leafmap
jupyter
482
Toolbar frozen with Geemap and Leafmap
<!-- Please search existing issues to avoid creating duplicates. --> ### Environment Information - leafmap version: 0.22.0 - Python version: 3.10 - Operating System: Mac OS ### Description When I go to use the toolbar it freezes and makes me unable to use the toolbar functionality. Anyone else havin...
closed
2023-06-22T19:03:56Z
2023-06-29T03:50:20Z
https://github.com/opengeos/leafmap/issues/482
[ "bug" ]
codefean
1
blacklanternsecurity/bbot
automation
2,075
Badsecrets erroring upon a specific URL
**Describe the bug** Badsecrets dies upon hitting a certain URL. **Expected behavior** Process the event successfully. **BBOT Command** \<Redacted\> **OS, BBOT Installation Method + Version** \<Redacted\> **BBOT Config** \<Redacted\> **Logs** [DBUG] badsecrets.finished: False [DBUG] ...
closed
2024-12-09T16:48:45Z
2024-12-10T05:06:22Z
https://github.com/blacklanternsecurity/bbot/issues/2075
[ "bug" ]
ausmaster
10
jina-ai/clip-as-service
pytorch
588
Is there a way to get the model to output the attention weights too?
Is there a way to get the model to output the attention weights too?
open
2020-09-11T11:43:27Z
2020-09-11T11:43:52Z
https://github.com/jina-ai/clip-as-service/issues/588
[]
lucas0
0
huggingface/transformers
deep-learning
36,012
[feature request] Callback handler event after forward pass in Trainer
While working on training (LORA) some model, I wanted to track memory usage in reference with meaningful events: 1. after forward pass - to track activation memory consumption 2. after forward pass - to track gradient and optimizer memory consumption 3. after zero grad - to make sure everything is released and we go b...
closed
2025-02-03T10:07:43Z
2025-03-18T18:03:08Z
https://github.com/huggingface/transformers/issues/36012
[]
yanadrdr
8
cookiecutter/cookiecutter-django
django
5,184
Add ngrok for developing locally with HTTPS
## Description Change the documentation for developing locally with HTTPS to use ngrok. ## Rationale The existing documentation no longer works as described. ## Implementation ngrok allows a user to connect localhost to the internet for testing applications and APIs 1. Install ngrok - `brew ins...
closed
2024-07-02T09:55:00Z
2024-08-05T19:40:14Z
https://github.com/cookiecutter/cookiecutter-django/issues/5184
[ "enhancement" ]
hugomoran159
8
man-group/notebooker
jupyter
13
Add ability to add custom mongo connection logic
Usually you won't have a plaintext password in an environment variable (I hope) so we need to allow users to specify their own connection methods. This in future should be extendable to other storage mechanisms, e.g. postgres
closed
2020-10-14T23:10:32Z
2020-12-07T10:28:27Z
https://github.com/man-group/notebooker/issues/13
[ "enhancement" ]
jonbannister
0
iperov/DeepFaceLab
deep-learning
665
Xseg split can't work
I use these scripts, but "Xseg split" can't work correctly. 5) data_dst extract whole_face MANUAL.bat 5.XSeg) data_dst split.bat The console show: Processing: 100%|#####################################################################################################################################################|...
closed
2020-03-20T23:44:04Z
2020-03-21T08:26:57Z
https://github.com/iperov/DeepFaceLab/issues/665
[]
allen651212
2
plotly/plotly.py
plotly
4,700
add diagonals for `go.Splom`
I'd like to point out that there is still interest in the feature discussed in plotly/plotly_express#42. Now that `plotly/plotly_express` is archived, this belongs here IMHO.
open
2024-07-29T15:44:33Z
2024-08-13T13:27:10Z
https://github.com/plotly/plotly.py/issues/4700
[ "feature", "P3" ]
johannes-mueller
1
ets-labs/python-dependency-injector
asyncio
811
RecursionError: maximum recursion depth exceeded while calling a Python object
File "src/dependency_injector/providers.pyx", line 4920, in dependency_injector.providers.deepcopy File "/usr/lib/python3.11/copy.py", line 146, in deepcopy y = copier(x, memo) ^^^^^^^^^^^^^^^ File "/usr/lib/python3.11/copy.py", line 211, in _deepcopy_tuple y = [deepcopy(a, memo) for a in x] ...
open
2024-08-12T09:56:57Z
2024-08-28T07:00:51Z
https://github.com/ets-labs/python-dependency-injector/issues/811
[]
AlexandrIllarionov
2
Miserlou/Zappa
flask
1,358
Zip file - Windows paths
<!--- Provide a general summary of the issue in the Title above --> ## Context When deploying a Django app (over 50mb) from a Windows 10 machine the tarball retains the Windows directory separators '\\\\', when deployed to Lambda this causes the error "No module named 'django.core.wsgi': ModuleNotFoundError" ## E...
open
2018-01-22T19:57:03Z
2019-07-11T19:11:10Z
https://github.com/Miserlou/Zappa/issues/1358
[ "bug", "windows", "easy-fix" ]
pgpgpg
2
pyppeteer/pyppeteer
automation
375
Title: Test fail.
I have been working to build and test this package for amd64 and arm64 architectures. While testing this package with “tox” getting errors for **poetry install** command for both architectures, it is failed to install m2r (0.2.1) and showing the below error. **Error:** ``` Command ['/pyppeteer/venv38/bin/pip', '...
open
2022-04-06T04:59:32Z
2022-05-06T08:32:09Z
https://github.com/pyppeteer/pyppeteer/issues/375
[]
odidev
3
RobertCraigie/prisma-client-py
asyncio
850
Option to generate camelcase python methods/function names.
## Problem Interacting with models named as MyModule is done via db.mymodule. I'd like to ask for an option to generate db.my_module instead.
open
2023-12-04T10:49:33Z
2024-05-17T14:44:47Z
https://github.com/RobertCraigie/prisma-client-py/issues/850
[]
marcovc
1
autogluon/autogluon
data-science
4,439
[publications] awesome.md vs readme.md, paper proposal: https://arxiv.org/abs/2408.14817
### Describe the issue linked to the documentation 1. I've found today interesting papers that quotest autogluon a lot: https://arxiv.org/abs/2408.14817 The question is that is not clear in which section it fits: readme or awesome ? 2. It may be right in front of my eyes, but I just can't see readme.md and awesome.md...
open
2024-08-28T07:01:24Z
2024-08-29T05:51:40Z
https://github.com/autogluon/autogluon/issues/4439
[ "API & Doc", "enhancement", "priority: 0" ]
mglowacki100
3
erdewit/ib_insync
asyncio
378
Symbol Name Pending Order
Hi, First thanks you for great lib ! Can you tell me how i can have the symbol name of my pending orders ? i found reqAllOpenOrders but i don't have symbol name :( Thanks. Regards Ludo.
closed
2021-05-31T16:34:18Z
2021-06-11T11:23:24Z
https://github.com/erdewit/ib_insync/issues/378
[]
LinuxpowerLudo
4
deezer/spleeter
deep-learning
443
[Bug] Command of evaluating metrics from trained(download) model
Hi! i try to evaluate the metrics of pre-trained model using command `spleeter evaluate -p spleeter:4stems --mus_dir /home/wuxuechao/spleeter/musdb18_stem/ -o eval_output` but get `nan` result. I have download musdb dataset and run the training stage successfully, but i still can't get the results. By the way, i foun...
open
2020-07-07T13:18:51Z
2020-07-07T13:19:29Z
https://github.com/deezer/spleeter/issues/443
[ "bug", "invalid" ]
dakenan1
0
aimhubio/aim
data-visualization
2,433
Add a community discord link in the sidebar
## 🚀 Feature Add a community discord link in the `Sidebar` ### Motivation Provide users the ability to easily navigate to the `Aim discord` community channel from the `Sidebar` ### Pitch Display a link to the discord with an icon in the `Sidebar`.
closed
2022-12-15T11:37:57Z
2023-01-31T11:13:59Z
https://github.com/aimhubio/aim/issues/2433
[ "type / enhancement", "area / Web-UI", "phase / shipped" ]
arsengit
0
graphql-python/graphene-django
graphql
671
Feature request: way to require only_fields
There doesn't seem to be a way to enforce `only_fields` on `DjangoObjectType`s. This is a serious security issue, since fields all default to accessible, including Django's automatically created reverse relation fields. I tried to introspect this value, but it gets erased at class creation time. We only end up with ...
closed
2019-06-11T15:16:42Z
2020-01-29T15:41:01Z
https://github.com/graphql-python/graphene-django/issues/671
[ "wontfix" ]
reverie
9
lukas-blecher/LaTeX-OCR
pytorch
118
MacOS with pixel doubling caused ImageGrab Error
In MacOS, turning on pixel doubling will cause a difference between the real resolution and the display resolution, which will affect the screenshots of ImageGrab. For me, my monitor's real resolution is 3840x2160, after pixel doubling, it becomes 1920x1080, so the use of `ImageGrab.grab(bbox=(x1, y1, x2, y2))` caus...
closed
2022-04-11T11:22:25Z
2022-04-15T08:19:16Z
https://github.com/lukas-blecher/LaTeX-OCR/issues/118
[ "bug", "macOS" ]
backtraxe
3
pandas-dev/pandas
pandas
60,692
ENH: Make pd.Timestamp.astimezone() default to local timezone
### Pandas version checks - [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the [latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of pandas. - [ ] I have confirmed this bug exists on the [main branch](https://pandas.pydata.org/docs/...
open
2025-01-11T12:06:50Z
2025-01-27T22:07:39Z
https://github.com/pandas-dev/pandas/issues/60692
[ "Enhancement", "API Design", "Needs Discussion", "Closing Candidate", "Localization" ]
powellnorma
2
flasgger/flasgger
api
266
uiversion 3 with blank url after initializing default data
I overwrite the default data with following code: ``` # config.py template = { "swagger": "2.0", "info": { "title": "KG Service API & Algorithm API", "description": "API for Knowledge Hub & Algorithm Hub", "contact": { "responsibleOrganization": "ME", "responsibleDeveloper": "Me"...
closed
2018-11-21T15:45:15Z
2020-06-16T07:12:12Z
https://github.com/flasgger/flasgger/issues/266
[]
huanghe314
1
tiangolo/uwsgi-nginx-flask-docker
flask
23
Add additional Alpine base image for Python 2.7
Add Alpine base image for Python 2.7 Some users are fans of Alpine Linux, so it would be nice to have an additional base image based on Alpine. This would depend on: https://github.com/tiangolo/uwsgi-nginx-docker/issues/10 being solved first.
closed
2017-09-30T15:39:54Z
2018-01-15T10:18:02Z
https://github.com/tiangolo/uwsgi-nginx-flask-docker/issues/23
[ "Hacktoberfest" ]
tiangolo
1
influxdata/influxdb-client-python
jupyter
533
Query stops when encountering a field containing a string (query_csv)
### Specifications * Client Version: 1.30.00 * InfluxDB Version: 2.4 * Platform: Windows ### Code sample to reproduce problem ```from influxdb_client import InfluxDBClient # You can generate a Token from the "Tokens Tab" in the UI token = token org = "my-org" bucket = "bucket" with InfluxDBClient(url="h...
closed
2022-11-24T15:31:54Z
2022-12-07T14:21:07Z
https://github.com/influxdata/influxdb-client-python/issues/533
[ "enhancement" ]
Olgidos
11
quokkaproject/quokka
flask
12
recommendation backend based on search
closed
2013-08-11T20:11:55Z
2018-02-06T13:46:25Z
https://github.com/quokkaproject/quokka/issues/12
[ "enhancement", "MEDIUM", "ready" ]
rochacbruno
2
tensorflow/tensor2tensor
deep-learning
1,455
AttributeError: 'NoneType' object has no attribute 'startswith' when using t2t_decoder
How do I fix this? (magenta) usuario@Strix:~/Escritorio/train$ t2t_decoder --decode_hparams="${DECODE_HPARAMS}" --decode_interactive --hparams="sampling_method=random" --hparams_set=${HPARAMS_SET} --model=${MODEL} --problem=${PROBLEM} --output_dir=${TRAIN_DIR} /home/usuario/.conda/envs/magenta/lib/python2.7/site-...
open
2019-02-19T00:51:24Z
2019-02-24T22:05:06Z
https://github.com/tensorflow/tensor2tensor/issues/1455
[]
aletote
1
deepinsight/insightface
pytorch
1,740
Can you help me,I have one Error! please!
when I start !CUDA_VISIBLE_DEVICES='0' python -u train_softmax.py --network r100 --loss arcface --dataset emore I have one Error: config.imageshape: 3 prefix ./models/r100-arcface-emore/model image_size [112, 112] num_classes 4 Called with argument: Namespace(batch_size=16, ckpt=2, ctx_num=1, dataset='emore...
open
2021-09-04T04:52:06Z
2021-09-04T09:13:00Z
https://github.com/deepinsight/insightface/issues/1740
[]
HauTC-DevXamarin-MAUI
1
axnsan12/drf-yasg
django
585
url orders in main page
hi there, swagger sort urls alphabetically, can I show them by order in url patterns?
open
2020-05-03T15:13:08Z
2025-03-07T12:14:00Z
https://github.com/axnsan12/drf-yasg/issues/585
[ "triage" ]
sae13
1
lucidrains/vit-pytorch
computer-vision
98
About the vit pos embedding
where the sin and cos embedding?
closed
2021-04-28T03:58:03Z
2021-07-20T05:02:15Z
https://github.com/lucidrains/vit-pytorch/issues/98
[]
ShiMinghao0208
3
deezer/spleeter
tensorflow
145
[Bug] Illegal instruction (core dumped)
Hello. When I try to use spleeter, I am getting this error - Illegal instruction (core dumped) All installations was without any errors, but I can't understand how to solve this error
closed
2019-11-28T11:13:49Z
2019-11-29T08:39:05Z
https://github.com/deezer/spleeter/issues/145
[ "bug", "invalid", "wontfix", "RTMP" ]
stolicamedia
7
PeterL1n/RobustVideoMatting
computer-vision
51
[BUG Report] Inference.py
The file inference.py has a small bug. When I call convert_video as shown below: `convert_video( model, # The loaded model, can be on any device (cpu or cuda). input_source=input_folder, # A video file or an image sequence directory. downsample_ratio=None, ...
closed
2021-09-27T21:45:57Z
2021-09-27T21:56:58Z
https://github.com/PeterL1n/RobustVideoMatting/issues/51
[]
SamHSlva
1
vastsa/FileCodeBox
fastapi
195
100mb的文件上传失败显示文件过大
**Describe the bug** 你好,首先谢谢你们的软件,我开始试着用,已经调整了我的传送文件大小为5G,但是就100多mb的文件也发不出去,然后出现错误的文字写着文件过大?可以帮帮忙看看是否有什么错误吗? ![image](https://github.com/user-attachments/assets/d82f6e16-8711-404e-b07a-f1c2516efb0d)
closed
2024-08-15T15:06:08Z
2024-11-29T07:44:18Z
https://github.com/vastsa/FileCodeBox/issues/195
[]
Andersonong-github
10
fohrloop/dash-uploader
dash
101
small file upload: division by zero..
pre-release version of dash-uploader 0.7.0, trying to upload a small jpeg image: File "dash_uploader/callbacks.py", line 39, in wrapper status = UploadStatus( File "dash_uploader/uploadstatus.py", line 67, in __init__ self.progress = uploaded_size_mb / total_size_mb >>> ZeroDivisionError: division by zero
closed
2022-09-19T12:33:41Z
2025-01-11T12:21:50Z
https://github.com/fohrloop/dash-uploader/issues/101
[]
afkrause
1
AUTOMATIC1111/stable-diffusion-webui
deep-learning
15,324
[Bug]: When using "prompt" as the filename, the filename gets truncated.
### Checklist - [X] The issue exists after disabling all extensions - [X] The issue exists on a clean installation of webui - [ ] The issue is caused by an extension, but I believe it is caused by a bug in the webui - [X] The issue exists in the current version of the webui - [ ] The issue has not been reported before...
closed
2024-03-19T12:02:51Z
2024-03-20T03:01:15Z
https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/15324
[ "bug-report" ]
wangpao
3
BeanieODM/beanie
asyncio
236
Activating validate_on_save without defining id field errors
Creating a document without defining an `id` field, appears to generate the following error during save (of a new document) when `validate_on_save` is true in the settings. ``` E pydantic.error_wrappers.ValidationError: 1 validation error for TestDocument E id E none is not an allowed value (type=type_err...
closed
2022-04-11T08:16:34Z
2024-10-20T13:43:30Z
https://github.com/BeanieODM/beanie/issues/236
[ "Stale" ]
infinityredux
4
miguelgrinberg/python-socketio
asyncio
225
Client cannot connect to server when transports is websocket
Server demo: ```python from aiohttp import web import socketio sio = socketio.AsyncServer(async_mode='aiohttp') app = web.Application() sio.attach(app) async def index(request): pass @sio.on('connection') async def on_connect(): print('client connected') @sio.on('schedule') async def pi...
closed
2018-12-26T09:05:18Z
2018-12-26T12:26:01Z
https://github.com/miguelgrinberg/python-socketio/issues/225
[ "question" ]
sdvcrx
3
cookiecutter/cookiecutter-django
django
4,778
python: can't open file '/app/manage.py': [Errno 2] No such file or directory
Hello, I'm writing to you because I'm experiencing a problem that I've been trying to solve for several days but which I'm really unable to overcome using cookiecutter. I'm doing all the steps as explained in the documentation and in the few videos I've seen on the internet. I set the parameters with Docker and Postrge...
closed
2024-01-08T19:04:40Z
2024-01-08T19:10:09Z
https://github.com/cookiecutter/cookiecutter-django/issues/4778
[]
phoenixhackt
0
openapi-generators/openapi-python-client
fastapi
266
Invalid python generated when using nested dictionaries
**Describe the bug** Using `openapi-python-client` on a valid FastAPI/pydantic API is generating invalid client library on 0.7.2 when there is a somewhat complex set of nested `Dict` and `Union` types. **To Reproduce** Put the following in a main.py ``` from typing import Any, Dict, List, Union from fastapi imp...
closed
2020-12-15T01:06:45Z
2020-12-21T18:00:14Z
https://github.com/openapi-generators/openapi-python-client/issues/266
[ "🐞bug" ]
joshzana
1
chatanywhere/GPT_API_free
api
371
添加gpt-4o-mini-tts
添加gpt-4o-mini-tts
open
2025-03-21T00:52:12Z
2025-03-24T01:52:14Z
https://github.com/chatanywhere/GPT_API_free/issues/371
[]
sujianqingfeng
3
seleniumbase/SeleniumBase
web-scraping
3,395
How can i block custom images and css not all
How can i block custom images and css not all
closed
2025-01-06T18:23:21Z
2025-01-07T01:59:47Z
https://github.com/seleniumbase/SeleniumBase/issues/3395
[ "question", "UC Mode / CDP Mode" ]
aboessa
9
ijl/orjson
numpy
442
Serialization of Pandas' `Timestamp`
I was wondering why the serialization of Pandas' `Timestamp` object was not possible even though they inherit from `datetime.datetime`. ```python >>> import orjson >>> orjson.__version__ '3.9.10' >>> import pandas as pd >>> import datetime dt = datetime.datetime(2023, 11, 23) >>> orjson.dumps(dt) b'"2023-11-...
closed
2023-11-23T12:32:06Z
2023-12-03T08:02:06Z
https://github.com/ijl/orjson/issues/442
[ "Stale" ]
odelmarcelle
0
aiortc/aiortc
asyncio
405
when trying to connect from other host got an error
405 method not allowed Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:8000/offer. (Reason: CORS preflight response did not succeed). Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:8000/off...
closed
2020-08-17T13:53:50Z
2021-01-29T08:37:29Z
https://github.com/aiortc/aiortc/issues/405
[ "invalid" ]
rahooftkh
2
autogluon/autogluon
scikit-learn
4,442
Contributing to Model Monitoring and Interpretability
Hello there! :wave: My name is Guilherme and I’m a software engineering student at UNIPAMPA, a university in southern Brazil. I’m currently developing my undergraduate thesis and I’m very interested in working on improving AutoGluon in terms of features such as model monitoring and interpretability. I see from the ...
open
2024-08-28T23:33:36Z
2024-08-28T23:33:36Z
https://github.com/autogluon/autogluon/issues/4442
[ "enhancement" ]
guijasss
0
saulpw/visidata
pandas
2,085
[input help] Please add input help back.
I already miss visidata/ddw/input.ddw. I prefer that detailed help message over the new message.
closed
2023-10-25T20:53:51Z
2023-10-27T22:28:05Z
https://github.com/saulpw/visidata/issues/2085
[ "wishlist", "wish granted" ]
frosencrantz
6
tqdm/tqdm
jupyter
1,486
Threading | Multiprocessing Visual Error
- [ ] I have marked all applicable categories: + [ ] exception-raising bug + [ +] visual output bug - [+ ] I have visited the [source website], and in particular read the [known issues] - [+] I have searched through the [issue tracker] for duplicates - [+] I have mentioned version numbers, operating sys...
open
2023-07-25T10:56:55Z
2023-12-06T05:04:01Z
https://github.com/tqdm/tqdm/issues/1486
[]
trifwn
2
huggingface/datasets
deep-learning
7,067
Convert_to_parquet fails for datasets with multiple configs
If the dataset has multiple configs, when using the `datasets-cli convert_to_parquet` command to avoid issues with the data viewer caused by loading scripts, the conversion process only successfully converts the data corresponding to the first config. When it starts converting the second config, it throws an error: ...
closed
2024-07-23T15:09:33Z
2024-07-30T10:51:02Z
https://github.com/huggingface/datasets/issues/7067
[]
HuangZhen02
3
scikit-image/scikit-image
computer-vision
6,784
Error introduced in version 0.20.0 when using PyInstaller
### Description: The executable produced by [PyInstaller](https://pyinstaller.org/en/stable/) is producing an error introduced by scikit-image v0.20.0. ![image](https://user-images.githubusercontent.com/1608652/223493602-dc0ec9a4-5a61-4d8d-833f-c186e94a6cad.png) ### Way to reproduce: _No response_ ### Tracebac...
open
2023-03-07T17:03:26Z
2023-09-16T14:09:18Z
https://github.com/scikit-image/scikit-image/issues/6784
[ ":bug: Bug" ]
rodrigomologni
2
httpie/cli
api
989
Feature request: support "http(s) request" from raw requests file
From https://httpie.io/docs#offline-mode, > Generating raw requests that can be sent with any other client: > > ▶ RUN# 1. save a raw request to a file: > $ http --offline POST httpbin.org/post hello=world > request.http > ▶ RUN# 2. send it over the wire with, for example, the fantastic netcat tool: >...
open
2020-11-11T14:55:03Z
2024-01-30T14:34:03Z
https://github.com/httpie/cli/issues/989
[ "enhancement", "needs product design" ]
snowman
4
biolab/orange3
data-visualization
6,083
widget 'Save Data' doesn't give options described in the documentation
Hello, First of all, I hope I use the appropriate tracker to report, I hesitate somehow... According to the Documentation, the widget 'Save Data' has options to save data with various extensions Actually I could not access the window with these options such as described in the doc, and the only possibility is pkl ...
closed
2022-07-31T06:31:26Z
2022-08-01T07:19:07Z
https://github.com/biolab/orange3/issues/6083
[ "bug report" ]
michous
1
vaexio/vaex
data-science
2,202
[BUG-REPORT] Error converting from csv file to hdf5 file with
**Description** ArrowInvalid: Failed casting from large_string to string Code: vaex.from_csv("/data/transactions.csv",convert=True,chunk_size=10000000) When I tried to call the from_csv function to convert the csv file to hdf5, each small hdf5 file was generated smoothly, but when aggregating each small file, an err...
open
2022-09-07T01:58:42Z
2022-09-07T05:39:50Z
https://github.com/vaexio/vaex/issues/2202
[]
zhiyongm
1
Yorko/mlcourse.ai
numpy
76
week 3 workbooks seed issue
Right now code in https://github.com/Yorko/mlcourse_open/blob/master/jupyter_notebooks/topic03_decision_trees_knn/topic3_trees_knn.ipynb `In[3]` is `np.seed = 7` but this seems to be typo and should be `np.random.seed(7)`?
closed
2017-09-21T06:20:13Z
2017-09-21T14:10:38Z
https://github.com/Yorko/mlcourse.ai/issues/76
[ "minor_fix" ]
sudodoki
1
521xueweihan/HelloGitHub
python
1,950
项目自荐 | Vue Color Avatar 一个纯前端实现的头像生成网站 🧑‍🦱
## 项目推荐 - 项目地址:[https://github.com/Codennnn/vue-color-avatar](https://github.com/Codennnn/vue-color-avatar) - 类别:JS - 项目后续更新计划:丰富头像素材,并且可以自定义素材的颜色 - 项目描述: - 一个纯前端实现的矢量风格**头像生成**网站,可以搭配不同的素材组件,生成自己的个性化头像 - 推荐理由:使用 Vite + Vue3 开发,帮助前端初学者学习 Vue3 的语法以及掌握项目搭建 - 截图: ![image](https://user-images.githubus...
closed
2021-10-31T04:23:39Z
2021-11-26T01:00:27Z
https://github.com/521xueweihan/HelloGitHub/issues/1950
[ "已发布", "JavaScript 项目" ]
Codennnn
1
pallets/flask
flask
4,728
`Flask test` does not work (tables not created) after 2.2.0 update
With Flask 2.1.0 : ```bash $ flask test =========================================================================== test session starts ============================================================================ platform darwin -- Python 3.10.3, pytest-7.1.2, pluggy-1.0.0 -- /Users/antoine/Documents/Git/portail/...
closed
2022-08-02T13:24:08Z
2022-08-17T00:06:03Z
https://github.com/pallets/flask/issues/4728
[]
probance-antoine
1
Avaiga/taipy
automation
2,286
[🐛 BUG] Applying width to a specific column in a tgb.table does not work
### What went wrong? 🤔 A customer requested for specific columns in his tgb.table to have a bigger width. The column names have spaces in them so using tgb.table(width__column_name="200px") won't work. This example is supposed to work but applies the style to all columns instead: ```python from taipy.gui impor...
closed
2024-11-27T22:04:22Z
2024-12-23T10:50:08Z
https://github.com/Avaiga/taipy/issues/2286
[ "💥Malfunction", "🟨 Priority: Medium", "🔒 Staff only", "GUI: Front-End" ]
AlexandreSajus
6
Farama-Foundation/Gymnasium
api
692
[Proposal] Observation Space in FrozenLake environment
### Proposal This is a detail but it's confusing, and repeated in HF's RL course. Right now the [observation space](https://gymnasium.farama.org/environments/toy_text/frozen_lake/#observation-space), and more precisely the player's position in FrozenLake is defined as: > current_row * nrows + current_col (where ...
closed
2023-08-27T11:19:36Z
2023-08-28T13:27:58Z
https://github.com/Farama-Foundation/Gymnasium/issues/692
[ "enhancement" ]
PierreCounathe
3
mwaskom/seaborn
pandas
3,728
Incorrect plotting of exactly overlapping scatter with `hue` and `hue_order`
While working with `sns.scatterplot` for representing locations on a grid, I discovered an issue where using `hue` and `hue_order` produces an incorrect plot: markers that should be perfectly overlapping—they have identical (`x`, `y`) coordinates—are drawn at a small offset, such that the edge of one can be seen inters...
open
2024-07-12T14:04:03Z
2024-07-15T15:23:55Z
https://github.com/mwaskom/seaborn/issues/3728
[]
eloyvallinaes
3
ultralytics/yolov5
machine-learning
13,204
AttributeError: 'DetectMultiBackend' object has no attribute 'input_details'
### Search before asking - [X] I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and [discussions](https://github.com/ultralytics/yolov5/discussions) and found no similar questions. ### Question Hello, I am doing a YOLOv5 project with DeepSort added to give each detected object a uni...
open
2024-07-21T09:16:21Z
2024-07-21T12:57:09Z
https://github.com/ultralytics/yolov5/issues/13204
[ "question" ]
Kelly02140
1