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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
unit8co/darts | data-science | 2,181 | How to use darts with bentoml ? | Hello everyone,
I am trying to use BentoML for model versioning , continuous training and deployment but there is no documentation available.
Any lead / support is helpful.
Thank You | closed | 2024-01-22T12:35:26Z | 2024-02-23T11:12:52Z | https://github.com/unit8co/darts/issues/2181 | [
"question"
] | AyushBhardwaj321 | 1 |
PaddlePaddle/PaddleHub | nlp | 1,769 | PaddleHub什么时候有动态图版本的目标检测案例? | 查看了demo中的案例目前有图像分类和语义分割的,但是没有找到目标检测的,比较好奇。
另外希望在Hub文档上对模型的适用版本标明一下,使用了之前的目标检测模型就出现了报错。 | open | 2022-01-14T14:58:42Z | 2022-01-17T08:41:02Z | https://github.com/PaddlePaddle/PaddleHub/issues/1769 | [] | kyrios-sam | 1 |
pydata/pandas-datareader | pandas | 902 | pandas-datareader package is not installing | i have been trying to install the pandas-datareader package, but its showing this -
`(base) Ishikas-MacBook-Air:Stock-Ticker-Dashboard ishikakesarwani$ conda install pandas_datareader
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flex... | closed | 2021-08-15T08:30:24Z | 2021-08-15T08:43:36Z | https://github.com/pydata/pandas-datareader/issues/902 | [] | ishikkkkaaaa | 1 |
graphql-python/graphene | graphql | 1,382 | Application-level asynchronous dataloading | **Is your feature request related to a problem? Please describe.**
I would like to be able to solve the N+1 problem on the application-layer. For dataloader components, there will be a one-to-one key-value result expectation, so I application layer is better than request layer.
The documentation shows an implementa... | closed | 2021-10-12T14:54:39Z | 2024-06-22T10:13:23Z | https://github.com/graphql-python/graphene/issues/1382 | [
"✨ enhancement"
] | tinducvo | 0 |
openapi-generators/openapi-python-client | fastapi | 218 | Support for additionalProperties and "free form" objects | ### Is your feature request related to a problem? Please describe.
Our API contains some subresources that are not easily modeled in an OpenAPI spec. To get around this, we want to punt by modeling them as ["free form" objects](https://swagger.io/docs/specification/data-models/dictionaries/#free-form) (an object with ... | closed | 2020-10-15T20:20:59Z | 2020-12-08T21:58:57Z | https://github.com/openapi-generators/openapi-python-client/issues/218 | [
"✨ enhancement"
] | packyg | 0 |
ultralytics/yolov5 | machine-learning | 12,852 | "The labels from detect.py do not give me the prediction results in the same order as the ground truth .txt file." | ### Search before asking
- [X] I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and [discussions](https://github.com/ultralytics/yolov5/discussions) and found no similar questions.
### Question
Hello,
The labels from detect.py don't give me the prediction results in the same orde... | closed | 2024-03-26T09:21:28Z | 2024-10-20T19:42:19Z | https://github.com/ultralytics/yolov5/issues/12852 | [
"question",
"Stale"
] | killich8 | 3 |
pytest-dev/pytest-django | pytest | 553 | Document use of authenticated `client` and `django_user_model` | From my first reading of the docs, it appeared that pytest-django provided an authenticatable admin user (`admin_client`) or an anonymous standard user (`client`) but no way to authenticate a normal user. Only after reading the source code did I discover that `client.login()` was possible (which makes sense now that I ... | closed | 2017-12-06T08:11:27Z | 2017-12-25T16:40:28Z | https://github.com/pytest-dev/pytest-django/issues/553 | [] | shacker | 0 |
pydata/pandas-datareader | pandas | 746 | Missing days in time series from quandl are getting filled with '0.0' rather than 'NaN' | Hi,
I'm using the Quandl data reader to download the Bitstamp BTC/USD daily price history.
The data set has some missing days in it and when I inspect the data frame once loaded, the missing dates have been filled, but their corresponding values for Open, High, Low, Close are filled with '0.0' rather than 'NaN'.
... | open | 2020-01-26T16:35:13Z | 2020-01-26T16:35:13Z | https://github.com/pydata/pandas-datareader/issues/746 | [] | bishi3000 | 0 |
explosion/spaCy | machine-learning | 13,474 | Why does displacy only support showing one span key? | As the span group is meant to support different groups of spans, would be more useful to enable displacy supporting other span keys at the same time?
```
import spacy
from spacy import displacy
from spacy.tokens import Span
text = "Welcome to the Bank of China."
nlp = spacy.blank("en")
doc = nlp(text)
... | open | 2024-05-03T01:28:15Z | 2024-05-15T10:59:17Z | https://github.com/explosion/spaCy/issues/13474 | [
"enhancement",
"feat / visualizers",
"feat / doc"
] | jianlins | 0 |
abhiTronix/vidgear | dash | 23 | I want to get the live stream from youtube, and for that, I have used opencv along with the package vidgear. But while running the code, I am getting the following error. I am sure that there is no problem with the URL. I have tried with pafy and streamlink. Even though both have given the result but after few frames,... | import cv2
from vidgear.gears import CamGear
stream = CamGear(source="https://www.youtube.com/watch?v=VIk_6OuYkSo", y_tube =True, time_delay=1, logging=True).start() # YouTube Video URL as input
while True:
frame = stream.read()
if frame is None:
break
cv2.imshow("Output Frame", frame)... | closed | 2019-06-17T10:47:03Z | 2021-12-04T03:25:04Z | https://github.com/abhiTronix/vidgear/issues/23 | [
"DUPLICATE :recycle:",
"SOLVED :checkered_flag:"
] | adithya6aj | 3 |
horovod/horovod | tensorflow | 3,757 | static tsl::Status tsl::Status::OK() is deprecated warning when build with Tensorflow 2.11.0rc1 | **Environment:**
1. Framework: (TensorFlow)
2. Framework version: 2.11.0rc1
3. Horovod version: 0.26.1
4. MPI version: 4.1.2
5. CUDA version: N/A
6. NCCL version: N/A
7. Python version: 3.8.10
8. Spark / PySpark version: N/A
9. Ray version: N/A
10. OS and version: ubuntu 20.04
11. GCC version: 9.4.0
12. CMa... | closed | 2022-10-27T06:14:30Z | 2022-11-17T07:22:55Z | https://github.com/horovod/horovod/issues/3757 | [
"bug",
"contribution welcome"
] | ghost | 3 |
nok/sklearn-porter | scikit-learn | 78 | Unable to check integrity score. | ```python
# ...
porter = Porter(classifier, language='java')
# Compute integrity score:
integrity = porter.integrity_score(X)
print(integrity)
```
> OSError: Windows isn't supported yet | closed | 2020-08-31T09:24:27Z | 2022-05-16T20:35:51Z | https://github.com/nok/sklearn-porter/issues/78 | [
"duplicate"
] | nithinreddyy | 1 |
RayVentura/ShortGPT | automation | 153 | 🐛 [Bug]: Error when automating the creation of shorts | ### What happened?
I've provided all the API keys.


