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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
inventree/InvenTree | django | 8,582 | [FR] Support python 3.13 | ### Please verify that this feature request has NOT been suggested before.
- [x] I checked and didn't find a similar feature request
### Problem statement
When trying to run inventree with python3.13 it complains about not finding the module `imghdr` (and probably some other things, haven't dig deeper?)
### Suggest... | open | 2024-11-28T20:16:18Z | 2025-01-29T11:26:09Z | https://github.com/inventree/InvenTree/issues/8582 | [
"enhancement",
"CI"
] | wolflu05 | 3 |
MilesCranmer/PySR | scikit-learn | 691 | [Feature]: Random Seed for Reproducibility | ### Feature Request
For a paper, I am trying to make my code reproducible. I have set python random seed. Still every time it runs it provides different results.
Is it posslbe to set a random seed? I cant find it in the docs.
```python
# %%
import numpy as np
import pandas as pd
from pysr import PySRRegre... | closed | 2024-08-03T09:13:06Z | 2024-08-03T16:51:15Z | https://github.com/MilesCranmer/PySR/issues/691 | [
"enhancement"
] | cmougan | 5 |
microsoft/hummingbird | scikit-learn | 527 | new scipy release (1.7.0) breaks KNN tests | SciPy 1.7.0 was [released](https://github.com/scipy/scipy/releases/tag/v1.7.0) yesterday with changes to `cdist`. It seems we need to remove an arg from our KNN converters, see [build](https://github.com/microsoft/hummingbird/runs/2877767604?check_suite_focus=true).
Ex: `TypeError: cdist_old_weighted_minkowski... | closed | 2021-06-21T18:42:40Z | 2021-12-07T22:13:00Z | https://github.com/microsoft/hummingbird/issues/527 | [] | ksaur | 2 |
python-restx/flask-restx | flask | 594 | How to use 'form' location and process request as json? | **Ask a question**
How to use 'form' location and process request as json?
**Additional context**
I wish to use form field to allow users to test my API by filling field instead of to fill a raw JSON dict.
This is my relevant code:
```python
parser = api.parser()
parser.add_argument('title', type=str, help='... | open | 2024-02-07T15:24:15Z | 2024-02-13T12:31:58Z | https://github.com/python-restx/flask-restx/issues/594 | [
"question"
] | sandyboxy | 6 |
opengeos/leafmap | jupyter | 949 | Error in 84_read_parquet - BinderException: Binder Error: No function matches the given name and argument types 'ST_GeomFromWKB(GEOMETRY)'. | Working through https://leafmap.org/notebooks/84_read_parquet/
On `leafmap.read_parquet`:
```
BinderException: Binder Error: No function matches the given name and argument types 'ST_GeomFromWKB(GEOMETRY)'. You might need to add explicit type casts.
Candidate functions:
ST_GeomFromWKB(WKB_BLOB) -> GEOMETRY
S... | closed | 2024-10-31T11:31:13Z | 2024-10-31T15:12:46Z | https://github.com/opengeos/leafmap/issues/949 | [
"bug"
] | robmarkcole | 4 |
statsmodels/statsmodels | data-science | 9,058 | ENH: GLM check for valid endog | https://stats.stackexchange.com/questions/630757/glm-invalid-value-encountered-in-log-special-gammaln
uses GLM with Binomial family
endog is a count variable but no n_trials is specified.
Results look wrong, but only a warning in gammaln is issued.
My guess is that somewhere in the computation we don't check th... | open | 2023-11-08T15:46:35Z | 2023-11-08T15:46:36Z | https://github.com/statsmodels/statsmodels/issues/9058 | [
"type-bug",
"type-enh",
"comp-genmod",
"prio-elev"
] | josef-pkt | 0 |
matterport/Mask_RCNN | tensorflow | 2,737 | ValueError: Tried to convert 'shape' to a tensor and failed. Error: None values not supported. | I have ran into an error while running this code below from . Any help would be appreciated
# Code
%Create model object in inference mode.
model = modellib.MaskRCNN(mode="inference", model_dir=MODEL_DIR, config=config)
% Load weights trained on MS-COCO
model.load_weights(COCO_MODEL_PATH, by_name=True)
# Error... | closed | 2021-12-09T08:25:19Z | 2023-11-03T18:08:25Z | https://github.com/matterport/Mask_RCNN/issues/2737 | [] | mlsy123 | 3 |
adbar/trafilatura | web-scraping | 173 | Extract inline structured data from page <body> | It seems that trafilatura attempts to parse [schema.org](https://schema.org)-compliant structured data [such as microdata](https://github.com/adbar/trafilatura/blob/6a7b58174add10f686e230d5213203ff85bb7f94/trafilatura/metadata.py#L192) and some RDFa, which is great; however, this is limited to data present in the docum... | open | 2022-02-15T18:12:09Z | 2022-03-01T18:00:06Z | https://github.com/adbar/trafilatura/issues/173 | [
"question"
] | Seirdy | 4 |
onnx/onnxmltools | scikit-learn | 624 | How to solve Feature name error while converting an XGBClassifier model to ONNX? | I trained an XGBClassifier model, and now I want to convert it to an ONNX format. It should be straightforward forward using this code:
```
import onnxmltools
from skl2onnx.common.data_types import FloatTensorType
initial_types = [('float_input', FloatTensorType([None, X_train.shape[1]]))]
xgb_onnx = onnxml... | open | 2023-05-16T13:04:18Z | 2024-04-21T17:31:59Z | https://github.com/onnx/onnxmltools/issues/624 | [] | AnouarITI | 4 |
junyanz/pytorch-CycleGAN-and-pix2pix | deep-learning | 803 | Losses at test time | How can i see loss values at test time? | open | 2019-10-18T00:42:02Z | 2019-10-18T03:31:54Z | https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/803 | [] | rabiaali95 | 1 |
vitalik/django-ninja | django | 847 | [Enhancement] : Add testing ability to middleware for PATCH | PUT file upload | Hello
I am trying to create a simple dictionary application using Django and support it with a Web API using `Django-ninja`. Two of the fields I use have FileField. Adding files using `Django-ninja` was not a problem. However, creating an endpoint for `PUT` and `PATCH` was problematic but I solved it according to ht... | open | 2023-09-11T19:28:47Z | 2023-09-11T19:28:47Z | https://github.com/vitalik/django-ninja/issues/847 | [] | mshemuni | 0 |
ni1o1/transbigdata | data-visualization | 98 | 可视化实时轨迹 | 老师,您好!
例如:具备对象的一段实时轨迹(手机或者出租车),能够交互式的在地图上显示轨迹。具体而言,在t1时刻,对象在p1位置,此时显示在地图上一个位置。在t2时刻,给地图传递一个新位置p2,此时显示在地图上p2。
请问有类似的解决方案吗?或者给个大概得提示,使用到哪些工具可以实现上述功能。
最主要的是给这个方法传递一个位置参数,就可以显示出来。而且在t2时刻可能提供多个点,也需要显示在地图上,并且做出不同颜色的区分。
| open | 2024-10-14T01:56:38Z | 2024-10-14T02:04:59Z | https://github.com/ni1o1/transbigdata/issues/98 | [] | youareeverysingleday | 0 |
Evil0ctal/Douyin_TikTok_Download_API | api | 465 | cookie问题的一点发现 | 跟很多人反馈的一样,我也困扰于明明填了最新的cookie,但仍返回空的问题
[刚才又尝试了一下,从]()
这个地方获取了完整的cookie,填入配置文件后发现居然可以用了
怀疑抖音后台对cookie的检测更严格了,从network那边获得的cookie片段检测不通过了
不过也不确定,还请大家再测试一下 | closed | 2024-08-10T16:43:47Z | 2024-10-09T07:16:43Z | https://github.com/Evil0ctal/Douyin_TikTok_Download_API/issues/465 | [] | supersaiyan2019 | 3 |
public-apis/public-apis | api | 4,169 | Test Issue from GitHub MCP Server | This is a test issue to verify the GitHub MCP server functionality. | open | 2025-03-10T15:05:50Z | 2025-03-10T15:05:59Z | https://github.com/public-apis/public-apis/issues/4169 | [] | darryl-mccool | 1 |
keras-team/keras | pytorch | 20,963 | load_model_from_hdf5 doesn't load axis param for Concatenate layer | When loading a keras model from an hdf5 file the `axis` parameter is dropped from the model config.
The code at https://github.com/keras-team/keras/blob/6c3dd68c1b2e7783d15244279959e89fe88ee346/ pops the param from the config and only puts it back if it's a list which AFAIK it never is.
Script to reproduce the issue:
... | closed | 2025-02-26T00:27:24Z | 2025-02-28T05:45:45Z | https://github.com/keras-team/keras/issues/20963 | [
"type:Bug"
] | gkoundry | 2 |
pandas-dev/pandas | data-science | 60,861 | BUG: Poor GroupBy Performance with ArrowDtype(...) wrapped types | ### Pandas version checks
- [x] I have checked that this issue has not already been reported.
- [x] I have confirmed this bug exists on the [latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of pandas.
- [x] I have confirmed this bug exists on the [main branch](https://pandas.pydata.org/docs/dev/ge... | open | 2025-02-05T20:53:50Z | 2025-02-10T14:19:38Z | https://github.com/pandas-dev/pandas/issues/60861 | [
"Bug",
"Dtype Conversions",
"Needs Discussion",
"Arrow"
] | kzvezdarov | 13 |
ageitgey/face_recognition | machine-learning | 609 | I just want to know how to cite the package in article. | * face_recognition version:
* Python version:
* Operating System:
### Description
Describe what you were trying to get done.
Tell us what happened, what went wrong, and what you expected to happen.
IMPORTANT: If your issue is related to a specific picture, include it so others can reproduce the issue.
### ... | open | 2018-08-30T08:11:06Z | 2018-09-02T03:31:44Z | https://github.com/ageitgey/face_recognition/issues/609 | [] | Captain-F | 2 |
ymcui/Chinese-LLaMA-Alpaca-2 | nlp | 550 | 指令精调 | ### 提交前必须检查以下项目
- [X] 请确保使用的是仓库最新代码(git pull),一些问题已被解决和修复。
- [X] 我已阅读[项目文档](https://github.com/ymcui/Chinese-LLaMA-Alpaca-2/wiki)和[FAQ章节](https://github.com/ymcui/Chinese-LLaMA-Alpaca-2/wiki/常见问题)并且已在Issue中对问题进行了搜索,没有找到相似问题和解决方案。
- [X] 第三方插件问题:例如[llama.cpp](https://github.com/ggerganov/llama.cpp)、[LangChain](https... | closed | 2024-03-25T13:20:48Z | 2024-04-19T00:06:47Z | https://github.com/ymcui/Chinese-LLaMA-Alpaca-2/issues/550 | [
"stale"
] | dongziyu1016 | 4 |
fastapi/fastapi | fastapi | 12,039 | FastAPI does not allow to send a "None" UploadFile | ### Privileged issue
- [X] I'm @tiangolo or he asked me directly to create an issue here.
### Issue Content
I have a POST method with FastAPI which has 2 params with UploadFile type. But one of them is required and one of them is Optional. When I send required param with None value, I got 422 error relating to "Fiel... | closed | 2024-08-19T11:07:12Z | 2024-08-19T11:18:04Z | https://github.com/fastapi/fastapi/issues/12039 | [] | phuchm | 0 |
iterative/dvc | data-science | 9,658 | pull: error when pulling both pipeline and .dvc files | # Bug Report
<!--
## Issue name
Issue names must follow the pattern `command: description` where the command is the dvc command that you are trying to run. The description should describe the consequence of the bug.
Example: `repro: doesn't detect input changes`
-->
## Description
After upgrade to v3 usu... | closed | 2023-06-23T13:56:15Z | 2024-02-29T21:05:23Z | https://github.com/iterative/dvc/issues/9658 | [
"awaiting response"
] | bakaleks | 7 |
jwkvam/bowtie | plotly | 6 | Compare against similar projects | - [ ] gleam
- [ ] pyxley
- [ ] [dashboards](https://github.com/plotly/dashboards)
- [ ] [spyre](https://github.com/adamhajari/spyre)
| closed | 2016-06-09T04:24:03Z | 2018-03-03T19:57:32Z | https://github.com/jwkvam/bowtie/issues/6 | [
"low-priority",
"documentation"
] | jwkvam | 2 |
AUTOMATIC1111/stable-diffusion-webui | pytorch | 15,684 | [Feature Request]: Make Soft Inpainting Compatible With Mac Apple Silicon | ### Is there an existing issue for this?
- [X] I have searched the existing issues and checked the recent builds/commits
### What would your feature do ?
When following the soft inpainting tutorial at [stable diffusion art](https://stable-diffusion-art.com/soft-inpainting/), the following error is thrown when doing ... | closed | 2024-05-02T03:50:32Z | 2024-07-17T15:41:13Z | https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/15684 | [
"enhancement"
] | hsm207 | 0 |
ray-project/ray | pytorch | 50,818 | CI test linux://python/ray/air:test_object_extension is flaky | CI test **linux://python/ray/air:test_object_extension** is flaky. Recent failures:
- https://buildkite.com/ray-project/postmerge/builds/8495#01952b30-22c6-4a0f-9857-59a7988f67d8
- https://buildkite.com/ray-project/postmerge/builds/8491#01952b00-e020-4d4e-b46a-209c0b3dbf5b
- https://buildkite.com/ray-project/postme... | closed | 2025-02-22T01:46:49Z | 2025-03-04T06:34:57Z | https://github.com/ray-project/ray/issues/50818 | [
"bug",
"triage",
"data",
"flaky-tracker",
"ray-test-bot",
"ci-test",
"weekly-release-blocker",
"stability"
] | can-anyscale | 36 |
Evil0ctal/Douyin_TikTok_Download_API | fastapi | 97 | Can't use the API because cloudflare | 
| closed | 2022-11-07T13:09:38Z | 2022-11-14T10:16:34Z | https://github.com/Evil0ctal/Douyin_TikTok_Download_API/issues/97 | [
"API Down",
"Fixed"
] | dandyraka | 4 |
biolab/orange3 | scikit-learn | 6,035 | "Louvain Clustering" progress indicator | Desync on progress indicator. | closed | 2022-06-19T17:34:49Z | 2022-06-19T19:09:34Z | https://github.com/biolab/orange3/issues/6035 | [] | hydrastarmaster | 1 |
browser-use/browser-use | python | 687 | No Playwright's http_credentials context in BrowserContextConfig | ### Bug Description
I'm trying to bypass a Http Credentials pop up check when open the Web Page, and it required to enter the username/password every time I open that web page, after searching around I found that we can include the Http Credentials using Playwright's context like mentioned here
https://playwright.dev... | open | 2025-02-12T10:26:42Z | 2025-02-12T10:26:42Z | https://github.com/browser-use/browser-use/issues/687 | [
"bug"
] | ntthaibk | 0 |
matterport/Mask_RCNN | tensorflow | 2,381 | ValueError: shapes (400,327680) and (3136,12) not aligned: 327680 (dim 1) != 3136 (dim 0) | Hello everyone,
I get this error whenever I delete the use_mini_mask from the argument list considering that I am using mrcnn2 (the one that works with tensorflow 2).
And I get this error TypeError: load_image_gt() got an unexpected keyword argument 'use_mini_mask' when I leave 'use_mini_mask'. .
Anyone can help??? | open | 2020-10-03T22:00:56Z | 2020-10-06T06:10:18Z | https://github.com/matterport/Mask_RCNN/issues/2381 | [] | Basma-hash | 2 |
allenai/allennlp | nlp | 5,666 | AttributeError: module 'cached_path' has no attribute 'file_friendly_logging' | ```
File "/usr/local/lib/python3.8/site-packages/allennlp/predictors/predictor.py", line 366, in from_path
load_archive(archive_path, cuda_device=cuda_device, overrides=overrides),
File "/usr/local/lib/python3.8/site-packages/allennlp/models/archival.py", line 206, in load_archive
resolved_archive_file = ... | closed | 2022-06-14T12:37:03Z | 2022-06-20T20:31:25Z | https://github.com/allenai/allennlp/issues/5666 | [
"bug"
] | XiepengLi | 4 |
waditu/tushare | pandas | 1,555 | 复权因子接口和前复权的计算公式? | 从复权因子接口获取的复权因子,如何计算前复权的数据呢?我使用如下公式计算前复权数据:
```
当日收盘价 * (当日复权因子 / 最新复权因子)
```
发现并不能完全匹配 `ts.pro_bar` 返回的前复权数据。
使用的是如下的测试代码:
```python
import tushare as ts
from config import config
def is_qfq_match(stock_code, start_date, end_date):
tradings = pro.daily(ts_code='000002.SZ', start_date=start_date,... | closed | 2021-06-11T03:20:37Z | 2021-06-21T04:10:50Z | https://github.com/waditu/tushare/issues/1555 | [] | run27017 | 1 |
microsoft/hummingbird | scikit-learn | 72 | Make the dev container more comfy | The current dev container is derived off of a super barebones image. Not even `less` is installed. I will be looking into finding a more comfy base image, probably starting with the ones found [here](https://github.com/microsoft/vscode-dev-containers). | closed | 2020-05-13T15:09:45Z | 2020-05-14T17:50:01Z | https://github.com/microsoft/hummingbird/issues/72 | [] | markusweimer | 5 |
521xueweihan/HelloGitHub | python | 2,506 | 【开源自荐】Node.js 的 Firewalld 界面化 | ## Micro-Firewall
<!-- 这里是 HelloGitHub 月刊推荐项目的入口,欢迎自荐和推荐开源项目,唯一要求:请按照下面的提示介绍项目。-->
<!-- 点击上方 “Preview” 立刻查看提交的内容 -->
<!--仅收录 GitHub 上的开源项目,请填写 GitHub 的项目地址-->
- 项目地址:https://github.com/soonxf/Micro-Firewall
<!--请从中选择(C、C#、C++、CSS、Go、Java、JS、Kotlin、Objective-C、PHP、Python、Ruby、Rust、Swift、其它、书籍、机器学习)-->
... | open | 2023-02-22T11:02:13Z | 2023-04-03T08:00:33Z | https://github.com/521xueweihan/HelloGitHub/issues/2506 | [
"JavaScript 项目"
] | soonxf | 1 |
noirbizarre/flask-restplus | api | 792 | How to protect swagger-UI ? | My default path for swagger-UI is `/api/doc`. So, anyone who hit this url in browser, they can easily access this swagger-UI !
So, how can I protect this specific URL only. And suggest all possible ways. | closed | 2020-03-30T21:32:45Z | 2020-04-09T18:07:55Z | https://github.com/noirbizarre/flask-restplus/issues/792 | [] | shivangpatel | 2 |
postmanlabs/httpbin | api | 375 | /delay for (a bit) longer waits to short? | Just measured the `/delay` endpoint (Fri Aug 11 12:32:31 UTC 2017) with a `:n` parameter of `61`, double checking with a stopwatch on my phone to ensure I'm not reading something wrong, I saw this:
```shell
$ time curl https://httpbin.org/delay/61
{
"args": {},
"data": "",
"files": {},
"form": {},
"... | closed | 2017-08-11T12:33:31Z | 2020-12-30T23:32:09Z | https://github.com/postmanlabs/httpbin/issues/375 | [] | jacob414 | 4 |
viewflow/viewflow | django | 221 | Question: Inline forms on detail view | Does `django-viewflow` provide a feature where one could have inline forms on the detail view of an object? | closed | 2018-07-10T08:48:18Z | 2018-07-25T09:37:38Z | https://github.com/viewflow/viewflow/issues/221 | [
"request/question",
"dev/flow"
] | mbaechtold | 2 |
wiseodd/generative-models | tensorflow | 28 | Question about Conditional Variational Autoencoder (CVAE) | Hi, Thank you for the implement of all the deep generative models, and the code is very clean and easy to follow.
However, about the formulate in your [post](http://wiseodd.github.io/techblog/2016/12/17/conditional-vae/), I think should change X -> Y, and c -> X, or it will cause ambiguity. | closed | 2017-07-10T11:45:39Z | 2017-07-10T14:32:08Z | https://github.com/wiseodd/generative-models/issues/28 | [] | JianLiu91 | 0 |
tflearn/tflearn | data-science | 428 | wrong cifar-10-batches path | Wrong path found when trying to load CIFAR-10 dataset through:
`import tflearn.datasets.cifar10 as cifar10`
`X, Y = cifar10.load_data(one_hot=True)`
got:
`Traceback (most recent call last):
File "loadcifar1.py", line 3, in <module>
X, Y = cifar10.load_data(one_hot=True)
File "/usr/local/lib/python2.7/... | closed | 2016-10-31T13:43:54Z | 2019-07-06T11:28:34Z | https://github.com/tflearn/tflearn/issues/428 | [] | migueldsw | 14 |
AUTOMATIC1111/stable-diffusion-webui | deep-learning | 16,136 | [Bug]: /sdapi/v1/txt2img returns 404 with --nowebui argument | ### Checklist
- [X] The issue exists after disabling all extensions
- [X] The issue exists on a clean installation of webui
- [ ] The issue is caused by an extension, but I believe it is caused by a bug in the webui
- [X] The issue exists in the current version of the webui
- [X] The issue has not been reported before... | closed | 2024-07-03T10:31:29Z | 2024-07-03T13:47:57Z | https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/16136 | [
"bug-report"
] | ibrahimsn98 | 1 |
flairNLP/flair | nlp | 2,836 | Can't download biomedical abstracts of HunFlair | Dear Flair developers,
I try to process the biomedical NER datasets used in HunFlair and I use the code from flair/datasets/biomedical.py. While downloading the datasets, some requsts errors occur. I'm wondering if you can share the dataset directly in a google drive maybe?
Thanks for your help! | closed | 2022-06-24T18:36:57Z | 2022-11-13T08:43:41Z | https://github.com/flairNLP/flair/issues/2836 | [
"question",
"wontfix"
] | possible1402 | 3 |
koxudaxi/fastapi-code-generator | pydantic | 24 | $refs in parameter is not processed | ## I expect
$refs in parameters to be processed, eg
```
paths:
/foo:
parameters:
- $ref: '#/components/parameters/MyParam'
components:
parameters:
MyParam:
name: foo
schema:
type: string
```
## Instead
I get KeyError
```
File "/usr/local/lib/python3.8/sit... | closed | 2020-07-27T14:25:36Z | 2021-08-08T09:43:20Z | https://github.com/koxudaxi/fastapi-code-generator/issues/24 | [
"enhancement",
"released"
] | ioggstream | 29 |
pydata/pandas-datareader | pandas | 401 | Datareader doesn't download the desired samples as instructed | Hi, I would like to download only the stock price data for 3 months from Google Finance, but it keeps providing me data for one year. How do I slice the data I want or re-download the data I want?
> from pandas_datareader import data
> from datetime import datetime
>
> cname = "KLSE:AXIATA" # Yahoo:6888.KL #Goog... | closed | 2017-09-20T01:42:02Z | 2018-02-01T17:03:03Z | https://github.com/pydata/pandas-datareader/issues/401 | [] | yongsua1989 | 10 |
explosion/spaCy | machine-learning | 12,854 | morph reading in token is not merged properly when using merge_entities pipeline | <!-- NOTE: For questions or install related issues, please open a Discussion instead. -->
## How to reproduce the behaviour
```
import spacy
import json
import fileinput
from pprint import pprint
# returns start and end index, end not inclusive
def process(nlp, texts):
docs = list(nlp.pipe(texts,... | closed | 2023-07-24T19:06:54Z | 2023-07-25T06:24:01Z | https://github.com/explosion/spaCy/issues/12854 | [
"feat / doc",
"feat / morphology"
] | lawctan | 2 |
huggingface/transformers | pytorch | 36,513 | Allow parameters of the ViTPooler to be configurable, with the default values set to the current hardcoded values | ### Feature request
I would like to add `pooled_output_size: int | None` and `pooler_act: str` fields in ViTConfig such that the following https://github.com/huggingface/transformers/blob/main/src/transformers/models/vit/modeling_vit.py#L665-L666 can be configured if needed.
The two fields would have default values ... | open | 2025-03-03T14:22:02Z | 2025-03-07T14:12:29Z | https://github.com/huggingface/transformers/issues/36513 | [
"Feature request",
"Vision"
] | sebbaur | 6 |
flaskbb/flaskbb | flask | 289 | Is there a tool to back up data? | Flaskbb is really a good forum, easy to use!
However, is there a tool to back up data in flaskbb (database, pics and so on), or how can we do that?
Thanks! | closed | 2017-05-25T11:03:44Z | 2018-04-15T07:47:46Z | https://github.com/flaskbb/flaskbb/issues/289 | [] | emrlay | 8 |
scrapy/scrapy | python | 6,407 | NEVER_BLOCK flag for a Request to prevent deadlock if ItemPipeline Deferred results in new requests | <!--
Thanks for taking an interest in Scrapy!
If you have a question that starts with "How to...", please see the Scrapy Community page: https://scrapy.org/community/.
The GitHub issue tracker's purpose is to deal with bug reports and feature requests for the project itself.
Keep in mind that by filing an iss... | open | 2024-06-20T06:36:46Z | 2024-06-24T12:51:18Z | https://github.com/scrapy/scrapy/issues/6407 | [] | djay | 6 |
gunthercox/ChatterBot | machine-learning | 2,204 | Language support does not work at all. Horrible | Testing the Django example with German, like (trained 15 languages including German):
`curl --header "Content-Type: application/json" --request POST --data '{"text": "Wieso denn das?"}' http://127.0.0.1:8000/api/chatterbot/`
I get every time a strange response, many times the response is in different languages.... | closed | 2021-10-02T19:40:02Z | 2021-10-02T21:02:42Z | https://github.com/gunthercox/ChatterBot/issues/2204 | [] | kw005 | 2 |
babysor/MockingBird | deep-learning | 25 | 在文字框写了文字,可是出來的是其它聲音,是不是文字框bug了 | 
谁能解决 | closed | 2021-08-20T03:53:22Z | 2021-10-01T03:19:12Z | https://github.com/babysor/MockingBird/issues/25 | [] | wangkewk | 10 |
jonra1993/fastapi-alembic-sqlmodel-async | sqlalchemy | 69 | How to enable delete on cascade for a many-to-one relationship? | Hi @jonra1993
I have two tables, `Project` and `Category`. One row in `Project` can be linked to many rows in `Category`, i.e. one project can belong to many categories.
`Project.categories: List[Category]` and `Category.project: Project`.
Right now, this is my `Category` table:
```
class Category(BaseUUIDMo... | closed | 2023-05-07T16:49:05Z | 2023-05-13T23:24:55Z | https://github.com/jonra1993/fastapi-alembic-sqlmodel-async/issues/69 | [] | jymchng | 1 |
thtrieu/darkflow | tensorflow | 541 | Why `confs` rather than `_confs`? | https://github.com/thtrieu/darkflow/blob/d9fe7fc2bafbc5cb344a5335006a4d7edfda5c74/darkflow/net/yolov2/train.py#L98
For truth, why `confs` rather than `_confs` there? I guess the reason:
[Line 88](https://github.com/thtrieu/darkflow/blob/d9fe7fc2bafbc5cb344a5335006a4d7edfda5c74/darkflow/net/yolov2/train.py#L88) `... | closed | 2018-01-24T14:15:28Z | 2018-01-31T07:15:33Z | https://github.com/thtrieu/darkflow/issues/541 | [] | jinyu121 | 0 |
jwkvam/bowtie | jupyter | 71 | more comprehensive tests | better leverage selenium to test interface by clicking buttons and entering text etc. | closed | 2016-12-15T21:37:11Z | 2017-09-06T06:30:49Z | https://github.com/jwkvam/bowtie/issues/71 | [] | jwkvam | 1 |
ccxt/ccxt | api | 24,872 | Obtaining information on the last 1000000 candles from FetchOHLCV function | ### Operating System
windos
### Programming Languages
_No response_
### CCXT Version
4.4.32
### Description
I want to get the data of the last 1000000 candles.
But the FetchOHLCV function only gives me the data of the last 1,000 candles.
What is the solution?
### Code
```
public async ... | open | 2025-01-14T06:08:26Z | 2025-01-14T09:30:38Z | https://github.com/ccxt/ccxt/issues/24872 | [
"question"
] | azim1399 | 1 |
jmcnamara/XlsxWriter | pandas | 161 | Axis name from Y overwrites axis name X in scatter plots when using formulas. | It seems there's a bug.
Version 0.5.8
File: chart.py
Function: def _write_cat_val_axis(self, args)
Line: 1813, y_axis['data_id']
An attribute from y_axis gets copied into x_axis. The result is that scatter plot has both the axes named the same, after the y_axis. Only occurs with formulas, not with string constants. On... | closed | 2014-10-08T19:07:37Z | 2014-10-11T13:42:22Z | https://github.com/jmcnamara/XlsxWriter/issues/161 | [
"bug",
"ready to close"
] | michalhuflejt | 9 |
Nemo2011/bilibili-api | api | 339 | 【需求】直接获取用户充电列表 | 在User类里添加一个获取用户充电列表的函数,API为https://api.bilibili.com/x/ugcpay-rank/elec/month/up | closed | 2023-06-13T09:47:04Z | 2023-06-17T11:55:31Z | https://github.com/Nemo2011/bilibili-api/issues/339 | [
"need"
] | jhzgjhzg | 3 |
glumpy/glumpy | numpy | 212 | Headless training over SSH | Is it possible to use glumpy for headless rendering over SSH? When trying to glumpy just blocks without any exception or error message.
The only related issue #100 I could find is quite old.
For me it seems like that this still is an issue related to vispy/vispy#1464
| open | 2019-04-04T08:11:59Z | 2020-03-30T07:07:29Z | https://github.com/glumpy/glumpy/issues/212 | [] | huberl | 5 |
davidsandberg/facenet | computer-vision | 1,247 | Request for Weight Files in faceswap-GAN Project | closed | 2024-01-10T17:31:35Z | 2024-01-10T17:55:56Z | https://github.com/davidsandberg/facenet/issues/1247 | [] | Manuelstorm | 0 | |
RobertCraigie/prisma-client-py | pydantic | 860 | Allow specifying generated package name and location | ## Problem
It seems like currently there is no way of doing this. The generated code is always placed in the available `side-packages` directory. This makes it impossible (or very hard) to distribute a package which depends on a `prisma` client, because (1) the generated code is outside of the package and (2) it alw... | closed | 2024-01-02T19:39:50Z | 2024-01-07T22:11:38Z | https://github.com/RobertCraigie/prisma-client-py/issues/860 | [
"kind/question"
] | danielgafni | 1 |
encode/uvicorn | asyncio | 1,528 | Dual stack (IPv4/IPv6) support | Hello everyone and thanks for your work on this great project :smiley_cat:
I find it especially helpful in combination with FastAPI, which is my use case.
What I cannot use is the dual stack mode (combined IPv4/IPv6) on the socket used by Uvicorn, which would come in handy in environments in which both IP versio... | closed | 2022-06-21T15:12:57Z | 2022-06-21T15:49:07Z | https://github.com/encode/uvicorn/issues/1528 | [] | oktavlachs | 1 |
BeanieODM/beanie | pydantic | 825 | [BUG] Document with UUID as Ids and Link/BackLink are badly fetched | Hi,
Thank you again for your work. I noticed a strange result with mongo documents that use UUID as primary keys.
**Describe the bug**
Using UUID as replacement of standard mongo objectId with Linked documents generate bad objects classes when they are fetched.
The first line below show a working result with m... | open | 2024-01-06T12:14:17Z | 2024-02-05T12:20:14Z | https://github.com/BeanieODM/beanie/issues/825 | [
"bug"
] | jeremos | 3 |
proplot-dev/proplot | data-visualization | 4 | Hi-res plots can be quite slow | I just learned about this nice wrapper, but for me it takes too long to plot large xr.dataarray's.
I make the call
`control3d.isel(time=1).plot()`
and then after one second this appears as should
`<matplotlib.collections.QuadMesh at 0x1c203e94a8>`
and then it takes around one minute for the plot to appear. It'... | closed | 2019-01-15T17:24:19Z | 2019-11-30T04:50:18Z | https://github.com/proplot-dev/proplot/issues/4 | [
"enhancement"
] | aaronspring | 15 |
anselal/antminer-monitor | dash | 162 | Fix delete endpoint | - [x] Check if miner actually exists before trying to delete it
- [x] Flash success message | closed | 2020-01-13T22:34:25Z | 2020-01-13T22:37:12Z | https://github.com/anselal/antminer-monitor/issues/162 | [
":bug: bug"
] | anselal | 0 |
mljar/mljar-supervised | scikit-learn | 597 | ERROR:supervised.exceptions:No models produced. | I have done the installation in various ways at Google Cop, but all of them show the following results.
help me plaese..
ERROR:supervised.exceptions:No models produced.
Please check your data or submit a Github issue at https://github.com/mljar/mljar-supervised/issues/new.
AutoML directory: AutoML_3
The task is... | closed | 2022-12-28T01:28:18Z | 2023-01-10T23:55:45Z | https://github.com/mljar/mljar-supervised/issues/597 | [] | moonjoo98 | 5 |
trevorstephens/gplearn | scikit-learn | 250 | What is a good way to avoid generating redundant individuals during the evolution process? | **Is your feature request related to a problem?**
This is really a good package for the symbolic regression task. Yet, I find that this package will output several identical individuals at last.
**Describe the solution you'd like**
I know this is a rather common phenomenon if we use a large tournament size. Howev... | closed | 2021-12-29T11:09:35Z | 2021-12-31T10:10:55Z | https://github.com/trevorstephens/gplearn/issues/250 | [
"enhancement"
] | hengzhe-zhang | 2 |
RobertCraigie/prisma-client-py | asyncio | 961 | prisma generate on binary in venv generates js client instead? | <!--
Thanks for helping us improve Prisma Client Python! 🙏 Please follow the sections in the template and provide as much information as possible about your problem, e.g. by enabling additional logging output.
See https://prisma-client-py.readthedocs.io/en/stable/reference/logging/ for how to enable additional log... | closed | 2024-05-07T15:56:38Z | 2024-05-15T19:32:10Z | https://github.com/RobertCraigie/prisma-client-py/issues/961 | [] | Bewinxed | 2 |
mckinsey/vizro | plotly | 798 | Add default styling for waterfall chart to chart template | Context: https://github.com/mckinsey/vizro/pull/786 | open | 2024-10-08T09:50:55Z | 2024-10-08T13:35:27Z | https://github.com/mckinsey/vizro/issues/798 | [] | huong-li-nguyen | 3 |
pennersr/django-allauth | django | 3,100 | WhaleSpace Provider addition | Can you add a login with whalespace as a new social account provider in this library? | closed | 2022-05-25T09:29:40Z | 2022-11-30T21:17:34Z | https://github.com/pennersr/django-allauth/issues/3100 | [] | SujilDevkota | 1 |
microsoft/qlib | machine-learning | 1,693 | DDGA代码里的time_perf和X有啥区别 | ## ❓ Questions and Help
We sincerely suggest you to carefully read the [documentation](http://qlib.readthedocs.io/) of our library as well as the official [paper](https://arxiv.org/abs/2009.11189). After that, if you still feel puzzled, please describe the question clearly under this issue. | open | 2023-11-16T05:37:56Z | 2023-11-16T05:37:56Z | https://github.com/microsoft/qlib/issues/1693 | [
"question"
] | Andythree | 0 |
LibreTranslate/LibreTranslate | api | 748 | Internal server error | Hey there, after running it for days, my server shows internal server error automatically | open | 2025-02-26T08:01:55Z | 2025-03-21T15:27:36Z | https://github.com/LibreTranslate/LibreTranslate/issues/748 | [
"possible bug"
] | anantsparrow | 1 |
dmlc/gluon-cv | computer-vision | 1,702 | FRAME_RATE | What does 'FRAME_RATE' mean in the config files of action recognition? | closed | 2021-09-16T13:13:37Z | 2021-12-27T06:36:52Z | https://github.com/dmlc/gluon-cv/issues/1702 | [
"Stale"
] | wenzhengzeng | 2 |
betodealmeida/shillelagh | sqlalchemy | 341 | Always tries to load adapter datasetteapi | **Describe the bug**
Whenever I try to use the connect method, it fails unless I've installed datasette
**To Reproduce**
Steps to reproduce the behavior:
1. `pip install shillelagh`
2. `from shillelagh.backends.apsw.db import connect`
3. `connect(":memory:")`
4. See error `Couldn't load adapter datasetteapi`
... | closed | 2023-03-09T17:44:22Z | 2023-04-19T20:55:31Z | https://github.com/betodealmeida/shillelagh/issues/341 | [
"bug",
"help wanted"
] | blackary | 6 |
Lightning-AI/pytorch-lightning | machine-learning | 19,987 | Handle gradient accumulations at the end of epoch differently | ### Bug description
At the end of an epoch with accumulate_grad_batches>1 the dataloader may run out of data before the required number of accumulations. The lightning docs do not say what happens. It could
1. not update the gradients
2. update gradients correctly but with an effectively smaller batch size
3. upd... | open | 2024-06-17T22:14:55Z | 2024-06-22T01:18:23Z | https://github.com/Lightning-AI/pytorch-lightning/issues/19987 | [
"bug",
"optimization",
"ver: 2.0.x"
] | jakub-dyno | 1 |
pytest-dev/pytest-mock | pytest | 136 | mocker fixture cannot be used in module scope | If i define a custom fixture like:
@pytest.fixture(scope='module')
def my_fixture(mocker):
// code using mocker
class TestMyModule(object):
def test_one(self, my_fixture):
// test code
When i run this i get:
ScopeMismatch: You tried to access the 'function' scoped fixture 'mocker' with a... | closed | 2019-02-20T15:45:38Z | 2024-03-11T17:58:05Z | https://github.com/pytest-dev/pytest-mock/issues/136 | [] | aleGpereira | 13 |
dynaconf/dynaconf | django | 354 | Community Meeting Meta Issue [BREAKING CHANGES] | Let's discuss the breaking changes coming on Dynaconf 3.0.0 https://doodle.com/poll/ke2g4kc6mzwgtavh
There are some issues still opened for 3.0 https://github.com/rochacbruno/dynaconf/milestone/9
The highlights to be discussed are:
- **Global `settings` object is going to be deprecated**
Users must create... | closed | 2020-06-09T13:07:44Z | 2020-07-01T18:04:36Z | https://github.com/dynaconf/dynaconf/issues/354 | [
"Pending Release"
] | rochacbruno | 14 |
deepspeedai/DeepSpeed | deep-learning | 6,565 | [BUG] FileNotFoundError: [Errno 2] No such file or directory: 'numactl' when runing run_ds.sh in DeepSpeedExamples/training/cifar | **Describe the bug**
when I run the `run_ds.sh` in `DeepSpeedExamples/training/cifar` folder, I come up with the ` FileNotFoundError: [Errno 2] No such file or directory: 'numactl'`
**To Reproduce**
Steps to reproduce the behavior:
just run `run_ds.sh` scirpt in the `DeepSpeedExamples/training/cifar` folder
... | closed | 2024-09-24T09:27:46Z | 2024-10-27T10:09:45Z | https://github.com/deepspeedai/DeepSpeed/issues/6565 | [
"bug",
"training"
] | shadow150519 | 2 |
adithya-s-k/marker-api | rest-api | 16 | IndexError: list index out of range | ERROR: Exception in ASGI application
Traceback (most recent call last):
File "/usr/local/lib/python3.10/dist-packages/uvicorn/protocols/http/httptools_impl.py", line 411, in run_asgi
result = await app( # type: ignore[func-returns-value]
File "/usr/local/lib/python3.10/dist-packages/uvicorn/middleware/p... | open | 2024-08-28T01:59:47Z | 2024-08-28T11:50:52Z | https://github.com/adithya-s-k/marker-api/issues/16 | [] | huelsgp27 | 0 |
waditu/tushare | pandas | 1,660 | 因子需求:研报摘要 | 格式:
股票名称-股票id-研报入库时间-券商-研报作者-评级-研报标题-研报摘要-页数
数据源参考:
http://www.hibor.org/
| open | 2022-06-24T08:05:57Z | 2022-06-24T08:05:57Z | https://github.com/waditu/tushare/issues/1660 | [] | ZhangLi1984 | 0 |
mkhorasani/Streamlit-Authenticator | streamlit | 256 | Hash API Keys | I want to store API keys for each user in the config yaml file and the logic is working good for now ( User based API keys). I know the passwords are hashed automatically or one can hash the passwords with Hasher, would be it good to hash API keys too ?
If yes , then it would be great to provide to feature where any s... | closed | 2025-02-16T01:02:48Z | 2025-02-25T19:20:43Z | https://github.com/mkhorasani/Streamlit-Authenticator/issues/256 | [
"help wanted"
] | deepukr007 | 1 |
harry0703/MoneyPrinterTurbo | automation | 327 | 运行时报错类型错误 | 
2024-04-27 23:25:00.316 Uncaught app exception
Traceback (most recent call last):
File "D:\Python39\lib\site-packages\streamlit\runtime\scriptrunner\script_runner.py", line 584, in _run_script
exec(... | closed | 2024-04-27T15:26:53Z | 2024-04-27T16:08:43Z | https://github.com/harry0703/MoneyPrinterTurbo/issues/327 | [] | hy546880109 | 1 |
Anjok07/ultimatevocalremovergui | pytorch | 1,774 | Process: MDX-Net Raw Error Details: | Last Error Received:
Process: MDX-Net
If this error persists, please contact the developers with the error details.
Raw Error Details:
RuntimeError: "Error opening 'C:\\Users\\jagos\\AppData\\Local\\Programs\\Ultimate Vocal Remover\\temp_sample_clips\\Wieczne Światło Miłości ver3_35_second_sample.wav': System error... | open | 2025-03-12T23:27:45Z | 2025-03-12T23:27:45Z | https://github.com/Anjok07/ultimatevocalremovergui/issues/1774 | [] | Janusz-gosciniak | 0 |
google-research/bert | tensorflow | 500 | Poor performance on squad 2 evaluation performed outside of the GPU(s) | I have noticed that a significant amount of the bert-squad 2 processing that occurs outside of the GPU (lead-up to GPU-based tf processing) occurs on a single core and can take a great deal of time. Monitoring the GPU and CPU utilization, I can see the GPU being inactive and a single CPU being pegged. That eventually... | closed | 2019-03-14T18:29:21Z | 2019-06-04T19:36:44Z | https://github.com/google-research/bert/issues/500 | [] | mfeblowitz | 2 |
Asabeneh/30-Days-Of-Python | matplotlib | 536 | Good repository | Good repository | open | 2024-06-30T02:57:03Z | 2024-06-30T02:57:03Z | https://github.com/Asabeneh/30-Days-Of-Python/issues/536 | [] | MAFLIXD | 0 |
redis/redis-om-python | pydantic | 613 | typing.Dict cannot be used as a JsonModel field | ```
Python 3.9.18
hiredis 2.3.2
redis 5.0.4
redis-om 0.3.0
types-redis 4.6.0.20240425
pydantic 2.7.1
pydantic_core 2.18.2
```
This causes the exception
```python
from typing import Dict
from redis_om import JsonModel
class ScanModel(J... | closed | 2024-05-04T17:03:53Z | 2024-05-07T20:42:40Z | https://github.com/redis/redis-om-python/issues/613 | [] | woutdenolf | 0 |
vitalik/django-ninja | pydantic | 955 | api doc for models.BigAutoField primary_key | my model define:
```python
class Messages(models.Model):
id = models.BigAutoField(primary_key=True)
```
ModelSchema define:
```python
class MessageOut(ModelSchema):
class Meta:
model = Messages
fields = ["id"]
```
unexpectedly,on the API/doc page, the SCHEMA for ID is `Id (integer... | closed | 2023-11-24T09:59:02Z | 2023-12-06T02:48:42Z | https://github.com/vitalik/django-ninja/issues/955 | [] | shimachao | 1 |
ivy-llc/ivy | pytorch | 28,752 | Fix Frontend Failing Test: torch - averages_and_variances.numpy.mean | closed | 2024-05-22T07:02:51Z | 2024-05-23T21:57:20Z | https://github.com/ivy-llc/ivy/issues/28752 | [
"Sub Task"
] | ZenithFlux | 0 | |
ymcui/Chinese-LLaMA-Alpaca | nlp | 125 | 您好,请问一下,decapoda-research发布的权重可以应用到本项目吗 | 如题,在huggingface上找到两个一个Nyanko7的另一个decapoda的llama权重。但是下载了后者。。。。
使用convert_llama_weights_to_hf的时候才发现根本不适用,后面才看到“本项目不对使用第三方(非Facebook官方)权重的合规性和正确性负责,例如HuggingFace模型库中的decapoda-research/llama-7b-hf(use at your own risk)。”
那么现在有没有脚本可以支持decapoda这个版本的权重呢? | closed | 2023-04-11T10:50:10Z | 2023-05-14T22:02:22Z | https://github.com/ymcui/Chinese-LLaMA-Alpaca/issues/125 | [
"stale"
] | another1s | 3 |
3b1b/manim | python | 1,912 | Small bug: wrong type of "cube" in drawings.py Laptop class. | ##Error message:
File "C:\manim\manimlib\mobject\svg\drawings.py", line 152, in __init__
body.set_fill(self.shaded_body_color, opacity=1)
AttributeError: 'Cube' object has no attribute 'set_fill'
## Expected behavior:
Being able to instantiate the class and use it for whatever
## How to reproduc... | closed | 2022-11-20T20:28:22Z | 2023-01-31T17:20:55Z | https://github.com/3b1b/manim/issues/1912 | [
"bug"
] | Jesperoka | 1 |
junyanz/pytorch-CycleGAN-and-pix2pix | pytorch | 1,492 | Pix2PixModel: G_L1 retains lambda_L1 multiplier | When I tune the lambda_L1 hyperparameters, the corresponding G_L1 loss retains the lambda_L1 multiplier. In the image below, the second row (G_L1 loss = 0.1121; lambda_L1 = 10) performs the best (as far as I can tell), but the losses cannot be compared directly.
 done, defined at /home/ubuntu/.local/lib/python3.8/site-packages/cryptofeed/backends/redis.py:65> exception=ResponseError('Command # 1 (ZADD book-... | closed | 2021-11-02T06:45:19Z | 2021-11-05T00:23:59Z | https://github.com/bmoscon/cryptofeed/issues/707 | [
"bug"
] | xiandong79 | 5 |
QingdaoU/OnlineJudge | django | 65 | nginx服务起不来 | 
参照w网上的重启,还有sudo 都无法解决。 | closed | 2016-12-01T10:05:18Z | 2016-12-01T14:10:38Z | https://github.com/QingdaoU/OnlineJudge/issues/65 | [] | drops123456 | 2 |
Urinx/WeixinBot | api | 277 | 关于WeixinBot项目无法使用问题说明(新手必看) | 17年前登陆过web网页版的微信可以登录并使用此框架,17年后的新注册微信号包括以前没有登陆过web网页版微信的号无法使用此框架,想搞着自己的机器人搞着玩的,可以去购买支持web登录微信号,如果是公司开发需要,那么唯一选择就是找正规企业合作API,(因为大家github搜索出来的基本都是网页版 wxpy wechaty itchat等等都是基于网页微信开发的)。所以你们可以寻找API提供商,不过著名的提供商入门条件较高5W起步,QQ 微信提供的一堆二手骗子, 容易封号,无法维护, 赚一波钱就跑(微信一升级,API就废了,但是价格便宜 和割韭菜一样),所以推荐大家 寻找:有官网、API、系统、有能力提供协议升级稳定的企业(二手骗子一般... | closed | 2019-12-04T02:49:47Z | 2019-12-10T08:49:16Z | https://github.com/Urinx/WeixinBot/issues/277 | [] | 2048537793 | 0 |
Lightning-AI/pytorch-lightning | deep-learning | 20,101 | pl.TrainResult not found in 2.3.3 | ### Bug description
Documentation I'm looking at says to use `pl.TrainResult`, but I get an attribute error: module 'pytorch_lightning' has no attribute 'TrainResult'. Other issues I see on here seem to specify that I should be using 0.90 or above, which is satisfied since I'm on 2.3.3. Has TrainResult been removed?
... | closed | 2024-07-18T18:07:26Z | 2024-07-18T21:48:31Z | https://github.com/Lightning-AI/pytorch-lightning/issues/20101 | [
"question"
] | manavkulshrestha | 1 |
d2l-ai/d2l-en | pytorch | 2,012 | Diagram Style For Contributing to Content | I wanted to contribute to the content on the [lesson for DenseNet](http://d2l.ai/chapter_convolutional-modern/densenet.html), since in my opinion, I don't feel the lesson has an adequate explanation for a DenseBlock.
An image and a short explanation of its architecture might go a long way for learners, so I'd like to ... | open | 2022-01-16T06:02:04Z | 2022-01-16T06:02:44Z | https://github.com/d2l-ai/d2l-en/issues/2012 | [] | Vortexx2 | 0 |
autokey/autokey | automation | 688 | Choosing to cancel on list menu dialog | ### Has this issue already been reported?
- [X] I have searched through the existing issues.
### Is this a question rather than an issue?
- [X] This is not a question.
### What type of issue is this?
Bug
### Which Linux distribution did you use?
Manjaro/KDE
### Which AutoKey GUI did you use?
... | open | 2022-04-14T00:32:26Z | 2022-04-14T21:13:03Z | https://github.com/autokey/autokey/issues/688 | [
"bug",
"scripting",
"easy fix",
"good first issue"
] | SpookedByRoaches | 1 |
streamlit/streamlit | python | 10,747 | Add support for Jupyter widgets / ipywidgets | ### Checklist
- [x] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar feature requests.
- [x] I added a descriptive title and summary to this issue.
### Summary
Jupyter Widgets are [interactive browser controls](https://github.com/jupyter-widgets/ipywidgets/blob/main/do... | open | 2025-03-12T16:22:36Z | 2025-03-18T10:31:37Z | https://github.com/streamlit/streamlit/issues/10747 | [
"type:enhancement",
"feature:custom-components",
"type:possible-component"
] | lukasmasuch | 1 |
Lightning-AI/pytorch-lightning | machine-learning | 20,371 | metrics csv in ddp mode | ### Bug description
It seems like that metrics.csv only log rank 0 when launch ddp mode? Am I able to create different metrics.csv for logging different ranks, because I want to log losses in different rank? If so, How?
### What version are you seeing the problem on?
v2.2
### How to reproduce the bug
_No respo... | closed | 2024-10-29T01:04:13Z | 2024-11-19T00:31:31Z | https://github.com/Lightning-AI/pytorch-lightning/issues/20371 | [
"working as intended"
] | ruyanyinian | 1 |
xlwings/xlwings | automation | 1,790 | RunPython won't accept file name with spaces as argument in xlwings Pro | #### OS: Windows 10
#### xlwings 0.25.3, Office 365, Python 3.10
#### Issue:
I have calls to RunPython in a VBA macro that work fine as follows with the free version of xlwings, like so:
```
RunPython ("import my_file; my_file.my_function('" & ThisWorkbook.Name & "')")
```
I'm now working with an xlwings... | closed | 2021-12-20T18:59:56Z | 2022-05-11T06:49:49Z | https://github.com/xlwings/xlwings/issues/1790 | [
"bug"
] | briangtr | 5 |
nerfstudio-project/nerfstudio | computer-vision | 2,664 | Circular imports when installing custom model | Hi! Thanks for this excellent work! I'm trying to register a custom method in Nerfstudio according to the [nerfstudio-method-template](https://github.com/nerfstudio-project/nerfstudio-method-template) repository, but I got the following error when running `ns-train` or `ns-install-cli`:
```bash
>>> ns-train --help
... | closed | 2023-12-11T08:48:06Z | 2024-10-16T17:54:35Z | https://github.com/nerfstudio-project/nerfstudio/issues/2664 | [] | Timber-Ye | 8 |
healthchecks/healthchecks | django | 396 | Email subject filter for Failure state | Is there any way to specify a subject word to trigger a notification?
At the moment, I'm receiving emails from some software with 3 possible outcomes: Success, Warning, and Failed.
If the task fails, I still get the email, therefore healthchecks thinks the task succeeded.
It'd be nice if we could specify that ... | closed | 2020-07-07T23:56:37Z | 2020-07-23T22:51:44Z | https://github.com/healthchecks/healthchecks/issues/396 | [] | revilo951 | 11 |
piccolo-orm/piccolo | fastapi | 266 | After inserting a fixture, update the primary key sequences | After inserting a fixture:
https://github.com/piccolo-orm/piccolo/blob/8ec9d10313c9ac44916f01e27c9ef58eb22ae0d9/piccolo/apps/fixtures/commands/load.py#L57-L62
For each primary key column we should run something like:
```sql
SELECT setval('my_table_id_seq', (SELECT MAX(id) FROM my_table));
```
To make sure... | open | 2021-09-22T18:49:00Z | 2021-09-22T18:49:00Z | https://github.com/piccolo-orm/piccolo/issues/266 | [
"enhancement",
"good first issue"
] | dantownsend | 0 |
lanpa/tensorboardX | numpy | 295 | add_graph error with SiameseNet | class Siamese(nn.Module):
def __init__(self):
super(Siamese, self).__init__()
self.conv = nn.Sequential(
nn.Conv2d(1, 64, 10), # 64@96*96
nn.ReLU(inplace=True),
nn.MaxPool2d(2), # 64@48*48
nn.Conv2d(64, 128, 7),
nn.ReLU(), # ... | open | 2018-12-05T14:55:38Z | 2018-12-29T17:28:49Z | https://github.com/lanpa/tensorboardX/issues/295 | [
"wait for response"
] | Tmcsn | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.