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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
iterative/dvc | data-science | 10,056 | dvc exp run --temp: dvc-tracked dependencies are not checked out | # Bug Report
## Issue name
dvc exp run --temp: dvc-tracked dependencies are not checked out
## Description
dvc exp run --temp will not dvc checkout the dependency `file.txt` from `file.txt.dvc` if `file.txt` has been modified.
### Reproduce
1. Setup a git repo with the following minimal structure:
... | open | 2023-10-27T14:51:48Z | 2024-03-25T10:45:43Z | https://github.com/iterative/dvc/issues/10056 | [] | ralfbanisch | 10 |
Textualize/rich | python | 2,855 | [REQUEST] rich.traceback.install should also update threading.excepthook | **How would you improve Rich?**
`rich.traceback.install` doesn't update [`threading.excepthook`](https://docs.python.org/3/library/threading.html#threading.excepthook) so default excepthook gets called for exceptions inside threads.
**What problem does it solve for you?**
I don't have to do it myself:
```python... | open | 2023-03-04T22:29:02Z | 2023-03-04T22:31:21Z | https://github.com/Textualize/rich/issues/2855 | [
"Needs triage"
] | AleksaC | 1 |
huggingface/datasets | pytorch | 6,973 | IndexError during training with Squad dataset and T5-small model | ### Describe the bug
I am encountering an IndexError while training a T5-small model on the Squad dataset using the transformers and datasets libraries. The error occurs even with a minimal reproducible example, suggesting a potential bug or incompatibility.
### Steps to reproduce the bug
1.Install the required libr... | closed | 2024-06-16T07:53:54Z | 2024-07-01T11:25:40Z | https://github.com/huggingface/datasets/issues/6973 | [] | ramtunguturi36 | 2 |
strawberry-graphql/strawberry | fastapi | 3,498 | Changelog on PYPI redirect to error | Was checking the strawberry page on [PYPI](https://pypi.org/project/strawberry-graphql/), and in the left column you have a "changelog" link:

The links redirects to [https://strawberry.rocks/changelog](h... | closed | 2024-05-14T08:23:08Z | 2025-03-20T15:56:44Z | https://github.com/strawberry-graphql/strawberry/issues/3498 | [] | Philaeux | 2 |
cvat-ai/cvat | pytorch | 9,088 | "Merge Shape/Tracks" function is not working at all | ### Actions before raising this issue
- [x] I searched the existing issues and did not find anything similar.
- [x] I read/searched [the docs](https://docs.cvat.ai/docs/)
### Steps to Reproduce
1. Annotate any image using CVAT, Bounding Box or Polygon.
2. Annotate the same image but the second annotation must inters... | closed | 2025-02-10T23:59:20Z | 2025-02-11T06:22:08Z | https://github.com/cvat-ai/cvat/issues/9088 | [
"bug"
] | ZA0068 | 1 |
plotly/dash | plotly | 2,791 | [BUG] width of the dcc.Input field does not scale properly when step=None | **Describe your context**
My environment:
```
dash 2.15.0
dash-core-components 2.0.0
dash-html-components 2.0.0
dash-table 5.0.0
```
**Describe the bug**
I have a `dcc.Input` component linked to the `dcc.Slider`, the components share `min`, `max`, `step` and `value` properties.... | closed | 2024-03-12T15:53:40Z | 2024-03-25T12:39:44Z | https://github.com/plotly/dash/issues/2791 | [] | nadijagraca | 6 |
autokey/autokey | automation | 704 | Autokey drops characters when insserting text from phrases | ## Classification:
Bug
## Reproducibility:
Always
## AutoKey version:
0.95.10
## Used GUI:
Gtk
## Installed via:
PPA (I think)
## Linux distribution:
Ubuntu 22.04 LTS, Gnome version 42, Windowing System X11`, kernel: 5.15.0-39-generic
## Summary:
Pasting a phrase into my text leaves random char... | closed | 2022-06-20T09:51:41Z | 2022-06-23T14:25:55Z | https://github.com/autokey/autokey/issues/704 | [
"duplicate",
"phrase expansion",
"invalid",
"user support"
] | HumptyDumptyNumpty | 13 |
liangliangyy/DjangoBlog | django | 400 | 建议后台去掉网站统计代码 必填字段。 | <!--
如果你不认真勾选下面的内容,我可能会直接关闭你的 Issue。
提问之前,建议先阅读 https://github.com/ruby-china/How-To-Ask-Questions-The-Smart-Way
-->
**我确定我已经查看了** (标注`[ ]`为`[x]`)
- [x] [DjangoBlog的readme](https://github.com/liangliangyy/DjangoBlog/blob/master/README.md)
- [ ] [配置说明](https://github.com/liangliangyy/DjangoBlog/blob/master/bin... | closed | 2020-05-07T04:44:26Z | 2021-07-12T08:30:39Z | https://github.com/liangliangyy/DjangoBlog/issues/400 | [] | xjzyy | 3 |
christabor/flask_jsondash | flask | 90 | Add warning in UI when adding a non-https page that throws an error for iframe option | If the app is used with https enabled, then trying to load an http iframe will throw an error. This is not immediately known to the user unless they were to open the console and see the output.
This can be achieved by two ways:
1. Check any errors in js
2. (Easier) if window.location.protocol is https:, and the ... | open | 2017-04-11T23:53:37Z | 2017-04-11T23:53:48Z | https://github.com/christabor/flask_jsondash/issues/90 | [
"enhancement"
] | christabor | 0 |
encode/apistar | api | 254 | Django Views relying on Settings | A pretty common pattern for django models is the following:
```python
# models.py
class Profile(models.Model):
user = models.ForeignKey(settings.AUTH_USER_MODEL)
```
If you use a view that relies on one of these models, the settings for the django_orm aren't configured so it errors.
```python
# vi... | closed | 2017-08-25T16:24:35Z | 2018-03-28T21:36:43Z | https://github.com/encode/apistar/issues/254 | [] | audiolion | 2 |
jupyter-book/jupyter-book | jupyter | 1,666 | mathjax overbrace in markdown looks strange | ### Describe the bug
**context**
writiing LaTeX math eqution in MarkDown
the HTML page by the LaTeX command `\overbrace` looks strange (below fig-1), the pdf file looks good (bolow fig-2)
<img width="224" alt="strange-look-overbrace" src="https://user-images.githubusercontent.com/17511292/158062961-815284fe-d... | open | 2022-03-13T13:53:27Z | 2022-04-13T06:54:41Z | https://github.com/jupyter-book/jupyter-book/issues/1666 | [
"bug"
] | husisy | 2 |
litestar-org/litestar | pydantic | 3,579 | Bug: exception_handlers are not applied when debug flag is False | ### Description
I want to configure a custom exception handler for the following use case. I want to run the app in production but log stack traces of internal server errors but other HTTPException should not be logged with stack trace as they are usually triggered specifically and converted to a proper response by Li... | closed | 2024-06-17T14:39:40Z | 2025-03-20T15:54:46Z | https://github.com/litestar-org/litestar/issues/3579 | [
"Bug :bug:"
] | TheZwieback | 2 |
quokkaproject/quokka | flask | 615 | cli: fetch themes | implement fetch install of theme from url repo
https://github.com/rochacbruno/quokka_ng/issues/56 | open | 2018-02-07T01:48:37Z | 2018-02-07T01:48:37Z | https://github.com/quokkaproject/quokka/issues/615 | [
"1.0.0",
"hacktoberfest"
] | rochacbruno | 0 |
axnsan12/drf-yasg | rest-api | 273 | add tags description | The possibility to describe tags like the following equivalent in yaml
tags:
- name: "pet"
description: "Everything about your Pets"
externalDocs:
description: "Find out more"
url: "http://swagger.io"
- name: "store"
description: "Access to Petstore orders"
- name: "user"
description: "Opera... | closed | 2018-12-14T13:12:52Z | 2019-04-02T15:18:49Z | https://github.com/axnsan12/drf-yasg/issues/273 | [] | m-hu | 4 |
wkentaro/labelme | computer-vision | 523 | module 'qtpy.QtGui' has no attribute 'QGuiApplication' | environment:windows10+anaconda3+python3.6.9+labelme3.16.7
when I launch labelme and open a directory, I get this error. It makes the buttons 'next image' and 'prev image' invalid.
I think the line1337 of \labelme\app.py should be
`if QtCore.Qt.KeyboardModifiers() == \`
(It used to be `if QtGui.QGuiApplication.keyb... | closed | 2019-12-11T09:26:02Z | 2020-02-06T16:09:47Z | https://github.com/wkentaro/labelme/issues/523 | [] | greenhand10086 | 3 |
django-import-export/django-import-export | django | 1,318 | How about support dark mode style when importing from admin pages | **Describe the bug**
This is a suggestion rather than a bug, so everything works fine, except the design:
When using dark mode, the import confirmation view does not display properly
**To Reproduce**
Steps to reproduce the behavior:
1. Apply admin using ImportMixin, ImportExportMixin or ImportExportModelAdmin
... | closed | 2021-08-24T19:18:08Z | 2022-03-31T16:52:53Z | https://github.com/django-import-export/django-import-export/issues/1318 | [
"bug"
] | clichedmoog | 5 |
open-mmlab/mmdetection | pytorch | 11,821 | How to use dict loaded in memory rather than speicfying path to json in the config for training | I am wanting to train on certain subsets of my data iteratively.
At the moment I am loading the json file, modifying it, resaving it and then this is reloaded via the path specified in the config file. This feels pretty inefficient I want to just load it, modify it and then use it directly in training.
Does anyo... | open | 2024-07-01T08:46:53Z | 2024-07-01T08:47:08Z | https://github.com/open-mmlab/mmdetection/issues/11821 | [] | AlixBird | 0 |
pallets-eco/flask-sqlalchemy | sqlalchemy | 335 | How to get the column attribute from last row? | Say I have User:
```
[
{
"activation_code": "840896",
"id": 1,
"mobile": "4475333463333"
},
{
"activation_code": "947721",
"id": 2,
"mobile": "4475333463333"
}
]
```
How to get the specific value from a column, in this case, activation_code from last row? i.e the value in this case 947... | closed | 2015-09-23T18:45:14Z | 2020-12-05T21:31:22Z | https://github.com/pallets-eco/flask-sqlalchemy/issues/335 | [] | scheung38 | 2 |
huggingface/datasets | computer-vision | 7,287 | Support for identifier-based automated split construction | ### Feature request
As far as I understand, automated construction of splits for hub datasets is currently based on either file names or directory structure ([as described here](https://huggingface.co/docs/datasets/en/repository_structure))
It would seem to be pretty useful to also allow splits to be based on ide... | open | 2024-11-10T07:45:19Z | 2024-11-19T14:37:02Z | https://github.com/huggingface/datasets/issues/7287 | [
"enhancement"
] | alex-hh | 3 |
plotly/dash | data-science | 3,138 | Bump Flask and Werkzeug versions | We pin `flask` and `werkzeug` to older (3.0.6 / 3.0.3) versions. We should upgrade these.
We'll need to ensure compatibility across our ecosystem (OSS and Enterprise libraries). This is likely not something for 3.0 but worth considering. | open | 2025-01-29T14:07:00Z | 2025-03-11T14:17:10Z | https://github.com/plotly/dash/issues/3138 | [
"infrastructure",
"P2"
] | ndrezn | 2 |
thp/urlwatch | automation | 531 | urlwatch convience script fails if cwd is different | Hi,
the urlwatch convience script fails if the cwd is not equal to the dir the script lives in. The error message is:
```
Traceback (most recent call last):
File "urlwatch/urlwatch", line 7, in <module>
from urlwatch.cli import main
ImportError: No module named 'urlwatch'
```
My solution is to construct... | closed | 2020-07-20T19:02:40Z | 2020-07-21T09:27:56Z | https://github.com/thp/urlwatch/issues/531 | [] | e-dschungel | 1 |
pytorch/vision | computer-vision | 8,756 | The error messasge of `classes` argument of `LSUN()` should be corrected | ### 🐛 Describe the bug
Setting `["bedroom"]` to `classes` argument of [LSUN()](https://pytorch.org/vision/stable/generated/torchvision.datasets.LSUN.html) still gets the error message saying **Valid values are {'bedroom', ...}** as shown below:
```python
from torchvision import datasets
train_data = datasets... | open | 2024-11-27T00:35:45Z | 2024-11-27T14:32:32Z | https://github.com/pytorch/vision/issues/8756 | [] | hyperkai | 1 |
lanpa/tensorboardX | numpy | 85 | Variable slice/index assignment graph breaking | I have been facing an issue when trying to create a graph of a Module in which some Variables have slice assignment operations in them. I have reduced the problem to the following example, ignore the commented out `V = x` for now.
```
import torch
from torch.autograd import Variable
from tensorboardX import Summa... | open | 2018-02-15T05:02:34Z | 2019-03-03T13:13:58Z | https://github.com/lanpa/tensorboardX/issues/85 | [
"onnx",
"seems fixed"
] | filipeabperes | 18 |
gevent/gevent | asyncio | 1,219 | gevent.pool import broken | * gevent version: 1.3.2
* Python version: 3.5.1
* Operating System: CentOS 6.9
### Description:
```
(my_venv) [root@25a82e5845e4 /]# python
Python 3.5.1 (default, Oct 22 2016, 08:10:47)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-17)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>... | closed | 2018-05-29T12:47:49Z | 2018-05-30T11:46:41Z | https://github.com/gevent/gevent/issues/1219 | [] | almaslov | 4 |
Miserlou/Zappa | django | 1,861 | [Enhancement] Use abi3 binary versions for packages such as cryptography that don't have manylinux for Python 3.6/3.7 | ## Context
Zappa currently uses a combination of manylinux wheels and lambda-packages to get the right binary during deploy time. In case of manylinux, some libraries like `cryptography` don't have a manylinux binary for Python 3.6 and 3.7, but do have one for abi3 and Python 3.4, which is suppossedly upwards compatib... | closed | 2019-05-03T13:10:40Z | 2020-02-29T08:06:17Z | https://github.com/Miserlou/Zappa/issues/1861 | [] | wagmiwiz | 2 |
matplotlib/mplfinance | matplotlib | 179 | How can i apply a patch on the chart using X axis values? | I created a candle chart with `fig, axlist = mpf.plot(df, type='candle', returnfig=True)`
I'm trying to add on my chart a patch, here is what i tried:
```
new_patch = Rectangle(xy=(3, 9300), width=4, height=0.3, angle=0, color='orange')
ax1 = axlist[0]
ax1.add_patch(new_patch)
ax1.autoscale_view()
```
Thi... | closed | 2020-06-18T11:00:54Z | 2020-06-18T12:50:01Z | https://github.com/matplotlib/mplfinance/issues/179 | [
"question"
] | Dave-12-cr | 2 |
KaiyangZhou/deep-person-reid | computer-vision | 298 | basic infomation about paper | Thanks for sharing such a good project.I have a few questions about the paper.
First, how `DML` is implemented in code?
Second, what dose `DML model-1+2` mean? | closed | 2020-01-15T03:00:56Z | 2020-04-23T05:58:45Z | https://github.com/KaiyangZhou/deep-person-reid/issues/298 | [] | Adorablepet | 4 |
allenai/allennlp | data-science | 5,234 | Tqdm logging into multiple files with allennlp-optuna | <!--
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-05-31T11:27:16Z | 2021-06-02T21:44:44Z | https://github.com/allenai/allennlp/issues/5234 | [
"bug"
] | MagiaSN | 1 |
joke2k/django-environ | django | 524 | DeprecationWarning: 'pkgutil.find_loader' is deprecated and slated for removal in Python 3.14; use importlib.util.find_spec() instead on 3.12 | ```
python -Werror -c 'import environ'
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/Users/thomas/.virtualenvs/blueprint-app/lib/python3.12/site-packages/environ/__init__.py", line 30, in <module>
from .environ import *
File "/Users/thomas/.virtualenvs/blueprint-app/lib/... | closed | 2024-04-25T10:04:26Z | 2024-04-25T10:06:01Z | https://github.com/joke2k/django-environ/issues/524 | [] | graingert-coef | 1 |
onnx/onnx | scikit-learn | 6,132 | DequantizeLinear spec clarification: What happens if the subtraction overflows/underflows? | # Ask a Question
### Question
[Dequantize linear](https://onnx.ai/onnx/operators/onnx__DequantizeLinear.html) defines the dequantization formula as `y = (x - x_zero_point) * x_scale` and that `x` and `x_zero_point` must have the same type `dtype`.
What is the intended behavior if `x - x_zero_point` is outside of t... | open | 2024-05-07T14:54:44Z | 2024-05-08T14:49:24Z | https://github.com/onnx/onnx/issues/6132 | [
"question",
"topic: spec clarification"
] | TinaAMD | 1 |
roboflow/supervision | pytorch | 1,418 | Add method for REDETR model | ### Search before asking
- [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar feature requests.
### Description
Add a method to take predictions from REDETR model and convert them to detections just like for other models for instance - yolo5, ultralytic... | closed | 2024-07-31T14:58:36Z | 2024-07-31T16:24:16Z | https://github.com/roboflow/supervision/issues/1418 | [
"enhancement"
] | Bhavay-2001 | 3 |
mwaskom/seaborn | data-science | 3,146 | seaborn.objects: Text isn't shown properly when too close the axis border | Example:

