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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
napari/napari | numpy | 7,129 | Widgets with return type annotation `List[LayerDataTuple]` don't get their layers added to the `Viewer` | ### 🐛 Bug Report
In `0.5.0` we dropped support for python 3.8, which included some typing changes. Notably, the `list` type no longer needed importing `from typing import List`, but could be used directly.
This led to a change in the types we register with `magicgui` - notably, we now use the builtin `list` type f... | closed | 2024-07-26T04:50:31Z | 2024-11-25T20:50:59Z | https://github.com/napari/napari/issues/7129 | [
"bug",
"priority:high",
"triage:probably solved"
] | DragaDoncila | 11 |
pytorch/pytorch | machine-learning | 149,774 | bound_sympy() produces incorrect result for mod | ### 🐛 Describe the bug
`bound_sympy(s0 - (s0 % 8))` produces an incorrect range of [-5, inf], when the correct answer is [0, inf] (s0 has a bound of [2, inf].
My guess is this happens because each term is evaluated individually, with s0 resolving to [2, inf], and -(s0 % 8) resolving to [-7, 0], combining for a range... | open | 2025-03-21T23:07:36Z | 2025-03-24T09:40:47Z | https://github.com/pytorch/pytorch/issues/149774 | [
"triaged",
"oncall: pt2",
"module: dynamic shapes",
"oncall: export"
] | pianpwk | 2 |
mwaskom/seaborn | pandas | 3,484 | How to show all x-tick labels with seaborn.objects? | How do I make it so that it shows all x ticks from 0 to 9?
```
import pandas as pd
import seaborn.objects as so
diff_df = pd.DataFrame({'bin': [0,1,9,3,4,2,3,4,7,5,6,7,8,9], 'diff': [1,0,1,1,1,3,2,4,1,2,3,0,2,1]})
(
so.Plot(x='bin', y='diff', data=diff_df)
.theme({**axes_style("whitegrid"), "grid.line... | closed | 2023-09-19T19:10:04Z | 2023-09-19T21:12:56Z | https://github.com/mwaskom/seaborn/issues/3484 | [] | anya-ji | 5 |
AUTOMATIC1111/stable-diffusion-webui | pytorch | 15,818 | [Bug]: Error when using --precision full | ### 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
- [X] The issue has not been reported before... | open | 2024-05-16T19:48:40Z | 2024-06-09T20:09:51Z | https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/15818 | [
"bug-report"
] | huchenlei | 2 |
blb-ventures/strawberry-django-plus | graphql | 187 | Permissions: applying IsAuthenticated directive to entire schema | Hi there,
Instead of applying the `IsAuthenticated()` directive to individual fields, I'm looking to apply this to an entire schema.
I'd wondered if this might work, but it doesn't:
```python
authenticated_schema = gql.Schema(
query=AuthenticatedQueries,
mutation=AuthenticatedMutations,
extensi... | open | 2023-03-14T13:55:19Z | 2023-03-22T18:35:18Z | https://github.com/blb-ventures/strawberry-django-plus/issues/187 | [] | gghdev | 3 |
matplotlib/matplotlib | data-visualization | 29,487 | [Bug]: LinearSegmentedColormap returns different results for int/float when used as a function | ### Bug summary
When invoking a `LinearSegmentedColormap` object as a function, the output can differ based on whether you pass an integer or a float.
For example, in the code snippet below, `cmap(1)` returns a completely different result than `cmap(1.0)`. While this behavior might be expected given how the colormap... | closed | 2025-01-20T10:45:34Z | 2025-01-20T11:51:12Z | https://github.com/matplotlib/matplotlib/issues/29487 | [
"status: duplicate"
] | JosephBARBIERDARNAL | 1 |
modelscope/data-juicer | streamlit | 138 | [Bug]:我添加了个随机抽样的操作符,并且已经测试成功,但是在配置文件中使用的时候报错如下,是为什么呢? | ### Before Reporting 报告之前
- [X] I have pulled the latest code of main branch to run again and the bug still existed. 我已经拉取了主分支上最新的代码,重新运行之后,问题仍不能解决。
- [X] I have read the [README](https://github.com/alibaba/data-juicer/blob/main/README.md) carefully and no error occurred during the installation process. (Otherwise, w... | closed | 2023-12-14T10:47:11Z | 2023-12-15T02:51:22Z | https://github.com/modelscope/data-juicer/issues/138 | [
"bug"
] | hitszxs | 5 |
lexiforest/curl_cffi | web-scraping | 125 | Only version 0.1.5 can be installed | python:3.6.8
os: Linux ecom-darwin-eip 5.4.119-1-tlinux4-0009-eks #1 SMP Sat Apr 15 20:30:49 CST 2023 x86_64 x86_64 x86_64 GNU/Linux
By default, only this version can be installed. Installing a higher version is abnormal。
<img width="941" alt="image" src="https://github.com/yifeikong/curl_cffi/assets/29711470/37669a... | closed | 2023-09-19T05:10:23Z | 2023-09-19T05:38:33Z | https://github.com/lexiforest/curl_cffi/issues/125 | [] | crazyxw | 1 |
ExpDev07/coronavirus-tracker-api | fastapi | 165 | US State Timelines | Not sure if it something wrong with what I am doing but I seem to have lost the ability to get US State based timelines from the API?
| open | 2020-03-24T15:13:34Z | 2020-03-25T06:09:47Z | https://github.com/ExpDev07/coronavirus-tracker-api/issues/165 | [
"question"
] | fsa317 | 7 |
microsoft/nni | tensorflow | 5,561 | issue list | ### need reply issue ###
@J-shang
https://github.com/microsoft/nni/issues/5555
https://github.com/microsoft/nni/issues/5524
https://github.com/microsoft/nni/issues/5499
@ultmaster
https://github.com/microsoft/nni/issues/5547
@super-dainiu
https://github.com/microsoft/nni/issues/5536
@liuzhe-lz
https... | closed | 2023-05-15T02:26:29Z | 2023-05-18T07:04:38Z | https://github.com/microsoft/nni/issues/5561 | [] | Lijiaoa | 1 |
apify/crawlee-python | web-scraping | 968 | JSONDecodeError: Expecting value: line 1 column 1 (char 0) while opening RequestQueue | ### Issue description
Hi crawlee team. Thank you for the great work.
I encounter the following error while I try to run the crawler for the second time:
```
Traceback (most recent call last):
File "/home/sadaf/store_crawler/stores_crawler/d/dookcollection.py", line 401, in <module>
asyncio.run(main())
File ... | closed | 2025-02-09T12:45:43Z | 2025-02-25T09:54:33Z | https://github.com/apify/crawlee-python/issues/968 | [
"bug",
"t-tooling"
] | sadaffatollahy | 4 |
junyanz/pytorch-CycleGAN-and-pix2pix | pytorch | 1,607 | Is there a sample I can use to paint an image without cutting it? | I more or less understood the test, but is there any way to paint images (I trained a small model with references on how to do it) without having to lower the quality so much? if the image is 256 you can hardly see anything even if you raise the quality. | open | 2023-10-29T23:20:33Z | 2023-10-29T23:20:33Z | https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/1607 | [] | Keiser04 | 0 |
Yorko/mlcourse.ai | data-science | 720 | Data for assignment 4 | Thanks for the course. I've been working my way through it via cloning the repo off of Github. I can't seem to find the data set for assignment 4 on sarcasm detection. If it is indeed included, apologies; if not, how would you suggest to get it? Via Kaggle or some other means? Thanks again. | closed | 2022-09-12T19:22:28Z | 2022-09-13T23:01:54Z | https://github.com/Yorko/mlcourse.ai/issues/720 | [] | jonkracht | 1 |
SciTools/cartopy | matplotlib | 2,304 | Add type hints for mypy | ### Description
I would like to propose adding type hints to cartopy so that mypy can be used with the project.
#### Code to reproduce
Using the following code (adapted from the [global map](https://scitools.org.uk/cartopy/docs/latest/gallery/lines_and_polygons/global_map.html) tutorial):
```python
import ma... | open | 2023-12-21T15:25:29Z | 2023-12-21T20:11:09Z | https://github.com/SciTools/cartopy/issues/2304 | [] | adamjstewart | 3 |
graphql-python/graphene-django | django | 909 | iterable gets refiltered by resolve_queryset but iterable might be promise | I'm trying to use DataLoader but I got a problem in DjangoConnectionField.
According to the comment, does that means I can't DataLoader here? My iterable here is Promise.
https://github.com/graphql-python/graphene-django/blob/0da06d4d54d3e73d43d88534259f55733ab7609b/graphene_django/fields.py#L176
| closed | 2020-03-19T13:23:17Z | 2022-04-22T10:16:54Z | https://github.com/graphql-python/graphene-django/issues/909 | [
"wontfix"
] | frankchen211 | 2 |
JoeanAmier/TikTokDownloader | api | 399 | 封面图重复下载 | 当开启 "original_cover": true,
已经下载过的视频的封面图会无限次数的被重复下载, 删除封面图文件后,再下次在611q模式下运行main.py,程序依然会每次都重复下载以前所有视频的封面图
请问大家遇到过这个情况吗, 怎么解决的? 感谢指点 | open | 2025-01-31T11:26:48Z | 2025-01-31T11:28:00Z | https://github.com/JoeanAmier/TikTokDownloader/issues/399 | [] | 9ihbd2DZSMjtsf7vecXjz | 1 |
SALib/SALib | numpy | 372 | SyntaxWarning with python 3.8 | Hello,
a SyntaxWarning occurs when using SAlib with python 3.8
```
\lib\site-packages\SALib\util\_
_init__.py:222: SyntaxWarning: "is" with a literal. Did you mean "=="?
elif row['group'] is 'NA':
\lib\site-packages\SALib\util\r
esults.py:15: SyntaxWarning: "is not" with a literal. Did you mean "!="?
return... | closed | 2020-10-12T16:32:46Z | 2020-10-12T23:52:56Z | https://github.com/SALib/SALib/issues/372 | [] | xavArtley | 2 |
horovod/horovod | pytorch | 3,850 | Docker build horovod-nvtabular fails | `pip` installing `cudf-cu11` results in an error:
```
#12 [ 7/37] RUN pip install --no-cache-dir cudf-cu11 dask-cudf-cu11 --extra-index-url=https://pypi.ngc.nvidia.com/
#12 1.247 Looking in indexes: https://pypi.org/simple, https://pypi.ngc.nvidia.com/
#12 2.285 Collecting cudf-cu11
#12 2.391 Downloading cudf_cu... | closed | 2023-02-16T18:34:51Z | 2023-02-17T09:35:01Z | https://github.com/horovod/horovod/issues/3850 | [
"bug"
] | maxhgerlach | 1 |
joerick/pyinstrument | django | 119 | timeline in interactive html view | Hi! I love the timeline feature, it really helps me understand the order of operation and get my mind wrapped around execution flow. I get an error when using the `timeline=True` from inside any of the output / open functions except for text output. I guess if this is the place to put a feature request then this is it.... | closed | 2021-02-10T22:57:22Z | 2021-02-19T09:29:14Z | https://github.com/joerick/pyinstrument/issues/119 | [] | startakovsky | 1 |
iperov/DeepFaceLab | deep-learning | 771 | Deepface | closed | 2020-06-05T07:41:45Z | 2020-06-05T07:42:07Z | https://github.com/iperov/DeepFaceLab/issues/771 | [] | kiim-wong | 0 | |
mage-ai/mage-ai | data-science | 5,589 | [BUG] Passing empty dataframe from Data Transformer to Data Exporter clears/removes the columns (headers) | ### Mage version
v0.9.74
### Describe the bug
We have a use case where in the Data Transformer, it maps an incoming list to a pandas dataframe. In some cases, the incoming list is empty resulting in an empty dataframe to be output, but we still want the `columns` part of the "dataframe object" to be part of the outp... | open | 2024-11-22T13:21:11Z | 2024-11-22T13:21:11Z | https://github.com/mage-ai/mage-ai/issues/5589 | [
"bug"
] | fltfx | 0 |
graphql-python/graphene-sqlalchemy | graphql | 319 | How to tweak query structure from relationships | I'm working on a simple CRUD REST API to learn GraphQL & SqlAlchemy. I have a Movie table
```
class Movie(Base, Serializer):
__tablename__ = 'movie'
id = Column(Integer, primary_key=True, index=True)
movie = Column(String(50), nullable=False, unique=True)
budget = Column(Float, nullable=False)
... | closed | 2021-10-01T01:13:06Z | 2023-02-25T00:48:46Z | https://github.com/graphql-python/graphene-sqlalchemy/issues/319 | [
"question"
] | shlomi84 | 2 |
Yorko/mlcourse.ai | scikit-learn | 703 | patreon payment | Hi, I paid the $17 for the bonus assignment, but I have no way to access it. Please help. | closed | 2022-03-16T08:40:31Z | 2022-03-16T19:07:14Z | https://github.com/Yorko/mlcourse.ai/issues/703 | [] | vahuja4 | 1 |
zappa/Zappa | flask | 855 | [Migrated] How to update app without downtime? | Originally from: https://github.com/Miserlou/Zappa/issues/2103 by [xncbf](https://github.com/xncbf)
In the case of AWS Beanstalk, can be deployment without downtime through environment replication and url swap. Is it possible to perform a similar practice on Zappa? | closed | 2021-02-20T12:52:32Z | 2024-04-13T19:10:31Z | https://github.com/zappa/Zappa/issues/855 | [
"no-activity",
"auto-closed"
] | jneves | 3 |
miguelgrinberg/Flask-Migrate | flask | 234 | Migrate to multiple databases simultaneously | Greetings. I am doing a project and I need to migrate to several databases simultaneously. For example, I have bind 2 databases in SQLALCHEMY_BINDS like that :
**app.config['SQLALCHEMY_BINDS'] = {
'bobkov1': 'postgresql://postgres:zabil2012@localhost:5431/bobkov1',
'bobkov' : 'postgresql://postg... | closed | 2018-10-30T12:45:57Z | 2020-10-08T13:58:22Z | https://github.com/miguelgrinberg/Flask-Migrate/issues/234 | [
"question"
] | BobkovS | 22 |
geex-arts/django-jet | django | 216 | Image uploading and updating is not working with django-filer | I have integrated django-jet for all it's beautiful design and customized functionalities.
I'm also using django-filer for file and image uploading.
But I'm facing this issue when using djang-filer with django-jet.
-
> I'm unable to change image after uploading it for the first time. Image upload popup is also ... | open | 2017-05-23T12:04:37Z | 2017-10-10T15:43:55Z | https://github.com/geex-arts/django-jet/issues/216 | [] | mjrulesamrat | 6 |
deeppavlov/DeepPavlov | nlp | 1,329 | pymorphy2 0.9.1 is released | Want to contribute to DeepPavlov? Please read the [contributing guideline](http://docs.deeppavlov.ai/en/master/devguides/contribution_guide.html) first.
**What problem are we trying to solve?**:
Current `pymorphy2` requirement [is obsolete](https://github.com/deepmipt/DeepPavlov/blob/0.12.1/requirements.txt#L11... | closed | 2020-10-10T13:58:17Z | 2022-04-01T13:02:20Z | https://github.com/deeppavlov/DeepPavlov/issues/1329 | [
"enhancement"
] | kuraga | 1 |
alirezamika/autoscraper | web-scraping | 1 | Progression of errors while installing | ### 1
santiago@santiago-Aspire-A515-51:~$ pip install git+https://github.com/alirezamika/autoscraper.git
Defaulting to user installation because normal site-packages is not writeable
Collecting git+https://github.com/alirezamika/autoscraper.git
Cloning https://github.com/alirezamika/autoscraper.git to /tmp/pip-... | closed | 2020-08-31T17:33:31Z | 2020-08-31T20:08:38Z | https://github.com/alirezamika/autoscraper/issues/1 | [] | santiagodemierre | 3 |
matplotlib/mplfinance | matplotlib | 150 | Version 0.12.5 | Hi, I noticed there are comments regarding Version 0.12.5. When will this version be released ? | closed | 2020-06-05T06:15:12Z | 2020-06-05T10:29:59Z | https://github.com/matplotlib/mplfinance/issues/150 | [
"question"
] | Shuffydog | 3 |
kizniche/Mycodo | automation | 571 | setup>functions>conditional measurement stops working all the time | ## Mycodo Issue Report:
- Specific Mycodo Version: 6.4.5
#### Problem Description
Setup conditional measurement control to turn on a relay. Conditional control stops working after some time. Works for hours sometimes. Only way to fix is change some parameters in the conditional measurement control and save t... | closed | 2018-11-25T09:48:30Z | 2018-12-22T17:51:24Z | https://github.com/kizniche/Mycodo/issues/571 | [] | SAM26K | 89 |
NullArray/AutoSploit | automation | 445 | Unhandled Exception (495ff691e) | Autosploit version: `3.0`
OS information: `Linux-4.15.0-45-generic-x86_64-with-Ubuntu-18.04-bionic`
Running context: `autosploit.py`
Error meesage: `global name 'Except' is not defined`
Error traceback:
```
Traceback (most recent call):
File "/home/peerles/源代码/Autosploit/autosploit/main.py", line 113, in main
load... | closed | 2019-02-08T14:07:27Z | 2019-02-19T04:22:45Z | https://github.com/NullArray/AutoSploit/issues/445 | [] | AutosploitReporter | 0 |
mwaskom/seaborn | data-visualization | 2,992 | PolyFit is not robust to missing data | ```python
so.Plot([1, 2, 3, None, 4], [1, 2, 3, 4, 5]).add(so.Line(), so.PolyFit())
```
<details><summary>Traceback</summary>
```python-traceback
---------------------------------------------------------------------------
LinAlgError Traceback (most recent call last)
File ~/mini... | closed | 2022-09-03T17:35:22Z | 2022-09-12T00:24:04Z | https://github.com/mwaskom/seaborn/issues/2992 | [
"bug",
"objects-stat"
] | mwaskom | 0 |
zappa/Zappa | flask | 561 | [Migrated] Release plan for Zappa | Originally from: https://github.com/Miserlou/Zappa/issues/1480 by [efimerdlerkravitz](https://github.com/efimerdlerkravitz)
This is not an actual bug, unfortunately I don't know exactly where to ask it.
Any release plan for Zappa ? When is the next version suppose to be released ? | closed | 2021-02-20T12:22:47Z | 2022-07-16T07:06:10Z | https://github.com/zappa/Zappa/issues/561 | [] | jneves | 1 |
gunthercox/ChatterBot | machine-learning | 2,211 | is it possible to train chatterbot on memes? | I couldnt find anything on my light google search so I thought id ask.
I was wondering if i can train chatterbot on a csv with a meme in the message and response field.
Im new to this whole machine learning thing so sorry if its a dumb question
Thank you! | closed | 2021-10-27T23:59:50Z | 2025-02-26T11:46:41Z | https://github.com/gunthercox/ChatterBot/issues/2211 | [] | jhmauritz | 2 |
yzhao062/pyod | data-science | 36 | LOCI fails on MacOS with Python 2.7 (caused by np.count_nonzero) | It is noted running **LOCI** model on **MacOS** with **Python 2.7** may fail. One potential cause is the following code, as np.count_nonzero returns **int** instead of **array**.
I am currently investigating how to fix it. Please stay tuned.
```
def _get_alpha_n(self, dist_matrix, indices, r):
"""Comput... | closed | 2018-12-04T04:17:45Z | 2018-12-13T01:37:00Z | https://github.com/yzhao062/pyod/issues/36 | [
"bug"
] | yzhao062 | 1 |
dask/dask | pandas | 11,389 | mode on `axis=1` | The `mode` method in a `dask` `DataFrame` does not allow for the argument `axis=1`. It would be great to have since it seems that in `pandas`, that operation is very slow and seems straightforward to parallelize.
I would like to be able to do this in dask.
```
import pandas as pd
import numpy as np
import dask.da... | open | 2024-09-16T14:55:33Z | 2025-03-10T01:51:04Z | https://github.com/dask/dask/issues/11389 | [
"dataframe",
"needs attention",
"enhancement"
] | marcdelabarrera | 4 |
lanpa/tensorboardX | numpy | 97 | About RNN | I wrote a RNN program that i did't use nn.model so that I could see the structure. But I find some problem. Code and the datasets are as follow
https://github.com/VeritasXu/RNN
Can you run and see the structure? I think my program is correct, but the input type of add_graph function results in the strange structu... | closed | 2018-03-09T15:04:40Z | 2018-03-12T04:45:00Z | https://github.com/lanpa/tensorboardX/issues/97 | [] | VeritasXu | 2 |
davidteather/TikTok-Api | api | 560 | It does not support mobile links [BUG] - Your Error Here | # Read Below!!! If this doesn't fix your issue delete these two lines
**You may need to install chromedriver for your machine globally. Download it [here](https://sites.google.com/a/chromium.org/chromedriver/) and add it to your path.**
**Describe the bug**
A clear and concise description of what the bug is.
... | closed | 2021-04-13T15:20:30Z | 2021-04-13T15:27:34Z | https://github.com/davidteather/TikTok-Api/issues/560 | [
"bug"
] | ghost | 0 |
piccolo-orm/piccolo | fastapi | 1,099 | Objects accept node parameter for choosing extra node | Objects accept node parameter for choosing extra node | closed | 2024-10-14T15:23:34Z | 2024-10-16T08:05:00Z | https://github.com/piccolo-orm/piccolo/issues/1099 | [] | erhuabushuo | 2 |
TencentARC/GFPGAN | deep-learning | 530 | Gfpgan Not working on colab |
![Uploading Screenshot_20240321_084829.jpg…]()
I'm regularly using gfpgan on colab to upscale my AI generated images but last two weeks im facing an problem.the image is not upscale please check and correct that please.i tried many times to solve that but I couldn't.please help | closed | 2024-03-21T02:58:40Z | 2024-03-21T03:20:16Z | https://github.com/TencentARC/GFPGAN/issues/530 | [] | christopherdisho | 0 |
lucidrains/vit-pytorch | computer-vision | 141 | Should init scale matrix as diagonal form? | Hi, Phil:
I noticed the LayerScale part in the `CaiT`, in the original paper the scale matrix is a diagonal form `(b,d,d)`, but in this implement, it just initialized in a form of vector(maybe can broadcast afterwards, but would it be better just initialize as a diagonal form?)
https://github.com/lucidrains/vit-pyt... | closed | 2021-08-17T03:56:24Z | 2021-08-20T02:22:09Z | https://github.com/lucidrains/vit-pytorch/issues/141 | [] | CiaoHe | 3 |
apache/airflow | python | 48,076 | Add support for active session timeout in Airflow Web UI | ### Description
Currently, Airflow only support inactive session timeout via the `session_lifetime_minutes` config option. This handles session expiration after a period of inactivity, which is great - but it doesn't cover cases where a session should expire regardless of activity (i.e, an active session timeout).
T... | closed | 2025-03-21T18:49:07Z | 2025-03-22T21:09:21Z | https://github.com/apache/airflow/issues/48076 | [
"kind:feature",
"area:UI",
"needs-triage"
] | bmoon4 | 2 |
PokeAPI/pokeapi | api | 743 | Error with trying to get the evolution chain | So Im trying to get the evolution chain for pokemon using this link:
https://pokeapi.co/api/v2/pokemon-species/2
But it keeps telling me KeyError
Im using discord.py to make this into a command btw | closed | 2022-08-07T00:34:21Z | 2022-08-07T04:03:22Z | https://github.com/PokeAPI/pokeapi/issues/743 | [] | Necrosis000 | 3 |
onnx/onnx | tensorflow | 6,772 | Introduction of https://www.conventionalcommits.org/ for PullRequest Titles? | I would consider it useful to introduce https://www.conventionalcommits.org/ at least at PullRequest title level.
We could only recommend it, or check it directly with e.g. the following Github Action Use. https://github.com/marketplace/actions/conventional-commit-in-pull-requests
I think the advantages are obvious, ... | open | 2025-03-08T05:12:22Z | 2025-03-08T15:56:17Z | https://github.com/onnx/onnx/issues/6772 | [] | andife | 1 |
encode/uvicorn | asyncio | 1,297 | Feature request: Ability to import uvicorn in django to enable websocket support | ### Checklist
- [X] There are no similar issues or pull requests for this yet.
- [ ] I discussed this idea on the [community chat](https://gitter.im/encode/community) and feedback is positive.
### Is your feature related to a problem? Please describe.
When we do `python manage.py runserver` we have a line in ... | closed | 2021-12-22T01:59:52Z | 2023-02-03T08:14:27Z | https://github.com/encode/uvicorn/issues/1297 | [] | caleb15 | 6 |
mlfoundations/open_clip | computer-vision | 17 | Loss is constant | I'm using CLIP to train on my custom dataset with the following params:
Dataset size : 50k image-text pairs
Batch size : 128
Image Size : 224
Gpus : 1
Epochs : 500
It's been running for a while now, I'm on my 15th epoch, and the loss hasn't changed at all. It isn't a constant number, but its constantly at 4... | closed | 2021-09-13T20:47:23Z | 2022-04-06T00:11:30Z | https://github.com/mlfoundations/open_clip/issues/17 | [] | tarunn2799 | 14 |
WZMIAOMIAO/deep-learning-for-image-processing | pytorch | 737 | MAP和AP50 | 如果我的数据集只有一个类别,这时候输出的指标里MAP和AP50应该差不多吧?为什么MAP才0.3,AP50倒是有0.7。怎么修改相应指标呢,如果我想输出其他的指标,例如准确率,召回率或者自定义的一些指标 | open | 2023-05-20T06:12:37Z | 2023-05-20T06:12:37Z | https://github.com/WZMIAOMIAO/deep-learning-for-image-processing/issues/737 | [] | thestars-maker | 0 |
iMerica/dj-rest-auth | rest-api | 466 | You're accessing the development server over HTTPS, but it only supports HTTP. | You're accessing the development server over HTTPS, but it only supports HTTP.
This error always shows up while assessing a dj-rest-auth view | open | 2023-01-06T08:00:50Z | 2023-01-17T12:34:06Z | https://github.com/iMerica/dj-rest-auth/issues/466 | [] | Danimoz | 1 |
asacristani/fastapi-rocket-boilerplate | pydantic | 22 | Testing: add mypy and pylint to the pre-commit | A lot of lines to fix. | closed | 2023-10-11T10:59:46Z | 2024-04-04T22:00:48Z | https://github.com/asacristani/fastapi-rocket-boilerplate/issues/22 | [
"enhancement",
"improvement"
] | asacristani | 0 |
pydata/pandas-datareader | pandas | 63 | Yahoo Finance Options tests raises ValueError: time data 'August 28, 2015' does not match format '%B %d, %Y' | Hello,
some Yahoo Finance Options tests raises
```
ValueError: time data 'August 28, 2015' does not match format '%B %d, %Y'
```
I can see this exception using
```
$ nosetests -s -v
======================================================================
ERROR: test_get_all_data (test_data.TestYahooOptions)
-------... | closed | 2015-08-22T06:57:39Z | 2017-01-09T16:37:37Z | https://github.com/pydata/pandas-datareader/issues/63 | [] | femtotrader | 7 |
pallets-eco/flask-sqlalchemy | sqlalchemy | 589 | Provide a way to configure the SA engine | Hi all,
Unless I'm mis-reading the code, there is no way to provide engine creation options. One of them that appears with SA 1.2 is [pool_pre_ping](http://docs.sqlalchemy.org/en/latest/core/pooling.html#pool-disconnects-pessimistic).
I'm not sure I can provide extra parameters via flask-sqlalchemy parameters. S... | closed | 2018-01-28T16:00:01Z | 2021-04-03T16:28:27Z | https://github.com/pallets-eco/flask-sqlalchemy/issues/589 | [] | Lawouach | 6 |
deepinsight/insightface | pytorch | 2,104 | why 1machine (TITAN RTX ) +1 machine( RTX 3060) training time are slower any one machine | python -m torch.distributed.launch --nproc_per_node=1 --nnodes=2 --node_rank=0 --master_addr="192.168.8.131" --master_port=12581 train.py configs/ms1mv2_mbf
python -m torch.distributed.launch --nproc_per_node=1 --nnodes=2 --node_rank=1 --master_addr="192.168.8.131" --master_port=12581 train.py configs/ms1mv2_mbf
... | open | 2022-09-15T03:30:26Z | 2022-09-15T03:30:26Z | https://github.com/deepinsight/insightface/issues/2104 | [] | wavelet2008 | 0 |
ScrapeGraphAI/Scrapegraph-ai | machine-learning | 194 | Without any api key | Can I use this library without keys? Because gpt has a free version, can I use the same? | closed | 2024-05-09T15:47:54Z | 2024-05-09T16:25:30Z | https://github.com/ScrapeGraphAI/Scrapegraph-ai/issues/194 | [] | progeroffline | 1 |
matplotlib/mplfinance | matplotlib | 111 | Change font size of title. | If the length of title is too big , cropping occurs instead of reducing the font size | closed | 2020-04-29T08:04:02Z | 2020-04-30T01:45:04Z | https://github.com/matplotlib/mplfinance/issues/111 | [
"question"
] | abhisheksharma26jan | 1 |
microsoft/unilm | nlp | 924 | [layoutlmv3]: Issue with label format? Inference yields boundary boxes that are too short. | Hi,
I am working on object detection with layoutlmv3.
I am using the publaynet fine tuned model and have a training set with about 600 documents.
The issue that I am facing is that the predicted boundary boxes are only kind of correct. In most of the documents the predicted boundary are "too short". Meaning ... | closed | 2022-11-20T00:32:52Z | 2023-06-06T12:40:43Z | https://github.com/microsoft/unilm/issues/924 | [] | OGiesecke | 2 |
Kav-K/GPTDiscord | asyncio | 425 | How to change model for indexing? | gpt3 sucks at math and code! I'm trying to use gpt4 for indexing but with no luck. It'd be great if there was a model parameter for indexing commands. currently, it only supports while querying which is not helpful if the context is written using gpt3.
I also tried setting the settings parameter model to gpt-4 but ... | open | 2023-11-17T21:50:31Z | 2023-11-17T22:27:49Z | https://github.com/Kav-K/GPTDiscord/issues/425 | [
"enhancement",
"help wanted",
"high-prio"
] | ashra-main | 14 |
tatsu-lab/stanford_alpaca | deep-learning | 60 | Plan to release the web demo code | Hi, thanks for sharing your work, this is amazing!
Do you plan to release the web demo code ?
| closed | 2023-03-16T14:11:30Z | 2023-03-16T16:18:34Z | https://github.com/tatsu-lab/stanford_alpaca/issues/60 | [] | testplop | 1 |
ultralytics/ultralytics | pytorch | 19,826 | How to Freeze Detection Head Layers in YOLOv8m-segment and Train Only Segmentation Head? | ### Search before asking
- [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/orgs/ultralytics/discussions) and found no similar questions.
### Question
Hi all,
I'm working with yolov8m-seg.pt and want to freeze the detection he... | open | 2025-03-23T04:49:45Z | 2025-03-24T16:47:11Z | https://github.com/ultralytics/ultralytics/issues/19826 | [
"question",
"segment"
] | Wang-taoshuo | 3 |
rougier/numpy-100 | numpy | 22 | 17. add `print(np.nan in set([np.nan])) # True` | print(np.nan == np.nan) # False
print(np.nan in set([np.nan])) # True
| closed | 2016-09-09T15:26:39Z | 2020-03-13T13:39:41Z | https://github.com/rougier/numpy-100/issues/22 | [] | qeatzy | 2 |
marimo-team/marimo | data-science | 4,069 | Loading indicator needs to be shown for longer | I have a notebook that I've published via github pages. It's very nice, and marimo does a wonderful job. But a number of people who have visited have said that they thought it was broken because it initially showed a spinning circle saying "Initializing...", etc., but that circle disappeared, leaving just a white pag... | closed | 2025-03-12T18:46:00Z | 2025-03-13T01:37:01Z | https://github.com/marimo-team/marimo/issues/4069 | [] | moble | 1 |
Lightning-AI/pytorch-lightning | machine-learning | 20,598 | ModelSummary does not account for every type of precision strings | ### Bug description
The `precision_to_bits` dictionary in https://github.com/Lightning-AI/pytorch-lightning/blob/master/src/lightning/pytorch/utilities/model_summary/model_summary.py#L219 does not account for every type of precision, e.g., `bf16-true`.
This will fail in getting the proper key from the dictionary and ... | open | 2025-02-20T14:56:27Z | 2025-02-20T14:58:14Z | https://github.com/Lightning-AI/pytorch-lightning/issues/20598 | [
"bug",
"needs triage",
"ver: 2.5.x"
] | gugarosa | 0 |
deepset-ai/haystack | pytorch | 8,410 | Create a version of DLAI lesson "Self-Reflecting Agents with Loops" (entity extraction) using ChatGenerator | We need to better understand how complex and difficult to understand Haystack example code would get if we used ChatGenerator instead of the regular Generators. For that purpose, let's create a version of https://learn.deeplearning.ai/courses/building-ai-applications-with-haystack/lesson/6/self-reflecting-agents-with-l... | closed | 2024-09-26T06:09:47Z | 2024-10-11T06:52:47Z | https://github.com/deepset-ai/haystack/issues/8410 | [
"P1"
] | julian-risch | 2 |
pandas-dev/pandas | pandas | 60,645 | DOC: pandas.DataFrame.aggregate return value | ### Pandas version checks
- [X] I have checked that the issue still exists on the latest versions of the docs on `main` [here](https://pandas.pydata.org/docs/dev/)
### Location of the documentation
https://pandas.pydata.org/docs/dev/reference/api/pandas.DataFrame.aggregate.html#pandas.DataFrame.aggregate
### Docum... | closed | 2025-01-02T12:12:12Z | 2025-01-05T18:19:52Z | https://github.com/pandas-dev/pandas/issues/60645 | [
"Docs",
"Duplicate Report"
] | sa42bme | 2 |
mljar/mercury | data-visualization | 119 | Enhancement: Add new apps via uploading jupyter notebooks via drag and drop in the browser | It would be nice, if users could create new apps via uploading their custom jupyter notebooks via drag and drop in the browser on the home screen of mercury.
Due to security concerns, this feature should only be enabled in trustworthy environments, e.g. via explicitly submitting an additional command-line argument `... | closed | 2022-07-01T11:46:12Z | 2023-02-20T09:11:29Z | https://github.com/mljar/mercury/issues/119 | [] | jonaslandsgesell | 3 |
LibreTranslate/LibreTranslate | api | 477 | exclude db from .gitignore | Hello
Please, exclude db from .gitignore because it doesnt work with ci. Image can't start
```
Traceback (most recent call last):
File "/app/./venv/bin/libretranslate", line 8, in <module>
Loaded support for 3 languages (4 models total)!
sys.exit(main())
File "/app/venv/lib/python3.10/site-packages/l... | open | 2023-08-04T12:43:11Z | 2023-10-19T18:25:59Z | https://github.com/LibreTranslate/LibreTranslate/issues/477 | [
"possible bug"
] | superset1 | 1 |
gradio-app/gradio | deep-learning | 9,939 | Dropdown and LinePlot buggy interaction | ### Describe the bug
Interactive dropdowns (```gr.Dropdown(options, interactive=True)```) do not work if a LinePlot (probably similar with ScatterPlot and others, but untested) is provided in the same block. This also happens if the plot is in other columns and rows. I did not check if it also happens with other com... | closed | 2024-11-11T14:51:32Z | 2025-02-07T18:16:33Z | https://github.com/gradio-app/gradio/issues/9939 | [
"bug"
] | nestor98 | 3 |
tableau/server-client-python | rest-api | 693 | server.jobs.get_by_id failing inconsistently with 401002: Unauthorized Access error | Hello,
I am writing a python script to trigger and monitor extract refreshes for a given set of datasource IDs.
First, I trigger the refresh using `server.datasources.refresh(datasource)` for all the given datasource IDs using multi threading.
Then, I monitor the progress of these refreshes and print out a messa... | closed | 2020-09-16T12:34:24Z | 2023-04-20T18:38:03Z | https://github.com/tableau/server-client-python/issues/693 | [] | quenchua | 5 |
roboflow/supervision | machine-learning | 1,016 | Regarding zone problem | ### Search before asking
- [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar feature requests.
### Question
Currently, learning two yolov8 model, one for person detection other for object detection : Main problem is for automated selfcheckout based on ... | closed | 2024-03-18T04:04:29Z | 2024-03-18T08:46:23Z | https://github.com/roboflow/supervision/issues/1016 | [
"question"
] | Abhijeet241093 | 1 |
hyperspy/hyperspy | data-visualization | 3,464 | Cannot navigate signal with 1D or 2D navigator with keyboard on macOS | #### Describe the bug
Hi everyone, not sure what I'm doing wrong here...
I cannot navigate a signal on my macOS v15.1 with HyperSpy v2.2. I've tried left/right with all modifier keys (shift, control, option, and command) and combinations thereof.
Navigating with the mouse works as before.
#### To Reproduce
`... | open | 2024-11-17T11:35:48Z | 2024-11-18T15:19:43Z | https://github.com/hyperspy/hyperspy/issues/3464 | [
"type: bug"
] | hakonanes | 9 |
plotly/dash | data-visualization | 2,966 | performance issues when building custom components using dash-component-boilerplate |
When using the [dash-component-boilerplate] to build my custom React component, the component becomes very sluggish. This component is related to rendering graphics on a canvas.
React framework show this

and when i ... | closed | 2024-08-27T13:02:42Z | 2024-08-28T02:08:20Z | https://github.com/plotly/dash/issues/2966 | [
"performance",
"bug",
"P3"
] | manyuemeiquqi | 3 |
Kanaries/pygwalker | plotly | 125 | Cannot load more than | When I try to embed pygwalker in `streamlit`, I get the following error:
```
Dataframe is too large for ipynb files. Only 14862 sample items are printed to the file.
```
Is it a known issue that pygwalker cannot handle large datasets?
Thanks a lot for the work, the project looks super cool 😄
Best,
A... | closed | 2023-06-05T08:41:15Z | 2023-07-06T02:02:19Z | https://github.com/Kanaries/pygwalker/issues/125 | [
"fixed but needs feedback",
"P1"
] | ruaultadrien | 2 |
ipython/ipython | jupyter | 14,635 | selene_sdk issue |
i got this error message and couldn't find where's the issue
```
ValueError Traceback (most recent call last)
<ipython-input-3-c4059c3098d2> in <module>
----> 1 parse_configs_and_run(configs, lr=0.01)
2 print("Fin de Exécussion")
~/anaconda3/envs/selene-gpu/lib/python3.6/site-p... | closed | 2024-12-29T20:32:35Z | 2025-01-01T21:18:22Z | https://github.com/ipython/ipython/issues/14635 | [] | syrine-27 | 2 |
pyjanitor-devs/pyjanitor | pandas | 1,068 | Discussion: arguments `old_min` and `old_max` should be removed from `min_max_scale` | ```python
>>> import pandas as pd
>>> import janitor
# Use one column dataframe to avoid scaling the entire data or the column data problem
>>> df = pd.Series([0, 1, 2]).to_frame()
# use the minimum and maximum value of data
>>> df.min_max_scale()
0
0 0.0
1 0.5
2 1.0
# Overwrite the value o... | closed | 2022-04-27T03:52:39Z | 2022-06-02T01:10:30Z | https://github.com/pyjanitor-devs/pyjanitor/issues/1068 | [] | Zeroto521 | 1 |
alteryx/featuretools | data-science | 1,885 | No code coverage on __main__.py | https://github.com/alteryx/featuretools/pull/1882 Is passing for all CI checks except for code coverage, where suddenly there's no coverage of `__main__.py`. That PR's scipy update could be to blame, or it could be some untracked change (setuptools 60.8 vs setuptools 60.7).
We should determine why coverage was lost-... | closed | 2022-02-08T16:30:35Z | 2022-03-02T21:46:42Z | https://github.com/alteryx/featuretools/issues/1885 | [] | tamargrey | 0 |
graphql-python/graphene-django | django | 949 | Error in GraphQL Mutation Expected value of type ID | Model
```python
class Series(models.Model):
title = models.CharField(max_length=255, unique=True, db_index=True)
desc = RichTextUploadingField(verbose_name="Description", default= "Coming Soon...", max_length=10000)
series_type = models.ForeignKey(SeriesType, on_delete=models.CASCADE)
SERIES_STATU... | closed | 2020-04-28T09:20:52Z | 2020-05-02T19:40:35Z | https://github.com/graphql-python/graphene-django/issues/949 | [] | modbender | 3 |
voila-dashboards/voila | jupyter | 1,377 | User facing changelog for the 0.5.0 release | <!--To help us understand and resolve your issue, please fill out the form to the best of your ability.-->
<!--You can feel free to delete the sections that do not apply.-->
### Problem
We should highlight the major changes landing in `0.5.0` instead of just pointing users to the raw changelog: https://github.co... | closed | 2023-08-10T13:20:21Z | 2023-08-16T12:48:12Z | https://github.com/voila-dashboards/voila/issues/1377 | [
"documentation"
] | jtpio | 0 |
Esri/arcgis-python-api | jupyter | 1,435 | Branch editing error | **Describe the bug**
Branch editing in python is not working properly.
**Screenshots to reproduce**

`.
There are multiple ways this can be achieved:
Option 1 (easiest): Use sklearn `KNNclassifier` (or `LogisticRegression`) applied to `X=features, y=labels` in order to produce out-of-sa... | closed | 2023-05-31T22:02:27Z | 2023-07-27T19:43:36Z | https://github.com/cleanlab/cleanlab/issues/735 | [
"enhancement",
"help-wanted"
] | jwmueller | 2 |
junyanz/pytorch-CycleGAN-and-pix2pix | deep-learning | 1,607 | Is there a sample I can use to paint an image without cutting it? | I more or less understood the test, but is there any way to paint images (I trained a small model with references on how to do it) without having to lower the quality so much? if the image is 256 you can hardly see anything even if you raise the quality. | open | 2023-10-29T23:20:33Z | 2023-10-29T23:20:33Z | https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/1607 | [] | Keiser04 | 0 |
yt-dlp/yt-dlp | python | 11,928 | PBS - Unable to extract | ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [X] I'm reporting that yt-dlp is broken on a **supported** site
- [X] I've verified that I have **updated yt-dlp to nightly or master** ([update instruc... | closed | 2024-12-27T21:23:08Z | 2025-01-03T16:51:58Z | https://github.com/yt-dlp/yt-dlp/issues/11928 | [
"duplicate",
"site-bug"
] | wallyps | 5 |
keras-team/autokeras | tensorflow | 1,120 | Multi-label classification with two labels | ### Bug Description
<!---
A clear and concise description of what the bug is.
-->
ImageClassifier classification head treats the multi-label classification with 2 labels as multi-class classification one-hot encoded labels.
### Bug Reproduction
Code for reproducing the bug:
----
from sklearn.datasets im... | closed | 2020-05-05T18:50:55Z | 2020-06-01T18:48:34Z | https://github.com/keras-team/autokeras/issues/1120 | [
"bug report",
"pinned"
] | qingquansong | 0 |
sigmavirus24/github3.py | rest-api | 336 | Proxy attributes to stored JSON | This way as the GitHub API expands, even if we don't explicitly set it, people can still do things like
``` py
pr = github3.pull_request('user', 'project', number)
pr.merged
```
It won't be documented in our docs but they'll be able to use it at least
| closed | 2015-01-07T17:44:47Z | 2015-12-27T16:56:19Z | https://github.com/sigmavirus24/github3.py/issues/336 | [] | sigmavirus24 | 8 |
plotly/dash | plotly | 2,295 | Dropdown Options Extending Beyond Container | For a space-limited dashboard, it's common to have dropdown options with names that are much longer than the space allocated for the dropdown button. Additionally, for my application assume that:
- Each option needs to be a single line
- The full option text should be visible when the dropdown is open (i.e. no elli... | open | 2022-11-01T16:01:59Z | 2024-08-13T19:22:08Z | https://github.com/plotly/dash/issues/2295 | [
"feature",
"P3"
] | TGeary | 2 |
holoviz/panel | plotly | 7,334 | Less readable for panel.pane.DataFrame in Jupyter Dark Theme | <!--
Thanks for contacting us! Please read and follow these instructions carefully, then you can delete this introductory text. Note that the issue tracker is NOT the place for usage questions and technical assistance; post those at [Discourse](https://discourse.holoviz.org) instead. Issues without the required inform... | open | 2024-09-27T16:30:43Z | 2024-10-24T15:19:05Z | https://github.com/holoviz/panel/issues/7334 | [] | YongcaiHuang | 1 |
AUTOMATIC1111/stable-diffusion-webui | deep-learning | 15,320 | [Feature Request]: Add Hypernetwork Refresh API for API Mode. | ### Is there an existing issue for this?
- [x] I have searched the existing issues and checked the recent builds/commits
### What would your feature do ?
Hello,
I've recently been working with Stable Diffusion and my project is deployed on a server, necessitating operation via API mode. I noticed that the A... | closed | 2024-03-19T07:14:35Z | 2024-04-12T03:02:42Z | https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/15320 | [
"enhancement"
] | FEXAQAQ | 1 |
numba/numba | numpy | 9,225 | python312 什么时候可以用 | <!--
Thanks for opening an issue! To help the Numba team handle your information
efficiently, please first ensure that there is no other issue present that
already describes the issue you have
(search at https://github.com/numba/numba/issues?&q=is%3Aissue).
-->
## Reporting a bug
<!--
Before submittin... | closed | 2023-10-05T01:49:50Z | 2023-10-05T07:44:49Z | https://github.com/numba/numba/issues/9225 | [
"duplicate"
] | Franklyn1987 | 1 |
exaloop/codon | numpy | 368 | Upstreaming OpenMP changes discussion | This is just an attempt to start a discussion about what it would take to upstream the changes (or perhaps some another solution) for codon. | open | 2023-04-24T06:10:16Z | 2024-11-10T06:05:58Z | https://github.com/exaloop/codon/issues/368 | [
"enhancement"
] | seanfarley | 5 |
vchaptsev/cookiecutter-django-vue | graphql | 40 | Don't npm install on every serve | No reason to install all the node modules every time you run the app, it adds a ton of time to startup needlessly. There should be a dockerfile for the Frontend app that does this and finally just runs the serve command. | open | 2019-09-08T19:34:12Z | 2020-04-08T22:05:29Z | https://github.com/vchaptsev/cookiecutter-django-vue/issues/40 | [
"refactor"
] | mekhami | 0 |
Kludex/mangum | asyncio | 236 | [Question] How to get logs like Zappa | Hi there
I followed this tutorial to get FastAPI up into a Lambda function: https://adem.sh/blog/tutorial-fastapi-aws-lambda-serverless
It seems to be working, but when I tail the logs (`sls logs --function app --stage test`), I see my 'hello' INFO log in there, but it's enclosed in a large block of other logging... | closed | 2022-02-13T14:04:26Z | 2022-03-05T04:40:02Z | https://github.com/Kludex/mangum/issues/236 | [] | dsmurrell | 5 |
feature-engine/feature_engine | scikit-learn | 195 | test code in rst files | for each transformer, and also in the quickstart we have code in rst files. I would like to introduce tests, so when we make changes, the tests would highlight if something is broken and needs fixing. At the moment, we need to manually check.
This will get worse when we add more complicated tutorials on rst files. | closed | 2020-12-09T10:04:30Z | 2024-08-25T16:58:32Z | https://github.com/feature-engine/feature_engine/issues/195 | [
"docs",
"code quality"
] | solegalli | 0 |
aio-libs/aiomysql | asyncio | 440 | AttributeError: '_WindowsSelectorEventLoop' object has no attribute 'acquire' | async with pool.acquire() as conn:
async with conn.cursor() as cur:
# await cur.execute("SELECT 42;")
insert_sql = "insert into article_test(title) values('{}') ".format(title)
await cur.execute(insert_sql) | closed | 2019-09-20T07:42:23Z | 2019-09-20T14:44:04Z | https://github.com/aio-libs/aiomysql/issues/440 | [] | hubinggg | 1 |
ultrafunkamsterdam/undetected-chromedriver | automation | 1,208 | Flagged by Imperva | I've been getting "Error 15" after trying to login to "https://driverpracticaltest.dvsa.gov.uk/login".
This is the same issue as #690, however the suggested workaround on that thread no longer works as you don't get an instant captcha, so no cookies to grab.
I'm able to get the login page fine but as soon as I click ... | open | 2023-04-19T02:53:53Z | 2023-06-25T13:40:59Z | https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/1208 | [] | JacobHobday | 4 |
jina-ai/clip-as-service | pytorch | 80 | Does this service support multiple GPU? | closed | 2018-11-30T10:16:43Z | 2018-11-30T10:31:05Z | https://github.com/jina-ai/clip-as-service/issues/80 | [] | jiqiujia | 1 | |
ultralytics/yolov5 | deep-learning | 12,801 | The reasoning result is abnormal | ### Search before asking
- [X] I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and found no similar bug report.
### YOLOv5 Component
_No response_
### Bug
I'm training on a custom dataset that has only one category,The training is all normal, and the final val result visualizatio... | closed | 2024-03-10T04:40:25Z | 2024-10-20T19:41:05Z | https://github.com/ultralytics/yolov5/issues/12801 | [
"bug"
] | Bin-ze | 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.