### What type of browser are you seeing the problem on?
Chrome
### What type of Ope... | open | 2025-02-12T16:42:22Z | 2025-03-16T04:31:43Z | https://github.com/RayVentura/ShortGPT/issues/153 | [
"bug"
] | tomasalias | 4 |
keras-team/autokeras | tensorflow | 1,850 | Bug: Installation failed | ### Bug Description
I created a new environment under Anaconda with Python 3.10.9 and jupyter notebook installed. Then I followed the instruction to install "autokeras" after "keras-tuner" with pip. However, I got an error message with "subprocess-exited-with-error", where the error exists in "ImportError: cannot impo... | closed | 2023-02-04T10:32:56Z | 2023-04-24T02:05:56Z | https://github.com/keras-team/autokeras/issues/1850 | [
"bug report"
] | MarhsallLotte | 2 |
vitalik/django-ninja | django | 796 | [BUG] Route going to wrong method | **Describe the bug**
In my below code, I have two endpoints with the same URL pattern but differnet methods. Anytime I make a request, it always routes to to the `get_stuff` method. Why is this the case when they have different actions? Am I implementing this wrong? I have tried the same thing but with `post` and `put... | closed | 2023-07-18T21:06:01Z | 2023-07-18T21:32:20Z | https://github.com/vitalik/django-ninja/issues/796 | [] | alexmaguilar25 | 1 |
pandas-dev/pandas | data-science | 60,274 | API: to_excel with merge_cells=False treats index and columns differently | ```python
df = pd.DataFrame({"a": [1, 1], "b": [2, 3], "c": 4, "d": 5}).set_index(["a", "b"])
df.columns = pd.MultiIndex.from_tuples([("x", "y"), ("x", "z")])
df.to_excel("test.xlsx", merge_cells=False)
```

In the above ... | closed | 2024-11-10T15:43:32Z | 2024-11-13T21:02:29Z | https://github.com/pandas-dev/pandas/issues/60274 | [
"Bug",
"IO Excel",
"MultiIndex"
] | rhshadrach | 3 |
ultralytics/ultralytics | computer-vision | 19,556 | 请问如何用yolo11关键点检测模型预测后的人体照片通过程序来判断照片中的每个人体是正面还是侧面呢,并在程序中输出每张照片里面每个对象的判断结果 | ### 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
请问如何用yolo11关键点检测模型预测后的人体照片通过程序来判断照片中的每个人体是正面还是侧面呢,并在程序中输出每张照片里面每个对象的判断结果,我已经... | open | 2025-03-07T01:06:44Z | 2025-03-07T12:37:02Z | https://github.com/ultralytics/ultralytics/issues/19556 | [
"question",
"pose"
] | 666git-sys | 3 |
mljar/mljar-supervised | scikit-learn | 333 | ufunc 'isnan' not supported for the input types | **Version:** 0.9.1
**Traceback:**
1) There are no null values in the dataframe.
2) datatypes are either boolean or float.

```python
ufunc 'isnan' not supported for the input types, and the inpu... | open | 2021-03-11T08:25:25Z | 2021-03-16T10:49:01Z | https://github.com/mljar/mljar-supervised/issues/333 | [
"bug"
] | JaguarPaw2409 | 2 |
Yorko/mlcourse.ai | seaborn | 747 | Update the Docker image to use Poetry | The current Docker image ([Dockerfile](https://github.com/Yorko/mlcourse.ai/blob/main/docker_files/Dockerfile), [DockerHub](https://hub.docker.com/layers/festline/mlcourse_ai/latest/images/sha256-a736f95d84cb934331d5c58f408dbfcb897a725adb36a5963d9656f4199f4abb?context=explore)) uses Anaconda and is thus very heavy. Als... | closed | 2023-05-17T09:24:57Z | 2024-08-25T07:46:26Z | https://github.com/Yorko/mlcourse.ai/issues/747 | [
"help wanted",
"wontfix"
] | Yorko | 0 |
jpadilla/django-rest-framework-jwt | django | 321 | HTTP 405 Method Not Allowed | Hello, I'm trying to run django rest framework jwt.
When i run server there's no problem.
I run `http://127.0.0.1:8000/api-token-auth/` in browser, but i get
`HTTP 405 Method Not Allowed
Allow: POST, OPTIONS
Content-Type: application/json
Vary: Accept
{
"detail": "Method \"GET\" not allowed."
}`
In ... | closed | 2017-03-22T08:24:01Z | 2019-08-05T06:22:11Z | https://github.com/jpadilla/django-rest-framework-jwt/issues/321 | [] | andriwarda | 3 |
dropbox/sqlalchemy-stubs | sqlalchemy | 262 | Is there a living version of this code base? | Looking for up to date type information for SQLAlchemy -- it looks like this project is morbidly out of date.
Is there a working / published fork that is maintained? Or does anybody have a suggestion on how to have type information when using SQLAlchemy? | open | 2024-07-06T03:35:44Z | 2025-01-18T10:03:50Z | https://github.com/dropbox/sqlalchemy-stubs/issues/262 | [] | slifty | 2 |
ultralytics/ultralytics | computer-vision | 18,681 | Yolov10 : deacivating verbose on predict() ? | ### Search before asking
- [X] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/ultralytics/ultralytics/discussions) and found no similar questions.
### Question
Looking to disable the prints from Yolo predictions :
`0: 288x512 1 ... | closed | 2025-01-14T10:40:51Z | 2025-01-14T14:40:15Z | https://github.com/ultralytics/ultralytics/issues/18681 | [
"question",
"detect"
] | Morvanpa | 4 |
graphistry/pygraphistry | jupyter | 476 | [BUG] cybersecurity-slim umap does not work with cudf df | On the merge branch, I changed the cybersecurity slim to use cudf:
```
import cudf
# load the data using the edges API
g = graphistry.edges(cudf.from_pandas(edf), src, dst)
```
+
```
# lets umap the data
g2 = g.umap(kind='edges',
X=good_cols_with_edges,
y = ['bot'],
... | closed | 2023-05-01T06:25:02Z | 2023-05-02T05:42:25Z | https://github.com/graphistry/pygraphistry/issues/476 | [
"bug"
] | lmeyerov | 3 |
sinaptik-ai/pandas-ai | data-science | 1,651 | using local llm with openai error | here is my code:
`import pandas as pd
from pandasai import SmartDataframe
from pandasai.llm.local_llm import LocalLLM
ollama_llm = LocalLLM(api_base="http://192.168.10.170:11434", model="codeqwen", api_key="codeqwen")
df = pd.DataFrame({
"country": ["United States", "United Kingdom", "France", "Germany", "Italy", ... | closed | 2025-03-01T07:23:00Z | 2025-03-14T16:56:03Z | https://github.com/sinaptik-ai/pandas-ai/issues/1651 | [] | SoulProficiency | 2 |
iperov/DeepFaceLab | deep-learning | 5,268 | gpu not responding when extracting facets |
## Expected behavior
trying to use data_src facest extract.bat, would expect it to find faces as it did with my older gpu (gtx 1080)
## Actual behavior
takes a long time displaying the 'extracting faces...' message, then shows the progress bar which dosent go up and after a few minutes it displays this messa... | open | 2021-01-28T21:45:40Z | 2023-06-16T14:31:04Z | https://github.com/iperov/DeepFaceLab/issues/5268 | [] | tomavisar | 10 |
chezou/tabula-py | pandas | 120 | Nov 02, 2018 4:24:30 PM org.apache.pdfbox.contentstream.PDFStreamEngine operatorException SEVERE: Cannot read JBIG2 image: jbig2-imageio is not installed | # Summary of your issue
Nov 02, 2018 4:24:30 PM org.apache.pdfbox.contentstream.PDFStreamEngine operatorException
SEVERE: Cannot read JBIG2 image: jbig2-imageio is not installed
# Environment
Pycharm
Python 2.7
Nov 02, 2018 4:24:29 PM org.apache.pdfbox.pdmodel.graphics.color.PDDeviceRGB suggestKCMS
INFO: To ... | closed | 2018-11-02T20:33:09Z | 2018-11-02T22:09:05Z | https://github.com/chezou/tabula-py/issues/120 | [] | nileshchakraborty | 1 |
sktime/pytorch-forecasting | pandas | 1,264 | KeyError when predicting on new data & various other minor issues | Greetings all,
Apologies for bringing what might seem like an exhaustive list of small inconveniences, but for the last week and a half I have been trying to get Forecasting's TFT to work seamlessly on a very large amount of data that needs to be pulled from a database; unfortunately I keep running into issues that ... | closed | 2023-02-26T05:58:25Z | 2023-02-26T10:53:26Z | https://github.com/sktime/pytorch-forecasting/issues/1264 | [] | RaSi96 | 1 |
TencentARC/GFPGAN | deep-learning | 292 | Issue on RealESRGAn & SSL | Hello.
there is two problems:
1. The url not exist: "model_path='https://github.com/xinntao/RealESRGAN/releases/download/v0.2.1/ReaESRGAN_x2plus.pth'"
2. Error on check SSL certificate:
"File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/urllib/request.py", line 1345, in do_open raise URLError(... | open | 2022-10-16T16:40:32Z | 2022-10-17T14:33:06Z | https://github.com/TencentARC/GFPGAN/issues/292 | [] | Oleh0374 | 5 |
slackapi/python-slack-sdk | asyncio | 1,386 | Feature Request: Programmatically Create Incoming Webhooks for Specific Channels | ### Description:
I am developing a service/application that has the capability to create and delete channels, and add or remove members from these channels. One of the primary features of this service is enabling users to send messages, but I want to enforce strict channel permissions, such that users can only send... | closed | 2023-07-10T13:39:52Z | 2023-09-11T00:03:44Z | https://github.com/slackapi/python-slack-sdk/issues/1386 | [
"question",
"web-client",
"auto-triage-stale"
] | yuhao-postnl | 7 |
autogluon/autogluon | data-science | 4,900 | [tabular] Add `num_cpus`, `num_gpus` to `predictor.predict` | Related: #4871
We should add ways for user to control num_cpus and num_gpus during model inference.
This also ties into adding parallel inference support. | open | 2025-02-17T21:05:37Z | 2025-02-17T21:05:37Z | https://github.com/autogluon/autogluon/issues/4900 | [
"enhancement",
"module: tabular"
] | Innixma | 0 |
davidsandberg/facenet | computer-vision | 1,156 | how can i predict and fine-tune using triplet loss models? | i trained with triplet loss function( train_tripletloss.py ) with asain-dataset.
i have 2 questions about triplet loss.
1. how can i predict( or test ) my image, using model trained with triplet loss?
all of test or prediction script is based on softmax activation function.
2. if it can, i want to fine-tine ... | open | 2020-05-29T02:19:11Z | 2020-05-29T02:19:11Z | https://github.com/davidsandberg/facenet/issues/1156 | [] | rlaals7349 | 0 |
microsoft/qlib | deep-learning | 1,278 | Add CI for jupyter notebook example `workflow_by_code.ipynb` | ## 🌟 Feature Description
<!-- A clear and concise description of the feature proposal -->
CI that it can't detect the errors in the report.
So I think it would be better to add such a check in our CI. (It may be some command like jupyter nbconvert workflow_by_code.ipynb)
Please refer to this comment.
https:... | open | 2022-09-02T09:35:08Z | 2023-05-22T11:06:59Z | https://github.com/microsoft/qlib/issues/1278 | [
"enhancement",
"good first issue"
] | you-n-g | 3 |
huggingface/datasets | nlp | 6,774 | Generating split is very slow when Image format is PNG | ### Describe the bug
When I create a dataset, it gets stuck while generating cached data.
The image format is PNG, and it will not get stuck when the image format is jpeg.

After debugging, I know that it is b... | open | 2024-04-03T07:47:31Z | 2024-04-10T17:28:17Z | https://github.com/huggingface/datasets/issues/6774 | [] | Tramac | 1 |
ymcui/Chinese-LLaMA-Alpaca | nlp | 66 | 后续会出如何finetuning的教程吗?比如想用动物相关知识训练进行finetuning | closed | 2023-04-06T13:06:39Z | 2023-05-13T02:15:48Z | https://github.com/ymcui/Chinese-LLaMA-Alpaca/issues/66 | [] | yangqichuan | 0 | |
vitalik/django-ninja | rest-api | 727 | Unprocessable Entity | Я маю ось такий endpoint
```
@api.post("/save-token")
def saveToken(request, uuid, token):
model = Number.objects.filter(uuid=uuid).first()
model.fcmToken = token
model.save()
return True
```
При звернені я отримую помилку
```
Unprocessable Entity: /api/save-token
```
Якщо змінити н... | closed | 2023-04-02T17:05:41Z | 2023-04-08T15:32:23Z | https://github.com/vitalik/django-ninja/issues/727 | [] | w4ugit | 2 |
holoviz/panel | matplotlib | 7,745 | Missing dependences in docs for FastAPI | #### ALL software version info
(this library, plus any other relevant software, e.g. bokeh, python, notebook, OS, browser, etc should be added within the dropdown below.)
<details>
<summary>Software Version Info</summary>
```plaintext
altair 5.5.0
amqp 5.3.1
annotated-types... | open | 2025-02-28T23:33:27Z | 2025-03-11T14:22:15Z | https://github.com/holoviz/panel/issues/7745 | [
"type: docs"
] | gronka | 1 |
ghtmtt/DataPlotly | plotly | 142 | "Color Scale" combo box is empty for scatterplots | When creating a scatterplot with data defined marker color, the "Color Scale" combo box is empty. No color scale can be selected.