Similar issues occur when halign is set for other values. When one bar is too close to the border, this type of problem occurs. | closed | 2022-11-17T14:50:09Z | 2022-11-30T11:36:40Z | https://github.com/mwaskom/seaborn/issues/3146 | [] | JanPalasek | 7 |
yeongpin/cursor-free-vip | automation | 277 | not getting pro trial | hey it doesn't show pro trial anymore , i tried everything | open | 2025-03-17T14:55:43Z | 2025-03-21T14:41:06Z | https://github.com/yeongpin/cursor-free-vip/issues/277 | [] | CryptoMaN-Rahul | 1 |
ahmedfgad/GeneticAlgorithmPython | numpy | 40 | 'mutation_type = None' not allowed | I did not use mutation, pygad print the following warning:
``` UserWarning: The percentage of genes to mutate (mutation_percent_genes=10) resutled in selecting (0) genes. The number of genes to mutate is set to 1 (mutation_num_genes=1).
If you do not want to mutate any gene, please set mutation_type=None.
```
But w... | closed | 2021-05-02T03:50:14Z | 2021-05-19T07:30:44Z | https://github.com/ahmedfgad/GeneticAlgorithmPython/issues/40 | [
"bug"
] | mathlusiverse | 5 |
holoviz/panel | plotly | 7,548 | Adding ChatBubble | A lot of times I want to incorporate the same look and feel of ChatMessage markdown, but forget the CSS class (is it `message` or `chat-message`).
To make it more explicit, I'd like to introduce ChatBubble which is simply `Markdown(css_classes=["message"])`.
Use case for me is:
```
message_col = pn.Column(widget1, w... | open | 2024-12-11T22:16:43Z | 2025-01-20T21:40:49Z | https://github.com/holoviz/panel/issues/7548 | [
"more info needed"
] | ahuang11 | 2 |
aio-libs-abandoned/aioredis-py | asyncio | 1,061 | Task got Future attached to a different loop error while migrating from aioredis 1.3.1 to 2.0 | I was trying migrate redis-py application to aioredis 2.0. It used redis client in callbacks. Below code sample is minimal example which works on aioredis 1.3.1, but fails on aioredis 2.0. It reports `RuntimeError: Task got Future <Future pending> attached to a different loop`. How should we use the redis client as cla... | closed | 2021-07-21T06:33:38Z | 2021-07-21T06:40:14Z | https://github.com/aio-libs-abandoned/aioredis-py/issues/1061 | [] | kiranpradeep | 0 |
CPJKU/madmom | numpy | 35 | rename quantize_events 'fps' to 'resolution' or similar? | While we're at it, make it also 2D capable, i.e. work also with beats or notes
| closed | 2015-12-03T12:30:11Z | 2022-01-07T11:26:36Z | https://github.com/CPJKU/madmom/issues/35 | [] | superbock | 1 |
matplotlib/matplotlib | matplotlib | 29,202 | [Bug]: `fontsize` in tables not working | ### Bug summary
Specifying `fontsize` kwarg in `matplotlib.pyplot.table` doesn't have any effect.
### Code for reproduction
```Python
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 10, 100)
y = x + 1
tableData = [['a', 1], ['b', 1]]
fig, ax = plt.subplots()
ax.plot(x, y)
t = ax.tabl... | closed | 2024-11-28T09:57:58Z | 2024-12-16T14:55:17Z | https://github.com/matplotlib/matplotlib/issues/29202 | [
"Difficulty: Easy",
"Good first issue",
"topic: table"
] | acgc99 | 8 |
deepfakes/faceswap | deep-learning | 1,264 | tools-manual:ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all() | after lastest update,when use "tools-manual",CRITICAL An unexpected crash has occurred. Crash report written to log as below.
==================================================================================
08/22/2022 10:57:03 MainProcess Aligner.init_aligner_0 multithreading start ... | closed | 2022-08-22T03:04:30Z | 2022-08-22T09:42:17Z | https://github.com/deepfakes/faceswap/issues/1264 | [] | vlccdl | 1 |
marshmallow-code/flask-marshmallow | sqlalchemy | 280 | Add fields from APIFlask? | apiflask has `File` and `Config` fields, which may be appropriate to have in flask-marshmallow: https://github.com/apiflask/apiflask/blob/main/src/apiflask/fields.py
as well as validators to use with `File` fields: https://github.com/apiflask/apiflask/blob/main/src/apiflask/validators.py | closed | 2024-01-12T05:05:48Z | 2025-01-21T18:28:40Z | https://github.com/marshmallow-code/flask-marshmallow/issues/280 | [
"feedback welcome"
] | sloria | 8 |
huggingface/datasets | tensorflow | 7,055 | WebDataset with different prefixes are unsupported | ### Describe the bug
Consider a WebDataset with multiple images for each item where the number of images may vary: [example](https://huggingface.co/datasets/bigdata-pw/fashion-150k)
Due to this [code](https://github.com/huggingface/datasets/blob/87f4c2088854ff33e817e724e75179e9975c1b02/src/datasets/packaged_modules... | closed | 2024-07-22T01:14:19Z | 2024-07-24T13:26:30Z | https://github.com/huggingface/datasets/issues/7055 | [] | hlky | 8 |
raphaelvallat/pingouin | pandas | 343 | Crash when calculating power with too large effect size | This crash occurs for me with the following code, although it may not work identically on all platforms:
```python
import numpy as np
from pingouin.effsize import compute_effsize
from pingouin.power import power_ttest
x = np.ones(10) * 0.3
y = np.ones(10) * 0.6
d = compute_effsize(x, y, paired=True)
print(d)
... | closed | 2023-02-21T23:59:39Z | 2023-03-09T08:46:09Z | https://github.com/raphaelvallat/pingouin/issues/343 | [
"bug :boom:"
] | agkphysics | 5 |
slackapi/python-slack-sdk | asyncio | 1,330 | Non-hex colors (danger/good/warn) are not displayed by `BlockAttachment`s | ### Reproducible in:
#### The Slack SDK version
**slack-sdk 3.19.5**
#### Python runtime version
**python 3.7.15**
#### OS info
**ProductName: macOS
ProductVersion: 13.2
BuildVersion: 22D49
Darwin Kernel Version 22.3.0: Thu Jan 5 20:48:54 PS... | closed | 2023-02-16T00:56:34Z | 2023-02-16T06:20:47Z | https://github.com/slackapi/python-slack-sdk/issues/1330 | [
"question",
"web-client",
"Version: 3x"
] | ADraginda | 4 |
huggingface/datasets | nlp | 7,164 | fsspec.exceptions.FSTimeoutError when downloading dataset | ### Describe the bug
I am trying to download the `librispeech_asr` `clean` dataset, which results in a `FSTimeoutError` exception after downloading around 61% of the data.
### Steps to reproduce the bug
```
import datasets
datasets.load_dataset("librispeech_asr", "clean")
```
The output is as follows:
> Dow... | open | 2024-09-24T08:45:05Z | 2025-01-14T09:48:23Z | https://github.com/huggingface/datasets/issues/7164 | [] | timonmerk | 6 |
qubvel-org/segmentation_models.pytorch | computer-vision | 681 | Compute Tp,Fp,Tn,Fn for Multiclass Classification | closed | 2022-11-07T13:08:56Z | 2022-11-07T13:09:16Z | https://github.com/qubvel-org/segmentation_models.pytorch/issues/681 | [] | hanshassler | 0 | |
babysor/MockingBird | pytorch | 242 | 只有CPU没有GPU的机器,始终无法生成成功,只有2秒的电流音 | **python版本:**
`C:\Program Files (x86)\MockingBird-main>python -V
Python 3.9.9`
**各类库文件版本**
`C:\Program Files (x86)\MockingBird-main>pip list
Package Version
----------------------- ------------
absl-py 1.0.0
aniso8601 9.0.1
appdirs 1.4.4
attrs ... | open | 2021-11-29T12:17:01Z | 2022-01-08T02:49:51Z | https://github.com/babysor/MockingBird/issues/242 | [] | work4seo | 9 |
WZMIAOMIAO/deep-learning-for-image-processing | pytorch | 447 | “FileNotFoundError: VOCdevkit dose not in path:'./'.” | 新手入门,哔站过来的,折腾两天配好环境,运行`python train_mobilenetv2.py`出现下列报错:
```
Using cuda device training.
Traceback (most recent call last):
File "train_mobilenetv2.py", line 224, in <module>
main()
File "train_mobilenetv2.py", line 65, in main
raise FileNotFoundError("VOCdevkit dose not in path:'{}'.".format(VOC_r... | closed | 2021-12-23T04:48:09Z | 2021-12-25T05:50:02Z | https://github.com/WZMIAOMIAO/deep-learning-for-image-processing/issues/447 | [] | volmodaoist | 1 |
encode/httpx | asyncio | 1,952 | httpx.HTTPStatusError: Redirect response '302 Moved Temporarily' | I have this code:
```
class Tracker:
def __init__(self, login, password):
self.login = login
self.password = password
self.api_url = 'https://tracking.russianpost.ru/rtm34?wsdl'
httpx_client = httpx.AsyncClient(auth=(self.login, self.password))
self.client... | closed | 2021-11-28T21:29:56Z | 2021-12-14T14:10:28Z | https://github.com/encode/httpx/issues/1952 | [
"question"
] | daeeros | 2 |
Evil0ctal/Douyin_TikTok_Download_API | web-scraping | 458 | [Feature request] 你好请问一下 docker 部署的 Cookie 有提供环境变量吗,还是说要clone 源码后自己改完配置文件再重新构建镜像? | 大佬您好我想咨询下关于 Docker 部署情况下如何更处理 Cookie问题,你打包的镜像是否提供了以环境变量形式传入 Cookie 的功能,还是说我需要clone 仓库源码,更改配置文件中的 Cookie 后重新打包镜像部署呢?
| open | 2024-07-21T19:37:32Z | 2024-10-16T08:46:43Z | https://github.com/Evil0ctal/Douyin_TikTok_Download_API/issues/458 | [
"enhancement"
] | hello-www-1 | 4 |
abhiTronix/vidgear | dash | 150 | can't import the vidgear as a package | <!--
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don't feel confident, it's fine to report bugs with
less details, but this makes it less likely they'll get fixed soon... | closed | 2020-07-21T20:55:11Z | 2020-07-22T02:52:26Z | https://github.com/abhiTronix/vidgear/issues/150 | [
"DUPLICATE :recycle:",
"INVALID :stop_sign:"
] | cyber-hoax | 1 |
microsoft/Bringing-Old-Photos-Back-to-Life | pytorch | 164 | Can you release the training log ? | Can you release the training log (the loss log ),so i can track the training process. | open | 2021-05-11T07:10:53Z | 2022-06-28T09:05:26Z | https://github.com/microsoft/Bringing-Old-Photos-Back-to-Life/issues/164 | [] | maryhh | 8 |
neuml/txtai | nlp | 649 | Set tokenizer.pad_token when empty for all training paths | Currently `tokenizer.pad_token` is patched to `tokenizer.eos_token` when empty for language generation models. This logic should be run for all training paths. | closed | 2024-01-29T15:31:33Z | 2024-01-29T18:02:18Z | https://github.com/neuml/txtai/issues/649 | [
"bug"
] | davidmezzetti | 0 |
mjhea0/flaskr-tdd | flask | 77 | 你会用TDD吗? | 测试代码本身也算另一种形式的业务代码,为了保证测试代码的正确。
你给测试代码写测试吗?
你给测试代码的测试代码写测试吗?
你给测试代码的测试代码的测试代码写测试吗?
你给测试代码的测试代码的测试代码的测试代码写测试吗?
你不写,就代表你不会用TDD,你就写不出高质量代码,你就无法重构代码,你就会被程序界开除人籍 | closed | 2022-09-18T01:13:27Z | 2023-10-17T22:06:20Z | https://github.com/mjhea0/flaskr-tdd/issues/77 | [] | VisualStudioGayHub | 0 |
mwaskom/seaborn | matplotlib | 3,112 | [Feature-request] displot, facet-wise common_bins? | # Current behavior
In `displot`, we can either set:
- `common_bins=True`: to use same bins for all facets and all hues
- `common_bins=False`: to use unique bins for a given facet and a given hue
# Requested behavior
It would be really nice to have an _intermediate_ setting for `common_bins`: that is to say c... | closed | 2022-10-26T10:39:32Z | 2022-11-06T14:00:23Z | https://github.com/mwaskom/seaborn/issues/3112 | [
"wishlist",
"mod:distributions"
] | exhumea | 2 |
LibreTranslate/LibreTranslate | api | 662 | Japanese translate to english error: 東京都新宿区富久町36-17 => TEL : 03-6256-8430 | If I want translate a Japanese address to english, but got a Tel number, eg: 東京都新宿区富久町36-17 => TEL : 03-6256-8430
Or others no translate words: 東京都杉並区方南1ー50ー23 => 東京都 東京都-5411
Is any prompt command force the translator return english words?
Thanks
| open | 2024-08-16T07:57:47Z | 2024-08-16T07:58:00Z | https://github.com/LibreTranslate/LibreTranslate/issues/662 | [
"enhancement"
] | leogitpro | 0 |
miguelgrinberg/flasky | flask | 339 | flask/python web application on a Apache Centos 7 | Hello world, I am trying to host a flask/python web application on a Apache Centos 7 server. I am very much a newbie to this and very frustrated. Any help and guidance is appreciated.
Some how the pages is serving up the files as static content instead of passing the request to uwsgi and then to Python to be executed... | closed | 2018-03-01T16:15:35Z | 2018-10-14T22:25:41Z | https://github.com/miguelgrinberg/flasky/issues/339 | [
"question"
] | PythonNubie | 1 |
marimo-team/marimo | data-science | 4,086 | Is it possible to add your own object displayer at runtime | ### Description
In Jupyter I can override the displayer at runtime for different object types. Are there any plans to enable this functionality for marimo?
### Suggested solution
Jupyter has a fallback sytem that allows multiple renderers to be registered if the proper exceptions are thrown.
Here is my code for ju... | open | 2025-03-13T15:40:41Z | 2025-03-13T16:49:47Z | https://github.com/marimo-team/marimo/issues/4086 | [
"enhancement"
] | paddymul | 2 |
ydataai/ydata-profiling | pandas | 732 | Please consider update version requirement of package `visions` | **Missing functionality**
Currently, in `requirements.txt`, the version of visions is set to `0.6.0`
```
visions[type_image_path]==0.6.0
```
**Proposed feature**
Currently, visions version is 0.7.1.
Please consider update the version, or set to `visions[type_image_path]>=0.6.0`
**Additional context**... | closed | 2021-03-24T05:06:34Z | 2021-05-05T18:26:42Z | https://github.com/ydataai/ydata-profiling/issues/732 | [
"dependencies 🔗"
] | ttpro1995 | 2 |
mitmproxy/pdoc | api | 342 | Link-targets are linkified but shouldn't | #### Problem Description
If an identifier is part of a link-target it is re-linked by linkify, breaking the original a-tag.
This is similar to #335, but concerns the target instead.
#### Steps to reproduce the behavior:
1. In a docstring, add link a valid identifier (e.g. `mymodule`) is part of the target, e.g. `... | closed | 2022-02-03T13:35:02Z | 2022-02-08T08:51:18Z | https://github.com/mitmproxy/pdoc/issues/342 | [
"bug"
] | jstriebel | 5 |
gradio-app/gradio | machine-learning | 10,465 | Lite: Graphs drawn with Plotly are no longer displayed | ### Describe the bug
Since 1/29/2025 (or 1/25/2025 ), graphs drawn with Plotly and gr.Plot() have not been displayed.
But last week they were displayed without any problems.
I tried specifying the previous version like this.
`<head>`
`<script type="module" crossorigin src="https://cdn.jsdelivr.net/npm/@gradio/lite@5.... | closed | 2025-01-30T00:48:29Z | 2025-01-30T01:59:08Z | https://github.com/gradio-app/gradio/issues/10465 | [
"bug"
] | maruyamanemaru | 1 |
falconry/falcon | api | 1,678 | Request.forwarded_prefix does not include port when not behind reverse proxy | When using `forwarded_prefix` to construct absolute URLs, it does not contain the port when the application is not behind a reverse proxy.
This happens because `forwarded_prefix` uses `forwarded_host`, which falls back to the `host` property when the `Forwarded` and `X-Forwarded-Host` HTTP headers are not set.
... | closed | 2020-02-19T13:19:50Z | 2020-02-29T02:45:16Z | https://github.com/falconry/falcon/issues/1678 | [
"bug"
] | hackedd | 1 |
jupyter/docker-stacks | jupyter | 1,265 | Is there an image with ubuntu-20.04 | Hi there,
Does jupyter/base-notebook base docker image with the latest ubuntu-20.04 version exist on DockerHub?
I can only find it with ubuntu-18.04 https://hub.docker.com/layers/jupyter/base-notebook/ubuntu-18.04/images/sha256-8502dd73c35fe239a33d52ee371a30282f570e387a5503ef69639fe0c35b13ac
I appreciate any advice... | closed | 2021-04-12T11:48:01Z | 2021-04-12T19:58:50Z | https://github.com/jupyter/docker-stacks/issues/1265 | [] | midav7 | 2 |
OpenBB-finance/OpenBB | machine-learning | 6,876 | [🕹️] Starry Eyed [SIDE QUEST] | ### What side quest or challenge are you solving?
Asked 5 of my friends to star the repo
### Points
150
### Description
_No response_
### Provide proof that you've completed the task
GITHUB HANDLES :
https://github.com/abhishekbelgaonkar23?tab=stars
https://github.com/aditya-supare?tab=stars
https://github... | closed | 2024-10-25T16:45:16Z | 2024-10-30T20:53:04Z | https://github.com/OpenBB-finance/OpenBB/issues/6876 | [] | harshsbhat | 2 |
Significant-Gravitas/AutoGPT | python | 8,783 | Implement "New Run" view on Agent Runs page | * Part of #8780
 seem only feed the output of the *last* encoding layer to the decoder, while the implementation [here](https://github.com/jadore801120/attention-is-all-you-need-pytorch/blob/master/transfor... | closed | 2017-09-29T08:12:50Z | 2017-10-24T21:10:58Z | https://github.com/jadore801120/attention-is-all-you-need-pytorch/issues/27 | [] | Yevgnen | 2 |
Esri/arcgis-python-api | jupyter | 2,167 | Warning or Failure messages on issues related to transformations | **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
We currently are seeing that in certain instances of the ArcGIS pyton API the transformations are not working when the spatial dataframe is in a different pro... | open | 2024-11-19T14:49:59Z | 2025-01-07T17:47:11Z | https://github.com/Esri/arcgis-python-api/issues/2167 | [
"enhancement"
] | topowright22 | 3 |
zappa/Zappa | django | 647 | [Migrated] Temporary S3 Bucket is not deleted | Originally from: https://github.com/Miserlou/Zappa/issues/1643 by [chiqunz](https://github.com/chiqunz)
<!--- Provide a general summary of the issue in the Title above -->
## Context
<!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug -->
<!--- Also, please make sure ... | closed | 2021-02-20T12:32:23Z | 2022-08-18T12:55:09Z | https://github.com/zappa/Zappa/issues/647 | [] | jneves | 1 |
deepinsight/insightface | pytorch | 2,452 | AttributeError: 'NoneType' object has no attribute 'reshape' | I running the inswapper_main.py demo,but it's error :
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Cell In[6], line 27
25 res = img.copy()
26 for face in faces:
---> 27 res = swapper.get(res, f... | open | 2023-10-14T11:33:39Z | 2024-09-14T05:45:41Z | https://github.com/deepinsight/insightface/issues/2452 | [] | zaojue405 | 5 |
amisadmin/fastapi-amis-admin | fastapi | 87 | 请问如何添加captcha验证码? | 如何添加captcha验证码?
另外如果打开多个一级菜单,然后点击某个二级菜单,其他的一级菜单会自动关闭,这个怎么解决 | open | 2023-04-02T09:31:15Z | 2023-04-02T09:44:13Z | https://github.com/amisadmin/fastapi-amis-admin/issues/87 | [] | tomasky | 0 |
PaddlePaddle/PaddleHub | nlp | 1,763 | paddlehub 识别某些图片异常无消息退出 | paddlehub 识别遇到某些图片就异常退出没有任何异常消息直接结束,啥情况 | closed | 2022-01-07T15:01:20Z | 2022-01-11T11:22:07Z | https://github.com/PaddlePaddle/PaddleHub/issues/1763 | [] | bouyeijiang | 1 |
PaddlePaddle/ERNIE | nlp | 281 | NER任务中,如何利用 Fine-tuning 得到的模型对新数据进行批量预测? | 官方例子中,给了 predict_classifier.py 来进行分类任务的预测,请问一下对于微调后的 ner 模型,如何进行批量预测呢? | closed | 2019-08-15T04:03:47Z | 2020-05-28T11:52:59Z | https://github.com/PaddlePaddle/ERNIE/issues/281 | [
"wontfix"
] | yechens | 4 |
serengil/deepface | machine-learning | 1,340 | [FEATURE]: Bulk process of DeepFace.verify | ### [FEATURE]: Bulk process of DeepFace.verify #1340
Up till
https://pypi.org/project/deepface/0.0.31/
It supported
```
dataset = [
['dataset/img1.jpg', 'dataset/img2.jpg'],
['dataset/img1.jpg', 'dataset/img3.jpg']
]
resp_obj = DeepFace.verify(dataset)
```
As of 0.0.93, it's no longer supported.
I ... | closed | 2024-09-16T19:29:30Z | 2024-09-16T19:47:44Z | https://github.com/serengil/deepface/issues/1340 | [
"enhancement",
"wontfix"
] | kcfdaniel | 2 |
pywinauto/pywinauto | automation | 1,410 | A small typo on the InvalidWindowHandle error message | Just want to report that there is a small typo on the `InvalidWindowHandle` error message:
https://github.com/pywinauto/pywinauto/blob/bf7f789d01b7c66ccd0c213db0a029da7e588c9e/pywinauto/controls/atspiwrapper.py#L60
https://github.com/pywinauto/pywinauto/blob/bf7f789d01b7c66ccd0c213db0a029da7e588c9e/pywinauto/cont... | open | 2024-10-07T23:09:01Z | 2025-02-16T07:12:46Z | https://github.com/pywinauto/pywinauto/issues/1410 | [] | s101d1 | 5 |
Farama-Foundation/PettingZoo | api | 732 | [Proposal] Change MPE rendering to use Pygame instead of pyglet | ### Proposal
Currently MPE uses the outdated rendering engine Pyglet. It should be changed to Pygame as is done with the other environments. | closed | 2022-06-23T23:42:27Z | 2022-07-09T12:30:13Z | https://github.com/Farama-Foundation/PettingZoo/issues/732 | [] | jjshoots | 2 |
neuml/txtai | nlp | 256 | Running default.config.yml returns TypeError: register() got an unexpected keyword argument 'ids' | Hi. Checking this project out and excited to get the API running. I set up a docker instance with the official txtai-cpu container and used the default config.yml from the docs to start the process. Here is the config:
``` yml
# Index file path
path: /tmp/index
# Allow indexing of documents
writable: True
# E... | closed | 2022-04-04T04:26:36Z | 2022-04-09T13:54:24Z | https://github.com/neuml/txtai/issues/256 | [
"bug"
] | luquitared | 1 |
autogluon/autogluon | computer-vision | 4,950 | Documentation omission: 'weight_decay' parameter support for TFT model | ### Describe the issue linked to the documentation
While working with TFT model, I discovered that although the main parameters and official documentation do not mention support for the `weight_decay` parameter, passing it actually routes the value to the underlying `gluonts` keyword arguments in the `TemporalFusionTr... | closed | 2025-03-01T18:01:28Z | 2025-03-03T11:03:28Z | https://github.com/autogluon/autogluon/issues/4950 | [
"API & Doc",
"Needs Triage"
] | Killer3048 | 2 |
miguelgrinberg/Flask-Migrate | flask | 139 | Flask unable to find models | I am having issues using flask migrate. It doesn't notice my models, and I am not sure why. I am using declarative base, and I've tried many different permutations of ordering lines, importing modules into the env.py config that is autogenerated by Alembic, and so on, but I'm at a loss and am not sure how to best conti... | closed | 2016-12-14T12:38:31Z | 2019-06-26T10:19:37Z | https://github.com/miguelgrinberg/Flask-Migrate/issues/139 | [] | RichardLitt | 6 |
abhiTronix/vidgear | dash | 156 | Real-time stabilization on incoming frames, but not passing capture source object directly into VideoGear | <!--- Add a brief but descriptive title for your issue above -->
## Question
Can this code be implemented to work on real-time incoming frames? The frames are not captured by
```
stream = VideoGear(source=0, stabilize = True).start()
```
Instead, they will be received as numpy arrays through reading from a... | closed | 2020-08-27T03:31:41Z | 2020-11-26T12:36:53Z | https://github.com/abhiTronix/vidgear/issues/156 | [
"DUPLICATE :recycle:",
"INVALID :stop_sign:",
"QUESTION :question:"
] | AlexYiningLiu | 1 |
uriyyo/fastapi-pagination | fastapi | 753 | Custom Page extra_data problem | Hello!
Can you explain please, when `extra_data` field is added into swagger after creating custom `Page`?
I carefully read the documentation and i did not find something about it. I did my custom `Page` like in docs, but with my fields.
Maybe i'm doing wrong.
, python version: `3.10.3`
The function call `ga_instance.plot_fitness()` as well as other plot functions like `ga_instance.plot_new_solution_rate()` throw an error:
```
matplotlib.pyplot.title(title, fontsize=font_size)
-> matplotlib.pyplot.xl... | closed | 2022-04-21T09:08:53Z | 2023-03-01T00:54:34Z | https://github.com/ahmedfgad/GeneticAlgorithmPython/issues/101 | [
"bug"
] | dhutter-fhv | 1 |
pyppeteer/pyppeteer | automation | 283 | Save screenshot with URL | Is there a way to save the screenshot with the URL of the current page? | open | 2021-07-04T00:20:16Z | 2021-07-07T12:14:18Z | https://github.com/pyppeteer/pyppeteer/issues/283 | [] | pradyjswl | 5 |
waditu/tushare | pandas | 1,195 | 中证500指数的分钟线数据重复 | 目前观察到2019年8月30日的1分钟线数据,每分钟都会有两条相同的数据
社区id: pbzysb@163.com | closed | 2019-11-08T07:32:37Z | 2019-11-21T05:02:43Z | https://github.com/waditu/tushare/issues/1195 | [] | acehwong | 3 |
X-PLUG/MobileAgent | automation | 2 | pycache目录没有必要上传吧 | 如题 | closed | 2024-02-01T02:44:38Z | 2024-02-01T02:55:11Z | https://github.com/X-PLUG/MobileAgent/issues/2 | [] | shpodg | 1 |
tqdm/tqdm | jupyter | 1,026 | Visual output bug after retry. | - [x] I have marked all applicable categories:
+ [ ] exception-raising bug
+ [x] visual output bug
+ [ ] documentation request (i.e. "X is missing from the documentation." If instead I want to ask "how to use X?" I understand [StackOverflow#tqdm] is more appropriate)
+ [ ] new feature request
- [x]... | closed | 2020-08-28T08:24:30Z | 2020-08-28T10:35:47Z | https://github.com/tqdm/tqdm/issues/1026 | [
"duplicate 🗐",
"invalid ⛔",
"p2-bug-warning ⚠"
] | mikhail-akimov | 1 |
plotly/dash-table | dash | 826 | [BUG] Possible conflict between filter_action='native' and row_selectable='multi' | While trying to display a simple DataTable in Dash==1.13.4 there seems to be an issue when using both
`filter_action='native'` and `row_selectable='multi'`.
There are no errors thrown in the stack trace and the data and columns print in the logs but the table doesn't display in the browser. When the page is inspe... | open | 2020-08-19T21:13:28Z | 2020-10-09T12:44:56Z | https://github.com/plotly/dash-table/issues/826 | [] | gaboc4 | 1 |
onnx/onnx | tensorflow | 6,703 | Exported quantized model wasn’t reduced in model size | # Ask a Question
I have a model from sentence- transformers/all-mini-L6-v2 and I have applied dynamic quantization on it that reduces the model size by 75%
Initially 90 MB
After Quantization: 25 MB
But when I convert the model to onnx format using torch.onnx.export it is giving same size as the non quantized model in ... | open | 2025-02-14T02:49:16Z | 2025-02-19T06:50:53Z | https://github.com/onnx/onnx/issues/6703 | [
"question"
] | harshakhmk | 0 |
SALib/SALib | numpy | 179 | Method of Morris wrong distribution | While doing a sensitivity analysis on a two input model with the Method of Morris I get unexpected results. The most influential parameter (x in the graphs) has low mu* and the less influential (y in the graphs) one has a higher mu*
In the two images following you can see a scatter plot of the output with the two i... | closed | 2017-12-12T16:20:22Z | 2019-11-07T22:50:58Z | https://github.com/SALib/SALib/issues/179 | [] | filssavi | 1 |
pallets/flask | flask | 5,043 | custom error message in `flask.abort(404, description="msg")` not emitted in response | https://flask.palletsprojects.com/en/2.2.x/errorhandling/?highlight=abort
> [abort()](https://flask.palletsprojects.com/en/2.2.x/api/#flask.abort) is called with a description parameter. The error handler will use that as the JSON error message, and set the status code to 404.
The docs show as an example: `abort(... | closed | 2023-04-05T16:15:17Z | 2023-04-20T00:05:38Z | https://github.com/pallets/flask/issues/5043 | [] | jgehrcke | 2 |
numpy/numpy | numpy | 28,398 | BUG: Memleak in frombuffer() when applied to QByteArray | ### Describe the issue:
I'm facing an issue with memleaks when numpy.frombuffer() is combined with Qt QByteArray.
Ihere is an instance of QByteArray() in the code I attached. Once frombuffer() is called, refcount of QByteArray increases but never decreases again.
In large (Qt-based) app, there are millions of these... | closed | 2025-02-27T10:58:26Z | 2025-02-28T06:32:55Z | https://github.com/numpy/numpy/issues/28398 | [
"00 - Bug",
"57 - Close?"
] | coells | 2 |
ultrafunkamsterdam/undetected-chromedriver | automation | 1,859 | NoDriver Proxy support? | hI GUYS
there is a way to set proxy http/s to no_driver? i need to prox more than 1 instance with different proxies.
thx | open | 2024-05-03T09:54:02Z | 2024-05-29T01:10:52Z | https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/1859 | [] | spectreDeveloper | 3 |
nalepae/pandarallel | pandas | 44 | ModuleNotFoundError: No module named 'ipywidgets' | Seemed to be installation dependency problem.
Replicated on two machines with fresh conda environment. pandarallel is installed via pip.
Solved by manually install ipywidgets.
During import pandarallel:
from .pandarallel import pandarallel
from .dataframe import DataFrame
from .utils import (paralle... | closed | 2019-09-23T04:10:53Z | 2019-11-02T12:00:05Z | https://github.com/nalepae/pandarallel/issues/44 | [] | xieshuaix | 2 |
ray-project/ray | pytorch | 51,119 | CI test linux://doc:doc_code_cgraph_nccl is consistently_failing | CI test **linux://doc:doc_code_cgraph_nccl** is consistently_failing. Recent failures:
- https://buildkite.com/ray-project/postmerge/builds/8711#01956a36-520a-4bea-a351-c4b739770614
- https://buildkite.com/ray-project/postmerge/builds/8711#01956a0e-a7de-4ac8-a743-147f7e001fb9
DataCaseName-linux://doc:doc_code_cgrap... | closed | 2025-03-06T07:25:38Z | 2025-03-19T01:45:00Z | https://github.com/ray-project/ray/issues/51119 | [
"bug",
"triage",
"core",
"flaky-tracker",
"ray-test-bot",
"ci-test",
"weekly-release-blocker",
"stability"
] | can-anyscale | 21 |
inventree/InvenTree | django | 9,276 | Add API endpoint to list nav panes | open | 2025-03-10T22:19:56Z | 2025-03-10T22:20:06Z | https://github.com/inventree/InvenTree/issues/9276 | [] | matmair | 0 | |
simple-login/app | flask | 1,252 | [Feature Request] More alias generation options | Hi,
I would like to have an option to generate a random alias not based on a random word or an UUID, but rather on a (maybe customizable) amount of random characters. If this isnt possible for the default domains because of possible collisions, please make this option available for custom domains.
Thanks! | open | 2022-08-29T06:51:28Z | 2023-10-13T13:59:58Z | https://github.com/simple-login/app/issues/1252 | [] | leon1995 | 3 |
pydata/pandas-datareader | pandas | 838 | FRED URL give 404 | The currently used URL for the FRED data is giving a 404.
* https://github.com/pydata/pandas-datareader/blob/master/pandas_datareader/fred.py#L7-L15
Related to #435, where the old new link works...
* https://fred.stlouisfed.org/graph/fredgraph.csv?id=GDP
| open | 2020-11-23T12:07:42Z | 2020-11-23T12:14:23Z | https://github.com/pydata/pandas-datareader/issues/838 | [] | eabase | 0 |
newpanjing/simpleui | django | 355 | 修改字体大小会影响icon的大小 | **bug描述**
修改字体大小会影响icon的大小
**环境**
SimpleUI Version:2021.4.1
| closed | 2021-04-02T08:05:06Z | 2021-05-11T08:52:04Z | https://github.com/newpanjing/simpleui/issues/355 | [
"bug"
] | gojuukaze | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.