| closed | 2019-09-27T17:45:34Z | 2019-11-05T18:10:01Z | https://github.com/ghtmtt/DataPlotly/issues/142 | [] | jdugge | 1 |
pallets/quart | asyncio | 379 | Error of type KeyError: 'PROVIDE_AUTOMATIC_OPTIONS' when using factory | Here is what I use to instantiate the quest app in factory:
```
from quart import Quart
def create_app():
app = Quart(__name__)
return app
app = create_app()
if __name__ == "__main__":
app.run(host='0.0.0.0')
```
When I do this I receive error like this
```
File "/home/anton/.pyenv/versi... | closed | 2024-11-14T14:33:12Z | 2024-11-29T00:26:10Z | https://github.com/pallets/quart/issues/379 | [] | antonpetrov145 | 2 |
jmcnamara/XlsxWriter | pandas | 403 | Comment size varies depending on intervening rows and columns | Using Python 2.7, XlsxWriter 0.9.4, and Excel 2010.
This seems at least superficially related to #45:
```python
from xlsxwriter import Workbook
comment_text = 'These comments should be identically sized.'
comment_options = {'width': 200, 'height': 30, 'visible': True}
with Workbook('comment_test.xlsx') as... | closed | 2016-12-23T18:53:29Z | 2019-04-13T14:29:12Z | https://github.com/jmcnamara/XlsxWriter/issues/403 | [
"bug",
"short term"
] | jkyeung | 6 |
KevinMusgrave/pytorch-metric-learning | computer-vision | 338 | Help me inference model! | Currently, I use arc face loss function + resnet18.
In the inference phase, I put an image in model resnet18 and get embedding, Do I have to put images into the metric learning to find embedding with the best hyperplane?
| closed | 2021-06-17T07:16:00Z | 2021-06-17T15:43:39Z | https://github.com/KevinMusgrave/pytorch-metric-learning/issues/338 | [
"question"
] | tks1998 | 5 |
marshmallow-code/flask-smorest | rest-api | 215 | Concurrent requests using Apache and wsgi file leads to DuplicateComponentNameError | Hi,
I wrote a small application which which stores and serves some simple data via API. Everything seems to be working fine until one of my systems wants to do more than one get request per time. Then The request fails with an exception like this:
```
mod_wsgi (pid=1983): Exception occurred processing WSGI scrip... | closed | 2021-01-24T17:14:46Z | 2021-01-27T18:52:39Z | https://github.com/marshmallow-code/flask-smorest/issues/215 | [] | Finn10111 | 2 |
lux-org/lux | jupyter | 73 | Lux recommendations not displayed for df.head and tail | We have basic checks inside `correlation.py` and `univariate.py` to make sure that we don't generate recommendations when there is less than 5 points. We should generate a quick overview visualization of the dataframe when users do head and tail. | closed | 2020-08-22T02:18:29Z | 2020-09-08T09:25:03Z | https://github.com/lux-org/lux/issues/73 | [
"priority"
] | dorisjlee | 1 |
amidaware/tacticalrmm | django | 1,591 | macOS Ventura boot loop (arm64 and amd64) | macOS 13 (Ventura)
Agent version: 2.4.9
Installing either arm64 or amd64 agents on two macOS Ventura machines causes boot loop on both machines. Other Ventura machines have no problems.
It *appears* that the agent isn't the sole cause as the boot loop stops after being removed from the client list in TRMM eve... | closed | 2023-08-09T09:49:14Z | 2023-08-12T20:26:15Z | https://github.com/amidaware/tacticalrmm/issues/1591 | [] | ghost | 5 |
lepture/authlib | django | 606 | Add several different public keys for one Tokenvalidator, or allow several Validators for one auth_type in ResourceProtector | We use AWS Cognito for token generation. Following this, we implement ResourceProtector in various Python sources.
To verify a token, AWS provides documentation at:
https://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-using-tokens-verifying-a-jwt.html
AWS Cognito offers several publi... | open | 2023-12-20T16:17:19Z | 2025-02-20T20:15:49Z | https://github.com/lepture/authlib/issues/606 | [
"feature request",
"server"
] | danilovmy | 0 |
albumentations-team/albumentations | machine-learning | 2,279 | Wrong type of parameters to `PixelDropout`, disallowing per-channel values | The parameters `drop_value` and `mask_drop_value` of `PixelDropout` have the wrong type `ScaleFloatType = Union[float, tuple[float, float]]`, see [here](https://github.com/albumentations-team/albumentations/blob/6ef2d979d7dcafcc3f8eed57d2184a33ec1c1af4/albumentations/augmentations/transforms.py#L4345). This makes it im... | closed | 2025-01-18T14:09:13Z | 2025-01-18T18:20:56Z | https://github.com/albumentations-team/albumentations/issues/2279 | [
"bug"
] | jleuschn | 1 |
plotly/dash | dash | 2,928 | click event hidden by Graph initialization? Can't use EventListener for click? | Hi, hoping someone can help me here.
Here's a minimal version for the problem I'm encountering. I'm developing an app that will have multiple plots (seismic traces) where a user needs to be able to add a vertical line for arrival times. I need to get actual mouse position in data coordinates, not nearest clickData.
... | closed | 2024-07-23T11:19:20Z | 2024-07-24T09:09:50Z | https://github.com/plotly/dash/issues/2928 | [] | MalcolmDrummond | 3 |
kochlisGit/ProphitBet-Soccer-Bets-Predictor | seaborn | 78 | SSL: CERTIFICATE_VERIFY_FAILED: Create a League | Hello
i try to create a league and got the following:
<urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)>
Warning: Failed to download file: https://www.football-data.co.uk/mmz4281/1516/D1.csv from league: Germany: Bundesliga-1, Year = 20... | open | 2024-04-03T18:50:49Z | 2024-04-03T18:50:49Z | https://github.com/kochlisGit/ProphitBet-Soccer-Bets-Predictor/issues/78 | [] | PatWekan | 0 |
QingdaoU/OnlineJudge | django | 48 | A+B问题,提交Java代码Compile Error,C/C++语言OK | 提交Java代码到判提服务器上报错:
**\* Error in `/usr/bin/javac': double free or corruption (fasttop): 0x00007ff51400c300 ***
*** Error in`/usr/bin/javac': double free or corruption (fasttop): 0x00007ff514014850 ***
**\* Error in `/usr/bin/javac': double free or corruption (fasttop): 0x00007ff51400bec0 ***
*** Error in`/usr/bin/javac... | closed | 2016-06-10T19:00:15Z | 2016-06-11T07:19:53Z | https://github.com/QingdaoU/OnlineJudge/issues/48 | [] | huzuli | 2 |
pnkraemer/tueplots | matplotlib | 16 | Documentation? | Do we want some (very simple) sphinx doc? Of course that is always interesting, but especially here, it could display the example notebooks nicely. | closed | 2021-12-08T16:11:13Z | 2022-01-21T08:12:23Z | https://github.com/pnkraemer/tueplots/issues/16 | [] | pnkraemer | 0 |
pydata/bottleneck | numpy | 55 | Problems with bottleneck install from git master on Mac | I tried installing bottleneck from git master e464adbf3d24ec909ba08315d71738dc97959877 with `python setup.py install --user`. It fails because it tries to compile the `C` file without running `Cython` first: https://gist.github.com/4537970
Next I tried `make all`, which gives a bunch of test errors (I didn't look what... | closed | 2013-01-15T11:24:33Z | 2013-04-16T16:37:31Z | https://github.com/pydata/bottleneck/issues/55 | [] | cdeil | 3 |
facebookresearch/fairseq | pytorch | 5,076 | Denoising Task crashes OOM | Hey!
We are trying to train a BART-Model for German from scratch using the [GC4 Corpus](https://german-nlp-group.github.io/projects/gc4-corpus.html). For testing purposes, we use only 20GB of the Dataset for training in a container with 250GB of RAM and one NVIDIA A100.
<details open>
<summary>Dockerfile</... | open | 2023-04-13T18:47:02Z | 2023-04-13T18:53:59Z | https://github.com/facebookresearch/fairseq/issues/5076 | [
"question",
"needs triage"
] | BUCKFAE | 0 |
statsmodels/statsmodels | data-science | 8,843 | TST/BUG/ENH: status discrete post-estimation | checking discrete post estimation, including support for offset
I'm writing generic checks that catch any errors to see what the current status is
specific issues:
#8842 | open | 2023-04-27T13:09:58Z | 2023-06-09T21:34:52Z | https://github.com/statsmodels/statsmodels/issues/8843 | [
"comp-discrete",
"type-test",
"topic-post_estim"
] | josef-pkt | 1 |
oegedijk/explainerdashboard | plotly | 78 | v0.3 breaks ShapContributionsGraphComponent for purely categorical data | After updating to v0.3, my ShapContributionsGraphComponent containing three categorical variables broke (i.e. it shows an empty plot) with the following error:
```
Exception on /_dash-update-component [POST]
Traceback (most recent call last):
File "C:\Users\...\site-packages\flask\app.py", line 2447, in wsgi_ap... | closed | 2021-01-29T10:56:55Z | 2021-02-03T12:49:38Z | https://github.com/oegedijk/explainerdashboard/issues/78 | [] | hkoppen | 5 |
sqlalchemy/alembic | sqlalchemy | 768 | server_default not working with python datetime | I am trying to use `server_default` instead of `default` because of the reasons mentioned in [this](https://stackoverflow.com/questions/13370317/sqlalchemy-default-datetime) post (second answer) but I get the following error:
`sqlalchemy.exc.ArgumentError: Argument 'arg' is expected to be one of type '<class 'str'>'... | closed | 2020-12-08T14:41:36Z | 2021-01-15T14:32:09Z | https://github.com/sqlalchemy/alembic/issues/768 | [
"question"
] | Ahtii | 8 |
miguelgrinberg/Flask-Migrate | flask | 366 | Issue in SQAlchemy stopped allowing me to make changes to a database with flask migrate | Hello,
I created a pretty basic interface to help with data collection and I was initially able to make changes to the database using `flask db migrate` , but a few weeks ago the database stopped accepting any new changes without any warning. Any time I update/add columns in `models.py` and try creating a new migrat... | closed | 2020-09-14T00:35:52Z | 2020-10-07T08:33:02Z | https://github.com/miguelgrinberg/Flask-Migrate/issues/366 | [
"question"
] | ofw24 | 2 |
miguelgrinberg/Flask-SocketIO | flask | 1,086 | Requests are not handled concurrently deployed with gevent_uwsgi Server | **Your question**
We have the following setup:
* nginx
--> uwgi_pass socket file (unix://)
* uwsgi process started like this: uwsgi -i uwsgi.ini
* uwsgi starting the flask/flask_socketio server
#### nginx config
```
location ~ /socketio-dummy/?(?<rest_url>.*) {
include uwsgi_params;
uwsgi_pass ... | closed | 2019-10-24T15:29:32Z | 2020-01-19T18:44:01Z | https://github.com/miguelgrinberg/Flask-SocketIO/issues/1086 | [] | henkesde | 9 |
vitalik/django-ninja | pydantic | 661 | Is there a method to split/group swagger docs up by django app? | Does anyone know if it's possible to group the endpoints in the swagger docs at http://localhost:8000/api/docs by django app? I have 4 different apps and they each contain many endpoints. Would be nice to have a logical visual grouping in swagger.
This is how I have my API confiugured:
```
from django.urls imp... | closed | 2023-01-24T16:43:17Z | 2023-01-25T10:53:47Z | https://github.com/vitalik/django-ninja/issues/661 | [] | metersk | 1 |
ydataai/ydata-profiling | jupyter | 869 | Feature : Native spark histograms | Overview : [Spark Development Strategy](https://github.com/pandas-profiling/pandas-profiling/wiki/Spark-Development-Plan)
Branch : spark-branch
Feature :
Profiling pandas dataframes gets you nice [histograms](https://github.com/pandas-profiling/pandas-profiling/blob/abaa9bc44545c874e7a6512f30e5894f6eb127be/src... | open | 2021-10-24T15:39:49Z | 2021-11-10T16:33:08Z | https://github.com/ydataai/ydata-profiling/issues/869 | [
"spark :zap:"
] | chanedwin | 0 |
ultralytics/ultralytics | pytorch | 19,493 | How to handle cascade yolo models? | ### 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
I have three series yolo11 models. First method is track and others are pred... | open | 2025-03-02T16:04:40Z | 2025-03-07T04:35:46Z | https://github.com/ultralytics/ultralytics/issues/19493 | [
"question",
"track",
"detect"
] | erfansafaie | 4 |
localstack/localstack | python | 11,597 | bug: EventBridge v2 put events returns duplicated EventId in case matching more than one rule and target | ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Current Behavior
Hello
I apologise in advance if this is already an unknown issue, but I haven't found a related thread.
I found a small bug while using localstack (v 3.7.2) with EventBridge v2. I've noticed the response fro... | closed | 2024-09-27T15:56:36Z | 2024-12-09T17:41:48Z | https://github.com/localstack/localstack/issues/11597 | [
"type: bug",
"status: resolved/fixed",
"status: response required",
"aws:events",
"status: stale",
"status: backlog"
] | artur-nogueira | 4 |
mlfoundations/open_clip | computer-vision | 941 | Question about fine-tuning | Hello. I am trying to fine tune the model. I am testing it with using dataset containing images of 2 car models, and 2 labels that are the model numbers. In the train command, I locked the image tower, as I do not want the model to change how it embeds images.
The issue I have is I am not seeing any improvement in t... | closed | 2024-09-26T06:52:57Z | 2024-10-07T20:41:50Z | https://github.com/mlfoundations/open_clip/issues/941 | [] | jimmyparadm | 1 |
fastapi/sqlmodel | pydantic | 25 | Improper UUID serialisation dropping leading zeros ▶️ "ValueError: badly formed hexadecimal UUID string" | ### First Check
- [X] I added a very descriptive title to this issue.
- [X] I used the GitHub search to find a similar issue and didn't find it.
- [X] I searched the SQLModel documentation, with the integrated search.
- [X] I already searched in Google "How to X in SQLModel" and didn't find any information.
- [X... | closed | 2021-08-26T05:55:25Z | 2022-08-27T22:30:48Z | https://github.com/fastapi/sqlmodel/issues/25 | [
"bug"
] | andrewbolster | 7 |
aminalaee/sqladmin | fastapi | 681 | Incorrect URLs with multiple views on the same model | ### Checklist
- [X] The bug is reproducible against the latest release or `master`.
- [X] There are no similar issues or pull requests to fix it yet.
### Describe the bug
The usage case is to provide two different views with `list_query` and slightly different templates.
Having two views on the same model re... | open | 2023-12-08T19:26:43Z | 2024-05-17T22:33:47Z | https://github.com/aminalaee/sqladmin/issues/681 | [] | 5p4k | 15 |
ageitgey/face_recognition | python | 689 | How get a similar faces? | * face_recognition version: last
* Python version: Python 3
* Operating System: Win10
Hello!
I like example web_service_example.py
I have 100 photos with faces. And I have 1 photo with the original face.
How can I do a search of the source persons for 100 persons with the greatest speed?
Do I need to encodin... | closed | 2018-11-27T21:47:17Z | 2018-11-28T12:29:31Z | https://github.com/ageitgey/face_recognition/issues/689 | [] | arpsyapathy | 6 |
idealo/image-super-resolution | computer-vision | 164 | rest api / parameters related question (no-resize) | Hi guys,
Hope you are all well !
I am writing a dockerized flask server with ISR supporting cuda/gpu.
Available here: https://github.com/lucmichalski/super-resolution/blob/master/src/app.py
And, I would like to add some parameters like no-scaling/resizing of the input picture, how should I parameter, my mod... | open | 2020-12-21T11:33:42Z | 2020-12-21T14:34:38Z | https://github.com/idealo/image-super-resolution/issues/164 | [] | ghost | 3 |
panaverse/learn-generative-ai | streamlit | 11 | Question is the how chat gpt know that the parameter of the function lower | closed | 2023-12-11T03:29:29Z | 2023-12-11T03:39:52Z | https://github.com/panaverse/learn-generative-ai/issues/11 | [] | Bilalkhan4086 | 0 | |
flavors/django-graphql-jwt | graphql | 171 | Version 0.3.0 - Queries no updated | Hi,
I have installed the version 0.3.0 and I don't get the new parameters like refreshExpiresIn
I sure that I do something wrong :(

System information
Operating system: Windows 10
Python version: 3.8... | closed | 2020-02-10T15:46:15Z | 2020-04-04T10:19:48Z | https://github.com/flavors/django-graphql-jwt/issues/171 | [] | eolinlovecraft | 4 |
MagicStack/asyncpg | asyncio | 692 | type codecs used regardless of parameters actually passed | * **asyncpg version**: 0.21.0
* **PostgreSQL version**: 11.10
* **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce
the issue with a local PostgreSQL install?**: no
* **Python version**: 3.8.5
* **Platform**: osx
* **Do you use pgbouncer?**: no
* **Did you install asyncpg with pip?**: yes
* **If... | closed | 2021-01-19T22:12:23Z | 2021-01-20T08:40:55Z | https://github.com/MagicStack/asyncpg/issues/692 | [] | thehesiod | 15 |
tensorpack/tensorpack | tensorflow | 829 | mnist-tfslim.py doesn't work and get CUDNN_STATUS_BAD_PARAM error. | I encounter CUDNN_STATUS_BAD_PARAM errors when run mnist-tfslim.py on Windows.
```
PS E:\code\tensorpack\examples\basics> python .\mnist-tfslim.py
Failed to load OpenCL runtime
[32m[0716 19:38:16 @logger.py:109][0m [5m[31mWRN[0m Log directory train_log\mnist-tfslim exists! Use 'd' to delete it.
[32m[0716 19:... | closed | 2018-07-16T11:44:45Z | 2018-07-19T05:31:52Z | https://github.com/tensorpack/tensorpack/issues/829 | [
"unrelated"
] | lyyiangang | 2 |
pydantic/logfire | pydantic | 310 | Add the `logfire.instrument_mysql()` | ### Description
OpenTelemetry MySQL Instrumentation[](https://opentelemetry-python-contrib.readthedocs.io/en/latest/instrumentation/mysql/mysql.html#module-opentelemetry.instrumentation.mysql) | closed | 2024-07-12T11:39:14Z | 2024-08-05T09:20:24Z | https://github.com/pydantic/logfire/issues/310 | [
"Feature Request",
"P3"
] | Kludex | 2 |
mlfoundations/open_clip | computer-vision | 1,034 | Support SigLip 2 | Would be great to have support to the just released SigLip 2 family of models: https://huggingface.co/collections/google/siglip2-67b5dcef38c175486e240107 | closed | 2025-02-21T11:16:51Z | 2025-03-13T09:25:23Z | https://github.com/mlfoundations/open_clip/issues/1034 | [] | apolinario | 5 |
ploomber/ploomber | jupyter | 1,110 | How to skip a task running, but use the previous running result ? | For example,
- task 1, preprocessing data
- task 2, train model ( code changed, but I want to reuse this task results, don't want it rerun)
- task 3, evaluation ( testing on this)
Now I am changing task 3. At the meanwhile, I made a little modification to task 2(remove some useless function ) , though the out... | closed | 2023-06-05T03:28:43Z | 2023-06-05T16:57:55Z | https://github.com/ploomber/ploomber/issues/1110 | [] | eromoe | 1 |
litestar-org/litestar | asyncio | 3,889 | Bug: OpenAPI schema generation for handler <...> detected multiple parameters named <...> with different types | ### Description
Hello everyone! I encountered a behavior, and I'm not sure if it's correct.
The reproduction steps are attached in the form of a repository (the following description will refer to it).
As a demonstration, I wanted to create BasicViewProvider, which is a simple key-value pair and used as dependen... | open | 2024-12-05T21:01:41Z | 2025-03-20T15:55:03Z | https://github.com/litestar-org/litestar/issues/3889 | [
"Bug :bug:"
] | Molozey | 8 |
databricks/koalas | pandas | 1,645 | Cannot read parquet file from Pandas | I computed some data using pandas which I wrote to a file. The df looks like this https://i.imgur.com/pxCLrUh.png
I wrote it to parquet using `plot_df.to_parquet("test.parquet", flavor='spark')`
Now when I read it in using spark, there is no issue, yet note there being one additional column which apparently pandas... | closed | 2020-07-10T13:38:04Z | 2020-08-04T05:58:02Z | https://github.com/databricks/koalas/issues/1645 | [
"enhancement",
"question"
] | lfdversluis | 4 |
ipython/ipython | jupyter | 14,430 | Autoreload slows down over time | After many (like 100) runs, it takes like several minutes | open | 2024-05-04T14:19:49Z | 2024-05-04T14:19:49Z | https://github.com/ipython/ipython/issues/14430 | [] | L1nkus | 0 |
amidaware/tacticalrmm | django | 2,091 | Trying to open my rmm server to an external proxy server | I have some servers that have to run on the same public ip, for this I use an nginx server, however I need to install rmm on a server, and it must be accessible via the same public ip and with a subdomain of the same dns name
I've made great progress, and I can now log in and manage things via rmm. However, I am sti... | closed | 2024-12-03T20:41:04Z | 2024-12-03T20:44:37Z | https://github.com/amidaware/tacticalrmm/issues/2091 | [] | gabmega | 0 |
Zeyi-Lin/HivisionIDPhotos | fastapi | 188 | 关于deploy_api.py 可能的全局变量污染问题? | 大佬你好,在研究代码时 对这一段代码有些疑惑。
```python
# deploy_api.py
creator = IDCreator()
@app.post("/idphoto")
async def idphoto_inference():
# ------------------- 选择抠图与人脸检测模型 -------------------
choose_handler(creator, human_matting_model, face_detect_model)
# 后续代码
```
在choose_handler函数内部对creator实例属性做了一些改变。我这里有... | open | 2024-10-12T09:30:13Z | 2024-10-30T00:25:52Z | https://github.com/Zeyi-Lin/HivisionIDPhotos/issues/188 | [] | shen774411223d | 0 |
d2l-ai/d2l-en | deep-learning | 2,048 | \n disappears when using if tab.selected | 

:**
- OS: Debian GNU/Linux 11
--
- Browser: chrome
- RMM Version v0.17.5 updated to 0.18.1
**Installation Method:**
Standard
**Describe the bug**
I updated 17.5 to 18.1 version today and after that, i lost custom device groups, and there ... | closed | 2024-04-02T18:25:09Z | 2024-04-03T04:44:23Z | https://github.com/amidaware/tacticalrmm/issues/1825 | [] | rubybrars | 2 |
deeppavlov/DeepPavlov | nlp | 1,408 | Intent Catcher & Go-Bot | Moved to internal Trello | closed | 2021-03-15T14:16:30Z | 2021-11-30T10:15:05Z | https://github.com/deeppavlov/DeepPavlov/issues/1408 | [] | danielkornev | 0 |
RobertCraigie/prisma-client-py | pydantic | 87 | Python 3.6 EOL | Python 3.6 support is being dropped on the 23rd of December 2021, after this we should also drop support for python 3.6
Changes:
- [ ] Dataclass support
- [ ] Generic BaseModels
- [x] Update documentation to use `asyncio.run()` | closed | 2021-10-29T17:56:39Z | 2022-02-01T12:08:29Z | https://github.com/RobertCraigie/prisma-client-py/issues/87 | [
"kind/discussion"
] | RobertCraigie | 0 |
ludwig-ai/ludwig | data-science | 3,812 | Model_type: GBM- "ValueError: num_actors parameter set to 0 - Missing RayParams in lightgbm_ray call" | While training model using - lightgbm. I am facing the error which says -
""" ValueError: The `num_actors` parameter is set to 0. Please always specify the number of distributed actors you want to use.
FIX THIS by passing a `RayParams(num_actors=X)` argument to your call to lightgbm_ray. """
Installaton procedur... | open | 2023-12-07T06:11:50Z | 2024-10-21T18:44:47Z | https://github.com/ludwig-ai/ludwig/issues/3812 | [
"bug"
] | rishabr-aizencorp | 2 |
ray-project/ray | pytorch | 50,980 | [Core] calling remote function in `Future` callback breaks ray | ### What happened + What you expected to happen
When a callback function installed to a future created from ref.future() calls remote function, ray seems to be broken
### Versions / Dependencies
latest ray 2.43, python 3.10, ubuntu
### Reproduction script
```python
import time
import ray
ray.init()
@ray.remote
d... | open | 2025-02-28T06:45:43Z | 2025-03-22T00:58:04Z | https://github.com/ray-project/ray/issues/50980 | [
"bug",
"P1",
"core"
] | auderson | 0 |
hack4impact/flask-base | flask | 199 | Heroku bundling issues | Hi, I am having a similar issue with #110, it seems like script ordering problems. This is after pushing to a heroku app. However as localhost everything renders correctly and does not throw the same errors.
Has anybody run into script bundling issues this when deploying to Heroku?
```
Uncaught SyntaxError: Unexpe... | closed | 2020-01-13T16:50:35Z | 2020-06-21T09:10:51Z | https://github.com/hack4impact/flask-base/issues/199 | [] | MapZombie | 2 |
deepfakes/faceswap | machine-learning | 1,391 | GUI工具图片转视频,effmpeg %0d.png错误 | 路径会被错误转成%0d.png

faceswap\tools\effmpeg\effmpeg.py
__get_zero_pad 少了一个pos+=1

| open | 2024-06-02T15:30:33Z | 2024-06-02T15:30:46Z | https://github.com/deepfakes/faceswap/issues/1391 | [] | mao420430 | 0 |
Farama-Foundation/Gymnasium | api | 592 | [Question] Environment `SurroundNoFrameskip` doesn't exist | ### Question
The Atari env Surround, does not appear to exist in gymnasium, any idea why?
```
import gymnasium as gym
env = gym.make("SurroundNoFrameskip-v4")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/edward/work/sample-factory/venv/lib/python3.10/site-packages/gy... | closed | 2023-07-09T07:36:38Z | 2023-07-09T21:47:35Z | https://github.com/Farama-Foundation/Gymnasium/issues/592 | [
"question"
] | edbeeching | 1 |
httpie/cli | api | 937 | Add test for auth_plugin and session behaviour | I noticed that there doesn't seem to be code coverage for the use of auth plugins (`--auth-type`) in a session.
Creating an issue to add a test in `test_sessions.py` to cover it. | closed | 2020-06-23T12:55:33Z | 2020-07-10T10:48:27Z | https://github.com/httpie/cli/issues/937 | [] | kbanc | 3 |
fastapi/sqlmodel | fastapi | 156 | How can I change the string column type to Unicode? | ### First Check
- [X] I added a very descriptive title to this issue.
- [X] I used the GitHub search to find a similar issue and didn't find it.
- [X] I searched the SQLModel documentation, with the integrated search.
- [X] I already searched in Google "How to X in SQLModel" and didn't find any information.
- [X... | closed | 2021-11-16T01:27:20Z | 2023-10-29T08:13:23Z | https://github.com/fastapi/sqlmodel/issues/156 | [
"question"
] | phi-friday | 5 |
public-apis/public-apis | api | 3,925 | "Programming_and_data_structure" | closed | 2024-07-10T21:01:25Z | 2024-07-10T21:13:05Z | https://github.com/public-apis/public-apis/issues/3925 | [] | Mohammad-max-dev | 0 | |
hzwer/ECCV2022-RIFE | computer-vision | 266 | 显存6G不够用,请问如何兼顾4K视频精度下解决这个问题、 | 显存6G不够用,请问如何兼顾4K视频精度下解决这个问题、 | open | 2022-07-10T16:36:30Z | 2022-07-21T06:27:05Z | https://github.com/hzwer/ECCV2022-RIFE/issues/266 | [] | sicoll | 1 |
xinntao/Real-ESRGAN | pytorch | 799 | Does "use_shuffle" actualy works? [spoiler] NOPE! [/spoiler] | i can't perform 1 epoch in 1 pass without --auto_resume
so for me "use_shuffle" is critical
and i need make sure that it works
and not process only same first files every time
but i can't find "use_shuffle" argument parser even (in __ALL__ python libs)
and can't check does it initialize rnd with random seed at s... | open | 2024-05-10T00:11:34Z | 2024-05-11T01:49:11Z | https://github.com/xinntao/Real-ESRGAN/issues/799 | [] | SA-j00u | 5 |
vanna-ai/vanna | data-visualization | 70 | Add GH action for NB example runs | Add GH action that:
1. Runs on every push to the PR
2. Runs a notebook: https://github.com/marketplace/actions/run-notebook
3. Convert the notebook into docs using `nbconvert`
ENV variables required, should be fed from GH secrets to the action's context (find their values in Slack).
```
VANNA_API_KEY=xxx
VANNA... | closed | 2023-07-31T13:33:06Z | 2023-10-05T21:23:45Z | https://github.com/vanna-ai/vanna/issues/70 | [] | arslanhashmi | 0 |
plotly/dash | plotly | 2,283 | ERROR: Failed building wheel for brotli - Dash subprocess | Hello everyone!
I have a problem during the docker build with the dash. From what I read, the sub-dependency with brotli seems to be broken.
Sry if the solution is obvious, i'm new in the develop family.
Thank's a lot !
**Describe your context**
Here the requirements.txt :
gunicorn
python-dotenv
dash
das... | closed | 2022-10-25T10:35:04Z | 2022-10-28T07:16:50Z | https://github.com/plotly/dash/issues/2283 | [] | Guillaume0789 | 5 |
seleniumbase/SeleniumBase | web-scraping | 2,881 | The `Dockerfile` needs locale settings to be set | ### The `Dockerfile` needs locale settings to be set.
And it could probably use a few other updates on the side. | closed | 2024-06-28T03:27:03Z | 2024-06-28T04:27:53Z | https://github.com/seleniumbase/SeleniumBase/issues/2881 | [
"enhancement"
] | mdmintz | 1 |
tqdm/tqdm | pandas | 1,372 | Second progress bar visually interferes with the one above it | You'll see what I'm talking about once running this code
```
from time import sleep
from faker import Faker
from tqdm import tqdm
fake = Faker()
with tqdm(total=100, colour='#FFA500', bar_format="{percentage:3.0f}%|{bar}|{n_fmt}/{total_fmt} {elapsed}") as pbar1:
with tqdm(bar_format=" {desc}", leav... | open | 2022-09-23T07:48:04Z | 2022-09-23T07:48:04Z | https://github.com/tqdm/tqdm/issues/1372 | [] | zpz | 0 |
modin-project/modin | pandas | 6,569 | REFACTOR: Use `contextlib.nullcontext` instead of custom one | closed | 2023-09-17T13:41:04Z | 2023-09-18T11:32:49Z | https://github.com/modin-project/modin/issues/6569 | [
"Code Quality 💯"
] | anmyachev | 0 | |
gradio-app/gradio | data-science | 10,526 | Cropped Image from gr.ImageEditor Retains Transparent Background | ### Describe the bug
When using gr.ImageEditor to crop an image, the cropped output still retains the original canvas size, including the transparent/blank background. Instead of returning only the selected cropped region, the exported image contains transparency padding around it.
This behavior makes it difficult to... | open | 2025-02-06T12:50:23Z | 2025-02-07T03:27:53Z | https://github.com/gradio-app/gradio/issues/10526 | [
"bug",
"🖼️ ImageEditor"
] | suhaniquantanite | 3 |
computationalmodelling/nbval | pytest | 40 | Configure timeouts | The user should be given the option to specify how long to wait for cell execution timeout. The current timeout is set to ~half an hour (2000 s).
One option is to piggy-back on the `timeout` option added by the [timeout plugin](https://pypi.python.org/pypi/pytest-timeout). If not, we should ensure that we choose an ... | closed | 2017-02-02T15:03:36Z | 2017-02-08T16:13:49Z | https://github.com/computationalmodelling/nbval/issues/40 | [] | vidartf | 1 |
pennersr/django-allauth | django | 3,982 | Cannot schedule new futures after interpreter shutdown | I started seeing this one rarely (about 3 people per day) after updating from `0.55.2` to `0.63.3`
I also have `django-allauth[socialaccount]==0.63.3` installed, in case that matters.
Oddly, this one leaves no stack-trace other than giving the message "cannot schedule new futures after interpreter shutdown"
I... | closed | 2024-07-19T03:58:59Z | 2024-07-27T06:14:48Z | https://github.com/pennersr/django-allauth/issues/3982 | [
"Unconfirmed"
] | jackkinsella | 4 |
miguelgrinberg/microblog | flask | 113 | sqlalchemy.exc.OperationalError: (pymysql.err.OperationalError) (1044, "Access denied for user 'microblog'@'%' to database 'microblog'") (Background on this error at: http://sqlalche.me/e/e3q8) | 
I deploy it use docker follow you, this problem I have no idea | closed | 2018-06-22T10:24:50Z | 2018-06-23T05:05:38Z | https://github.com/miguelgrinberg/microblog/issues/113 | [
"question"
] | boyl | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.