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
biolab/orange3
data-visualization
6,587
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
orange can not be started ``` export QT_DEBUG_PLUGINS=1 python -m Orange.canvas Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway. QFactoryLoader::QFactoryLoader() checking directory path "/home/dust/miniconda3/lib/python3.10/site-packages/PyQt5/Qt5/plugi...
closed
2023-09-25T19:09:26Z
2023-10-05T12:34:36Z
https://github.com/biolab/orange3/issues/6587
[ "bug report" ]
dustofdust
2
flairNLP/flair
pytorch
2,743
lost decreaing but the metrics are not changing
I would be thankful if you can help me with my questions: I have a sequence tagger , as follows; ``` data_folder = '../data/' columns = {0: 'text', 1: 'pos', 2: 'BIO'} n=3 kf = KFold(n_splits=n, random_state=1, shuffle=True) results = [] for train_index, val_index in kf.split(DATA): train_df = DATA....
closed
2022-04-26T09:19:53Z
2022-11-01T15:05:04Z
https://github.com/flairNLP/flair/issues/2743
[ "question", "wontfix" ]
myeghaneh
8
open-mmlab/mmdetection
pytorch
11,852
Train Error with AMP
Thanks for your error report and we appreciate it a lot. **Checklist** 1. I have searched related issues but cannot get the expected help. 2. I have read the [FAQ documentation](https://mmdetection.readthedocs.io/en/latest/faq.html) but cannot get the expected help. 3. The bug has not been fixed in the latest v...
open
2024-07-13T14:29:16Z
2024-09-30T16:40:00Z
https://github.com/open-mmlab/mmdetection/issues/11852
[]
caiduoduo12138
2
flaskbb/flaskbb
flask
639
In moderation mode, "select topic" checkbox doesn't work
When you go to a board and go into moderation mode, the individual "select topic" checkboxes do not respond to user input (clicking them doesn't change their state). However, you can change their state programatically in the dev tools (e.g. `mycheckbox.checked = true`). Also, the "select all" checkbox works fine ...
open
2022-11-24T00:55:29Z
2022-12-12T14:31:13Z
https://github.com/flaskbb/flaskbb/issues/639
[ "bug" ]
exelotl
3
jazzband/django-oauth-toolkit
django
1,257
how to establish secured communication between two backend using django oauth toolkit?
how to establish secured communication between two backend using django oauth toolkit?
closed
2023-03-10T14:00:30Z
2023-10-04T14:21:13Z
https://github.com/jazzband/django-oauth-toolkit/issues/1257
[ "question" ]
WILLWABO
1
pytest-dev/pytest-django
pytest
543
Proposal: add a --recreate-db-if-migrations/--try-reuse-db option
In more recent versions of Django (1.11, but maybe also 1.10), we might have some new options that would make our testing life more easy :-) What about adding a new _--recreate-db-if-migrations_ or _--try-reuse-db_ option that would just do the best of both worlds? In principle, it would check: Are there any n...
closed
2017-11-23T17:39:35Z
2017-12-04T13:22:31Z
https://github.com/pytest-dev/pytest-django/issues/543
[]
MRigal
1
ydataai/ydata-profiling
data-science
741
pandas profilling too dlow: make multi processing
Have a stable of 10000 rows, 4000 columns, panda profile is too slow... Can you make it in multi-processing ? (ie column stats can be done in multi-processing easily). thanks
closed
2021-03-30T06:11:08Z
2021-09-27T22:45:44Z
https://github.com/ydataai/ydata-profiling/issues/741
[ "performance 🚀" ]
arita37
1
junyanz/pytorch-CycleGAN-and-pix2pix
deep-learning
1,207
Question: Why does a Pixel Discriminator work?
As far as I understand the Pixel Discriminator is equivalent to a PatchGAN of size 1x1, meaning the decoder tries to decide if each pixel is real or fake. But without taking into account surrounding pixels, what information does it use to assign a label and how is it also able to recover high frequency contents of the ...
open
2020-12-03T16:40:41Z
2020-12-17T03:40:59Z
https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/1207
[]
dpelacani
3
tqdm/tqdm
jupyter
1,025
Garbage collection for tqdm._instances
As pointed out in the FAQ, there seem to be multiple issues with newlines appearing in custom consoles (e.g. qtconsole/Spyder), or maybe even any kind of interactive console. I've figured out, that they do not appear when using `position=0` and the problem seems to be that any code that is run and interrupted with a...
open
2020-08-25T13:52:55Z
2020-08-25T21:10:46Z
https://github.com/tqdm/tqdm/issues/1025
[ "duplicate 🗐", "question/docs ‽", "need-feedback 📢", "p2-bug-warning ⚠" ]
skjerns
3
lk-geimfari/mimesis
pandas
1,172
Make it possible to use custom seed in custom provider
At this moment, custom providers do not support different seeds per provider and they just inherit `seed` from `Generic`. See: [generic.py#L147](https://github.com/lk-geimfari/mimesis/blob/master/mimesis/providers/generic.py#L147)
closed
2022-01-14T21:51:55Z
2022-08-13T04:20:42Z
https://github.com/lk-geimfari/mimesis/issues/1172
[ "stale" ]
lk-geimfari
3
autokey/autokey
automation
298
is there a way to use autokey over ssh when I remote in?
is there a way to use autokey over ssh when I remote in?
closed
2019-07-27T06:14:48Z
2019-10-08T19:28:47Z
https://github.com/autokey/autokey/issues/298
[]
careyjames
7
drivendataorg/erdantic
pydantic
93
List Relationships not represented correctly
When using erdantic with pydantic model, the one to many relationships are not rendered properly As shown below the erdantic examples work as expected, however the simple example I have shown is not rendered correctly. I can't see the difference between the A class I have written and the party example. Any help mu...
closed
2023-09-19T08:52:46Z
2024-02-11T22:12:27Z
https://github.com/drivendataorg/erdantic/issues/93
[ "bug" ]
otyrrell
5
fastapi-users/fastapi-users
fastapi
3
Implement forgot/reset password routes
Forgot and reset password routes are essential. To fit with our highly customisable philosophy and to focus only on users logic, we will propose hooks so that end-developers implement their own logic when a password reset is requested (send a e-mail, call an API...).
closed
2019-10-12T07:41:46Z
2019-10-13T10:05:17Z
https://github.com/fastapi-users/fastapi-users/issues/3
[ "enhancement" ]
frankie567
0
ray-project/ray
pytorch
51,485
CI test windows://python/ray/tests:test_runtime_env_plugin is consistently_failing
CI test **windows://python/ray/tests:test_runtime_env_plugin** is consistently_failing. Recent failures: - https://buildkite.com/ray-project/postmerge/builds/8965#0195aad4-a541-45a9-b1ef-d27f9a1da383 - https://buildkite.com/ray-project/postmerge/builds/8965#0195aa03-5c4f-4168-a0da-6cbdc8cbd2df DataCaseName-windows:...
closed
2025-03-18T23:07:47Z
2025-03-19T21:54:28Z
https://github.com/ray-project/ray/issues/51485
[ "bug", "triage", "core", "flaky-tracker", "ray-test-bot", "ci-test", "weekly-release-blocker", "stability" ]
can-anyscale
2
tableau/server-client-python
rest-api
621
Add additional site attributes
Hi, I would like to contribute by adding some additional attributes for site. We use encryption in 2019.4, unable to find in the existing code for this attribute. How can I contribute to add the following site attributes: extract_encryption_mode = site_xml.get('extractEncryptionMode', '') metrics...
open
2020-05-13T06:23:56Z
2022-01-04T16:18:35Z
https://github.com/tableau/server-client-python/issues/621
[ "enhancement" ]
lnorlial
0
ultrafunkamsterdam/undetected-chromedriver
automation
869
Support multiple dotted preferences
Use case ``` chrome_options = uc.ChromeOptions() profile = { "download.default_directory": "/home/ubuntu/Documents/", "download.prompt_for_download": False, "download.directory_upgrade": True, "download.extensions_to_open": "applications/pdf", "plugins.always_open_pdf_externally": True } ...
closed
2022-11-03T10:38:02Z
2022-11-20T21:01:30Z
https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/869
[]
AlexGenKononov
1
neuml/txtai
nlp
248
Add semantic search explainability
There are a couple of great libraries for model explainability, [SHAP](https://github.com/slundberg/shap) and [Transformers Interpret](https://github.com/cdpierse/transformers-interpret). These libraries primarily focus on explaining classification, question-answering, summarization and translation model outputs. There...
closed
2022-03-24T19:09:57Z
2022-03-24T19:20:53Z
https://github.com/neuml/txtai/issues/248
[]
davidmezzetti
0
Urinx/WeixinBot
api
268
如何获取已经添加的所有公众号及其附属信息,如文章列表等等
open
2019-07-01T04:10:03Z
2019-07-01T04:10:03Z
https://github.com/Urinx/WeixinBot/issues/268
[]
SeekPoint
0
scikit-image/scikit-image
computer-vision
7,729
Unify API for footprint-generating functions
## Description For skimage2 we want to conform our footprint generating functions and make the API more consistent. We can do a lot here with backward-compatible conventional deprecations. There are two aspects to this: - (a) Prefix all functions with `footprint_*`. We decided against consolidation in a submodule dur...
open
2025-03-03T23:02:56Z
2025-03-11T14:06:59Z
https://github.com/scikit-image/scikit-image/issues/7729
[ ":hiking_boot: Path to skimage2" ]
lagru
0
RobertCraigie/prisma-client-py
asyncio
54
Add support for combined unique constraints
## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> Prisma supports declaring multiple fields as a combined unique constraint, e.g. ```prisma model User { firstName String lastName String @@id([firstName, lastName]) } ```
closed
2021-08-26T08:03:06Z
2021-11-27T18:16:28Z
https://github.com/RobertCraigie/prisma-client-py/issues/54
[ "kind/feature" ]
RobertCraigie
0
sigmavirus24/github3.py
rest-api
255
Malformed Tag Causes AttributeError in models.py
Hi, I've come across an instance where a broken tag (tag exists, but ref no longer does) returns a 404 through github GUI, and no JSON. When iterating through the tags of that repo, I get the following AttributeError; ``` bash Traceback (most recent call last): File "./common/database/manage_database.py", line 62,...
closed
2014-06-11T00:53:52Z
2014-12-03T04:41:22Z
https://github.com/sigmavirus24/github3.py/issues/255
[ "Needs More Info" ]
davidholsgrove
2
fbdesignpro/sweetviz
pandas
17
Larger feature visualization on right is hidden
Appreciate the effort for this library and I see the potential!. Tried out at work and when the html displayed the charts for features are partially hidden. Thought that I could scroll over to see them but no horizontal scroll bar was available.
closed
2020-07-07T20:04:07Z
2020-07-24T02:35:11Z
https://github.com/fbdesignpro/sweetviz/issues/17
[ "bug" ]
JohnDeJesus22
6
cobrateam/splinter
automation
379
Chromedriver link is out of date
My tests were failing because I followed the link on the docs, which points to a pretty old version of the driver. The latest version is here: http://chromedriver.storage.googleapis.com/index.html?path=2.9/ If you want I can fix it and submit a PR?
closed
2015-03-19T09:12:28Z
2018-08-19T00:37:32Z
https://github.com/cobrateam/splinter/issues/379
[ "easy", "help wanted", "good first issue" ]
leebrooks0
1
microsoft/nlp-recipes
nlp
328
[ASK] test conda env
### Description test a new installation of conda env ### Other Comments
closed
2019-08-19T17:13:47Z
2019-08-21T21:59:54Z
https://github.com/microsoft/nlp-recipes/issues/328
[]
saidbleik
1
sloria/TextBlob
nlp
137
Language Detection Not Working (HTTP Error 503: Service Unavailable)
from textblob import TextBlob txt = u"Test Language Detection" b = TextBlob(txt) b.detect_language() It is giving "HTTPError: HTTP Error 503: Service Unavailable" Python Version: 2.7.6 TextBlob Version: 0.11.1 OS: Ubuntu 14.04 LTS & CentOS 6.8
closed
2016-09-01T13:14:47Z
2017-02-27T03:54:39Z
https://github.com/sloria/TextBlob/issues/137
[]
manurajhada
20
scikit-image/scikit-image
computer-vision
7,596
Support for Python 3.13
### Description: I'm running into issues installing scikit. I'm on windows 11. I'm using VSCode + Python 13.3. This is working on my laptop, but I'd like to work on my desktop, and it is just not cooperating there. I went through the listed dependencies and installed the necessary packages, all without issue. It ke...
closed
2024-10-25T23:25:14Z
2024-12-13T20:43:22Z
https://github.com/scikit-image/scikit-image/issues/7596
[ ":bug: Bug" ]
tifdes
6
kubeflow/katib
scikit-learn
2,283
Define the Python deprecation/supporting policies for the Katib SDK
/kind feature **Describe the solution you'd like** [A clear and concise description of what you want to happen.] As we discussed in https://github.com/kubeflow/katib/pull/2278#issuecomment-1992328152, currently, we support the following Python versions for the SDK, but we don't have any policies to decide which ve...
closed
2024-03-12T19:15:18Z
2024-06-13T08:25:09Z
https://github.com/kubeflow/katib/issues/2283
[ "kind/feature" ]
tenzen-y
7
mwaskom/seaborn
matplotlib
3,404
Plots created via seaborn.objects and inside for loop do not appear in Jupyter notebook unless p.plot() is called
First, let me preface this issue by thanking @mwaskom for such a wonderful open-source library. I lean heavily on Seaborn for almost all of my data visualization needs. Both the aesthetics and abstractions are superb. # Summary I am excited to use the `seaborn.objects` interface. I am using Jupyter Lab and am it...
closed
2023-06-26T21:46:29Z
2023-06-27T23:04:29Z
https://github.com/mwaskom/seaborn/issues/3404
[]
erikr
3
adbar/trafilatura
web-scraping
374
metadata extraction problem
Hi, Error url : `https://www.hpe.com/us/en/what-is/security-monitoring.html` Error code: [/usr/local/lib/python3.10/dist-packages/trafilatura/json_metadata.py](https://localhost:8080/#) in extract_json(schema, metadata) 63 if metadata.sitename is None or (len(metadata.sitename) < len...
closed
2023-06-18T06:24:49Z
2023-06-28T13:28:47Z
https://github.com/adbar/trafilatura/issues/374
[]
fortyfourforty
8
iperov/DeepFaceLab
machine-learning
5,583
Model constantly collapses, no idea why.
I have a pretrain model from scratch LIAE-UD but I've had this issue with LIAE-UDT and also DF-UDT 320 res 384/96/96/32 is the main model I use.. Sometimes I can get it to work all the way through. Most of the time it collapses if I train it for too long though. I do not know why. The model will work fine for most...
open
2022-11-12T00:56:31Z
2023-06-08T23:04:54Z
https://github.com/iperov/DeepFaceLab/issues/5583
[]
WelschCode
2
aleju/imgaug
deep-learning
234
Does VGG Segmentations (polygons) can be augmented ?
Hi @aleju, and thanks for this amazing library ! I use Mask R-CNN from Matterport Github, and recently with your library because I need more images. The "problem" is that my annotations are polygons made with VGG Image Annotator tool and I want to also augment these annotations. ![segment](https://user-images.gi...
open
2019-01-17T14:01:31Z
2021-04-21T19:48:07Z
https://github.com/aleju/imgaug/issues/234
[]
nayzen
11
pydata/xarray
pandas
9,717
DataTree.isel called with missing_dims fails when a subtree is missing the dimension
### What happened? Previously in 2024.09.0, subtrees appeared to inherit all parent coordinates, so the `DataTree.isel` statement in the MCVE worked. However in 2024.10.0, this inheritance no longer seems to apply, so a `DataTree.isel` fails when applying selection logic on the subtree with a parent dimension. Furt...
closed
2024-11-05T11:02:18Z
2024-11-05T12:48:01Z
https://github.com/pydata/xarray/issues/9717
[ "bug", "needs triage" ]
sjperkins
1
joerick/pyinstrument
django
153
Jupyter integration
Hi, Would you be willing to accept a PR that adds Jupyter magic integration? It would look something like this: ![image](https://user-images.githubusercontent.com/1813603/136089667-bda54813-8a29-406c-8d3a-b1d973d44031.png) Doing this would add IPython as a dependency (or optional dependency). Thanks in advan...
closed
2021-10-05T19:28:44Z
2021-11-07T14:14:58Z
https://github.com/joerick/pyinstrument/issues/153
[]
mlucool
2
WZMIAOMIAO/deep-learning-for-image-processing
deep-learning
790
请问大家这是我训练10个epoch后的结果,可能是些什么原因出错了
![b16fef4b056096c5d12a228634a0d10](https://github.com/WZMIAOMIAO/deep-learning-for-image-processing/assets/130301478/8f04ee74-7dd0-4f9e-94ae-107970245a9b) ![e477cea3fe96d9f39372c5ce7c59df8](https://github.com/WZMIAOMIAO/deep-learning-for-image-processing/assets/130301478/d8c618c2-9581-4151-aa76-97854c3a766a) 会不会是epoc...
open
2024-02-27T12:42:44Z
2024-03-11T08:17:19Z
https://github.com/WZMIAOMIAO/deep-learning-for-image-processing/issues/790
[]
Link20A
1
wkentaro/labelme
deep-learning
765
Horizontal guide lines while creating LineStrips[Feature]
I am trying to create symmetric line strips for lane detection. For example if there is a dot in (x0, 250) in left lane, there must be a dot in (x1, 250) too. After creating a line strip in left it is hard to create another line strip symmetric to it in right. A horizontal guide line would make everything easier. ...
closed
2020-09-01T18:47:53Z
2022-06-25T04:56:51Z
https://github.com/wkentaro/labelme/issues/765
[]
metobom
0
CorentinJ/Real-Time-Voice-Cloning
python
607
Guidance in selecting GPU
Thanks for creating this repo. Sorry for asking this dumb question here, I am trying to train a model for encoder in my local language. I am very new to AI. I need assistance in choosing a GPU for training encoder. I understand a normal MacBook Pro(8GB ram, 256SSD) cannot be used for training for days. I am thinkin...
closed
2020-11-24T09:26:43Z
2020-12-05T08:22:37Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/607
[]
sandarshnaroju
2
huggingface/datasets
deep-learning
6,475
laion2B-en failed to load on Windows with PrefetchVirtualMemory failed
### Describe the bug I have downloaded laion2B-en, and I'm receiving the following error trying to load it: ``` Resolving data files: 100%|██████████| 128/128 [00:00<00:00, 1173.79it/s] Traceback (most recent call last): File "D:\Art-Workspace\src\artworkspace\tokeneval\compute_frequencies.py", line 31, in <mo...
open
2023-12-06T00:07:34Z
2023-12-06T23:26:23Z
https://github.com/huggingface/datasets/issues/6475
[]
doctorpangloss
6
dynaconf/dynaconf
fastapi
838
Metadata for configuration data point
Hey friends, does Dynaconf support metadata alongside it's managed configuration? How would one go about adding further details about a data point? Examples would be the owner or source of a setting, range and restrictions, or a short description for UI explanation. For my specific use case (data science lab work) ...
open
2022-11-28T13:31:48Z
2024-07-01T23:24:08Z
https://github.com/dynaconf/dynaconf/issues/838
[ "enhancement", "question", "RFC", "typed_dynaconf" ]
ThomDietrich
5
svc-develop-team/so-vits-svc
deep-learning
114
Can't export as wav
C:\Users\take5\Desktop\svc>python inference_main.py -m "models/niel/G_183000.pth" -c "models/niel/config.json" -n "asians1.wav" -t 0 -s "niel" --wav_format "WAV_FORMAT" gives me raise ValueError("Unknown format: {0!r}".format(format_str)) ValueError: Unknown format: 'WAV_FORMAT'
closed
2023-04-02T16:38:57Z
2023-04-07T11:59:00Z
https://github.com/svc-develop-team/so-vits-svc/issues/114
[ "not urgent" ]
Mikefizzy
1
mwaskom/seaborn
matplotlib
3,021
Can we get error bar statistics?
Hi - Did some search but no luck. Is there anyway to retrieve the statistics of the plots, such as mean, error bar lower bound, error bar upper bound from seaborn.relplot on aggregated data? for example, [this](https://seaborn.pydata.org/tutorial/relational.html#aggregation-and-representing-uncertainty) plot ```...
closed
2022-09-13T01:47:45Z
2022-09-13T02:27:53Z
https://github.com/mwaskom/seaborn/issues/3021
[]
galaxy139
1
iterative/dvc
machine-learning
9,818
`dvc repro --dry --allow-missing`: fails on missing data
## I tried to update our dvc ci pipeline Currently we got the following commands (among others). `dvc pull` to check if everything is pushed `dvc status` to check if the dvc status is clean. In other words no repro would be run if one would run dvc repro. But pulling thats a long time and with the now new --...
closed
2023-08-08T09:21:56Z
2023-10-17T12:12:21Z
https://github.com/iterative/dvc/issues/9818
[ "bug", "awaiting response", "p1-important", "A: pipelines" ]
Otterpatsch
24
Sanster/IOPaint
pytorch
116
Some bugs and feautures
## Add support touch pad gesture It is impossible to work from a laptop without a mouse. Since the zoom works when scrolling the mouse wheel, then simply moving around the canvas (which, let's say, works fine in drawing programs) is replaced by stupidly scrolling back and forth. ## Add more functions on mask 1...
open
2022-11-09T09:16:16Z
2022-11-10T01:21:01Z
https://github.com/Sanster/IOPaint/issues/116
[]
bropines
1
sinaptik-ai/pandas-ai
data-science
871
index 0 is out of bounds for axis 0 with size 0
### System Info pandasai - 1.5.15 Python - 3.9.13 ### 🐛 Describe the bug smart_df = SmartDataframe( df, config={"llm": llm, "custom_head": df.head(2)}) ques = 'Which companies are doing better than American Express in Waste category?' ans = smart_df.chat(ques, output_type = "datafram...
closed
2024-01-12T08:23:36Z
2024-06-01T00:21:02Z
https://github.com/sinaptik-ai/pandas-ai/issues/871
[]
Devicharith
1
explosion/spaCy
deep-learning
12,657
Downloading models fails with spacy >= 3.2.2
<!-- NOTE: For questions or install related issues, please open a Discussion instead. --> ## How to reproduce the behaviour <!-- Include a code example or the steps that led to the problem. Please try to be as specific as possible. --> To reproduce the issue we had a docker container with the Dockerfile below. Th...
closed
2023-05-23T08:14:32Z
2023-06-23T00:02:46Z
https://github.com/explosion/spaCy/issues/12657
[]
charlesmass2
4
litestar-org/litestar
pydantic
3,946
DeprecationWarning attrs
### Description I turn DeprecationWarning into errors in some test suites, and get this while I'm never importing AttrsSchemaPlugin: ``` DeprecationWarning: Import of deprecated import 'litestar.contrib.attrs.AttrsSchemaPlugin'. Deprecated in litestar 2.13.0. This import will be removed in 3.0. importing AttrsSche...
closed
2025-01-13T05:31:48Z
2025-02-26T10:56:18Z
https://github.com/litestar-org/litestar/issues/3946
[ "Bug :bug:" ]
euri10
1
tflearn/tflearn
data-science
677
failed to run the reinforcement_learning example
I was trying to run the atari_1step_qlearning.py ,but I got an exception below: Traceback (most recent call last): File "./qLearning_test.py", line 463, in <module> tf.app.run() File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/platform/app.py", line 44, in run _sys.exit(main(_sys.argv[:1]...
open
2017-03-22T04:25:53Z
2018-02-02T12:08:10Z
https://github.com/tflearn/tflearn/issues/677
[]
windog18
2
stanfordnlp/stanza
nlp
617
German ordinal numbers leading to split sentences
**Describe the bug** In German, ordinal numbers have a dot after the number: * On the 1st day --> Am 1. Tag * The 23rd item --> Der 23. Eintrag Furthermore, the day-of-the-month part of a date is always an ordinal number: * September 30 --> Der 30. September (i.e. "the thirtieth September") It seems that unde...
open
2021-02-08T12:26:14Z
2021-11-25T08:36:20Z
https://github.com/stanfordnlp/stanza/issues/617
[ "bug" ]
yolpsoftware
18
netbox-community/netbox
django
18,819
custom field value not shown in summary
### Deployment Type Self-hosted ### NetBox Version v4.2.4 ### Python Version 3.10 ### Steps to Reproduce 1. Create a custom field: - Name: **last_ping_check** - Type: **Date & time** - Object type: **IPAM > IP Address** 2. Update custom field for an IP Address via API (Date & time format is: `yyyy-MM-dd...
closed
2025-03-05T13:48:30Z
2025-03-05T14:22:04Z
https://github.com/netbox-community/netbox/issues/18819
[ "type: bug", "status: needs triage" ]
lucafabbri365
2
PokeAPI/pokeapi
graphql
332
encounters return is different than other endpoints'
Right now the encounters endpoint lives at `https://pokeapi.co/api/v2/pokemon/{id}/encounters` For a given id, the URL returns a list, rather than a hash. On the other hand, the endpoint URLs (eg. `/api/v2/pokemon`) return very similar data, but prefix that data with `results:` Would it make sense to do this here? U...
closed
2018-04-17T01:57:48Z
2020-08-12T20:19:47Z
https://github.com/PokeAPI/pokeapi/issues/332
[ "question", "v3" ]
jrubinator
4
WZMIAOMIAO/deep-learning-for-image-processing
pytorch
82
验证模块
在SSD中想获得每个类ap,我根据原SSD的eval代码进行修改,验证时发现得到的map比你使用的coco评价准则所获得的map降了3,4个点,请问你觉得是哪些地方有可能出问题(请问方便的话你可以添加获得每个类别的ap方法吗,感激不尽)
closed
2020-11-07T05:25:09Z
2020-11-07T05:53:26Z
https://github.com/WZMIAOMIAO/deep-learning-for-image-processing/issues/82
[]
xxq-pioneer
1
marimo-team/marimo
data-visualization
4,224
marimo fails to terminate using double ctrl-c when running under uv
### Describe the bug If I run marimo, e.g. `marimo tutorial intro`, then I can stop it easily by typing ctrl-c twice quickly, once to initiate termination and another to not bother answering the subsequent `Are you sure you want to quit? (y/n)` prompt. That is how I normally terminate marimo. However, if I run `uvx m...
open
2025-03-23T22:51:03Z
2025-03-23T22:51:03Z
https://github.com/marimo-team/marimo/issues/4224
[ "bug" ]
bulletmark
0
huggingface/transformers
pytorch
36,577
Init on meta device and then materialize on gpu leads to very large errors
### System Info - `transformers` version: 4.47.1 - Platform: Linux-5.4.0-153-generic-x86_64-with-glibc2.35 - Python version: 3.10.16 - Huggingface_hub version: 0.27.1 - Safetensors version: 0.5.1 - Accelerate version: 1.2.1 - Accelerate config: not found - PyTorch version (GPU?): 2.4.0+cu121 (True) - Tensorflow ver...
closed
2025-03-06T07:27:04Z
2025-03-06T10:15:04Z
https://github.com/huggingface/transformers/issues/36577
[ "bug" ]
fingertap
6
pytest-dev/pytest-django
pytest
374
Switch to codecov
I think codecov is better than coveralls. Should we make the switch?
closed
2016-08-18T19:13:44Z
2018-12-22T09:28:06Z
https://github.com/pytest-dev/pytest-django/issues/374
[ "enhancement" ]
blueyed
1
FactoryBoy/factory_boy
django
299
FuzzDate.start_date and end_date returns integer not date object.
It seems like the documentation is out of date. The comments show a date object being returned, but the code actually returns an integer (proleptic Gregorian ordinal). the documentation: http://factoryboy.readthedocs.io/en/latest/fuzzy.html#factory.fuzzy.FuzzyDate here's the piece of code which seems to cause the di...
closed
2016-05-02T16:53:48Z
2018-05-08T23:21:54Z
https://github.com/FactoryBoy/factory_boy/issues/299
[ "Doc" ]
tkreis
3
ShishirPatil/gorilla
api
266
[API Zoo] Error Updating API Zoo Index
name: API Zoo Index about: Update Error **Describe the issue** Error(s) occurred while adding new API documentation to the API Zoo Index. **Error adding API documentation in data/apizoo/Oracle_Cloud_Infrastructure_API.json to the API Zoo Index** - HTTP Status: 504 - Response: ``` <html> <head><title>504 Gateway Tim...
closed
2024-03-16T04:56:42Z
2024-03-17T07:55:46Z
https://github.com/ShishirPatil/gorilla/issues/266
[ "apizoo-index" ]
github-actions[bot]
1
allenai/allennlp
pytorch
5,588
`allennlp test-install` broken without `checklist`
This is a bit of fall-out from #5507; encountered in https://github.com/conda-forge/allennlp-feedstock/pull/35 ``` + allennlp test-install [...]/lib/python3.9/site-packages/allennlp/confidence_checks/task_checklists/__init__.py:15: UserWarning: To use the checklist integration you should install ``allennlp`` with ...
closed
2022-03-10T01:14:04Z
2022-03-21T19:37:52Z
https://github.com/allenai/allennlp/issues/5588
[ "bug" ]
h-vetinari
3
jmcnamara/XlsxWriter
pandas
677
worksheet.add_write_handler() not handling NoneType object.
Title: worksheet.add_write_handler() not handling NoneType object. Hi, I am using XlsxWriter to do handling NoneType (getting from Database - its 'Null' in DB and 'None' in Python) but it appears to do 'worksheet.write_blank()'. I am using Python version 3.X and latest Version XlsxWriter. Here is some c...
closed
2019-12-17T02:01:46Z
2019-12-23T01:49:14Z
https://github.com/jmcnamara/XlsxWriter/issues/677
[ "bug", "ready to close" ]
haripra
2
zappa/Zappa
flask
449
[Migrated] An error occurred (ResourceNotFoundException) when calling the DescribeLogStreams operation
Originally from: https://github.com/Miserlou/Zappa/issues/1193 by [robomotic](https://github.com/robomotic) <!--- Provide a general summary of the issue in the Title above --> ## Context I have added a function handle to process new S3 objects into my existing flask app process. The flask app process is working fin...
closed
2021-02-20T08:35:00Z
2024-04-13T16:18:08Z
https://github.com/zappa/Zappa/issues/449
[ "no-activity", "auto-closed" ]
jneves
3
microsoft/qlib
machine-learning
1,290
关于强化学习单元测试数据集的疑问
请问可以提供一下强化学习单元测试部分(test_saoe_simple.py)的数据处理脚本吗?尝试使用高频数据脚本处理后的数据进行ppo训练,但单元测试失败了,推测可能是因为数据格式不对导致训练失败
closed
2022-09-13T09:26:44Z
2023-02-04T15:01:51Z
https://github.com/microsoft/qlib/issues/1290
[ "question", "stale" ]
myl17
3
ndleah/python-mini-project
data-visualization
277
feat: Add a "Try again" Feature to Caterpillar Game project
# Description The current Caterpillar Game project lacks the option to "try again" feature, which would allow players to restart the game after it ends without needing to start it again manually, with this new feature I would like to enhance the user experience by providing a try again. ![image](https://github.com/...
open
2024-06-10T03:49:55Z
2024-06-10T07:49:35Z
https://github.com/ndleah/python-mini-project/issues/277
[]
Gabriela20103967
0
plotly/dash-table
dash
255
`editable_name` showing controls but not changing column names
Passing `editable_name: True` in the `columns` dict seems to show the pencils, clicking on the pencils also shows the prompt, but does not actually change the column name. I also tried passing a number for this parameter, and in this case no pencils appeared next to column names: <img width="1096" alt="screen s...
closed
2018-11-28T03:22:34Z
2018-12-06T17:01:18Z
https://github.com/plotly/dash-table/issues/255
[ "dash-type-bug" ]
eliasdabbas
5
pywinauto/pywinauto
automation
1,276
Is there a way to capture screen shots from more than 2 displays?
Hello , I use pywinauto to automate desktop app and this app runs with multiple display. I'd like to capture screen shot from multiple display while running pywinauto. I used capture_as_image to capture screen shot, but it seems this captures only one screen from one display. Is there a way to capture screen shots fr...
open
2023-01-19T05:57:06Z
2023-07-15T06:00:52Z
https://github.com/pywinauto/pywinauto/issues/1276
[]
A1BOCO
1
waditu/tushare
pandas
1,524
财经日历(eco_cal)限制条数
按照日期(date)和货币代码(currency)获取数据,超出限制条数。 日期:20181214,货币代码:EUR
open
2021-03-14T14:52:05Z
2021-03-14T14:52:05Z
https://github.com/waditu/tushare/issues/1524
[]
jokul2010
0
Colin-b/pytest_httpx
pytest
83
Unable to match on JSON content
When mocking a request body with `match_content`, the value passed in gets converted to bytes. However, when making the actual request, the body gets converted to json, even if I use `content` and pass an array of bytes. Therefore, I'm unable to match any requests when using the `match_content` parameter. I would l...
closed
2022-09-08T18:43:36Z
2023-09-04T18:47:03Z
https://github.com/Colin-b/pytest_httpx/issues/83
[ "enhancement" ]
colton-flyhomes
6
ranaroussi/yfinance
pandas
1,277
Can't find EBITDA data that matches yahoo finance site
Whenever I try to get ebitda data for a specific ticker it returns a number that doesn't match the website. An example as of 1/4/23 would be: **msft = yf.Ticker("MSFT")** **msft.info['ebitda']** **98841001984** The yahoo finance website shows the number as: ![image](https://user-images.githubuserconten...
closed
2023-01-04T21:42:21Z
2024-03-14T21:44:05Z
https://github.com/ranaroussi/yfinance/issues/1277
[]
AbdulHassan0
2
Miserlou/Zappa
django
1,350
Running zappa with no parameters causes exception
Running `zappa` command with no other arguments causes exception ## Context Running inside venv with zappa installed ## Expected Behavior Help message appears ## Actual Behavior ``` $ zappa Oh no! An error occurred! :( ============== Traceback (most recent call last): File "/home/ovrlrdq/.pyenv/v...
closed
2018-01-13T22:03:31Z
2018-02-23T17:21:32Z
https://github.com/Miserlou/Zappa/issues/1350
[ "has-pr" ]
OverlordQ
3
deepinsight/insightface
pytorch
2,017
Loss could not converge when training from scratch
My experiment is lauched with information - GPU: 2 - Model: IResNet50 - Pretrained: No - Marginal softmax: ArcFace (s=30, m=0.5), do not use partial_fc - Batchsize : 64*2=128 - Warm up: 0 - Optimizer: AdamW - Init learning rate: 1e-1 - Loss function: cross entropy - Dataset: MS1Mv2 But I am facing to some we...
open
2022-05-27T04:40:05Z
2022-08-13T03:50:31Z
https://github.com/deepinsight/insightface/issues/2017
[]
anti-machinee
4
sktime/pytorch-forecasting
pandas
1,065
N-HiTS encounters a RuntimeError when using 'time_varying_unknown_reals' and 'time_varying_known_reals' covariates simultaneously
- PyTorch-Forecasting version: 0.10.2 - PyTorch version: 1.12.0 - Python version: 3.8.3 - Operating System: Linux ### Expected behavior I executed the example code of N-HiTS (https://pytorch-forecasting.readthedocs.io/en/latest/tutorials/nhits.html). In order to test the forecasting ability of N-HiTS when usi...
closed
2022-07-19T11:57:00Z
2023-10-03T19:06:28Z
https://github.com/sktime/pytorch-forecasting/issues/1065
[]
wyj1158965943
2
vitalik/django-ninja
django
969
Change root_url for serving openapi.json behind a reverse proxy
I'm encountering this exact problem: https://fastapi.tiangolo.com/advanced/behind-a-proxy/#proxy-with-a-stripped-path-prefix Proxy is on: `/inspection/docs` on server:` /api/docs` So I need to configure it in such a way that openapi.json is served on /inspection and not /api . I tried doing it through urls_names...
closed
2023-11-30T10:11:49Z
2023-12-04T14:45:28Z
https://github.com/vitalik/django-ninja/issues/969
[]
stvdrsch
3
PedroBern/django-graphql-auth
graphql
120
Documentation Inaccurate part
# Prerequisites * [ x] Is it a bug (documentation bug)? * [ ] Is it a new feature? * [ ] Is it a a question? * [x ] Can you reproduce the problem? * [ x] Are you running the latest version? * [x ] Did you check for similar issues? * [x ] Did you perform a cursory search? The documentation states that in ord...
closed
2021-06-30T22:36:24Z
2021-06-30T22:48:37Z
https://github.com/PedroBern/django-graphql-auth/issues/120
[]
roylanmartinez
0
opengeos/leafmap
streamlit
137
Generalize the titiler_endpoint parameter
Currently, the default `titiler_endpoint` is `https://api.cogeo.xyz/`. It would be useful to generalize the `titiler_endpoint`so that users can provide a custom endpoint. @TomAugspurger For example, Microsoft Planetary Computer has its own titiler endpoint at https://planetarycomputer.microsoft.com/api/data/v1/docs#...
closed
2021-12-01T19:19:24Z
2022-01-03T22:10:35Z
https://github.com/opengeos/leafmap/issues/137
[ "Feature Request" ]
giswqs
14
home-assistant/core
python
140,983
Access to api.met.no returned error 'TimeoutError'
### The problem Since update HA 2025.3 Meteorologisk institutt (Met.no) integration fall and no other way to bring up again without a restart of the whole server. ![Image](https://github.com/user-attachments/assets/d86bb6d5-1030-4695-82d8-11498fff2054) Restart service, disable/enable or add new entity. Nothing work....
open
2025-03-20T09:42:39Z
2025-03-20T09:42:44Z
https://github.com/home-assistant/core/issues/140983
[ "integration: met" ]
DadasupR
1
pallets/flask
flask
5,282
Import error in Flask version 3.0.0
After updating the flask version, I wanted to run my server as usual, but encountered the following message: ``` Traceback (most recent call last): File "/Users/ft61dv/Desktop/Enablers/P05182-Asgard/server.py", line 2, in <module> from flask_mysqldb import MySQL File "/Users/ft61dv/Library/Python/3.12/li...
closed
2023-10-03T14:19:38Z
2023-10-18T00:05:42Z
https://github.com/pallets/flask/issues/5282
[]
sneha-lodha
1
0b01001001/spectree
pydantic
3
support more frameworks
## Async - [x] starlette ## Sync - [x] Falcon - [x] Flask
closed
2019-12-19T08:40:23Z
2019-12-23T16:21:53Z
https://github.com/0b01001001/spectree/issues/3
[ "enhancement" ]
kemingy
1
google-deepmind/graph_nets
tensorflow
145
Error when calling trained model: "AttributeError: tuple object has no attribute "as_list"
Followed recommendation in [this issue](126); didn't work. Here's the code. Given a list of ```nx.Graph``` objects, make a prediction with the trained model. ```python data_dicts = [utils_np.networkx_to_data_dict(nx.to_directed(g)) for g in nx_graphs] graphs_tuple = utils_np.data_dicts_to_graphs_tuple(data_dict...
closed
2021-11-01T19:09:01Z
2021-11-17T17:55:18Z
https://github.com/google-deepmind/graph_nets/issues/145
[]
robertswil
3
dynaconf/dynaconf
flask
350
[RFC] Add support for FreeIPA Vault
**Is your feature request related to a problem? Please describe.** Currently, Dynaconf can support Hashicorp Vault. But, some systems implementing Dynaconf potentially also integrate with FreeIPA - which has it's own vault with API/CLI access. The FreeIPA Vault has the added benefit of being associated with the servic...
closed
2020-05-31T14:19:50Z
2020-06-08T12:23:55Z
https://github.com/dynaconf/dynaconf/issues/350
[ "Not a Bug", "RFC" ]
kuwv
6
flaskbb/flaskbb
flask
567
Code coverage suddenly sits around 23-27%
Previously it was around 50-60%. Looks like it doesn't count the docstrings and import statements anymore? This is what I get when I run the tests on my local system: ``` ----------- coverage: platform linux, python 3.9.0-final-0 ----------- Name Stmts Miss Branch BrPart ...
closed
2020-12-06T12:20:29Z
2021-07-13T18:30:24Z
https://github.com/flaskbb/flaskbb/issues/567
[]
sh4nks
0
chatanywhere/GPT_API_free
api
239
免费的api key不支持官方的API
免费的api key不支持官方的API
closed
2024-05-19T15:43:36Z
2024-05-23T07:29:51Z
https://github.com/chatanywhere/GPT_API_free/issues/239
[]
ghost
1
ploomber/ploomber
jupyter
247
Remove last two sections in the Spec API doc, link back to jupyter guide
also fix broken link
closed
2020-09-13T16:01:48Z
2020-09-14T15:50:34Z
https://github.com/ploomber/ploomber/issues/247
[]
edublancas
0
JoeanAmier/XHS-Downloader
api
131
建議:1單獨下載項目(影片相片)時保留日期時間與標題,與批次下載相同命名規則,2.下載紀錄 刪除指定作品ID建議可用複製,不然手動輸入常錯!
建議: 1單獨下載項目(影片相片)時保留日期時間與標題,與批次下載相同命名規則, 2.下載紀錄 【刪除指定作品ID】建議可用複製,不然手動輸入常錯! 3.下載紀錄建議可分ID紀錄,方便目錄ID直接刪除。
closed
2024-08-01T11:48:07Z
2024-08-10T14:33:23Z
https://github.com/JoeanAmier/XHS-Downloader/issues/131
[ "其他问题(other)" ]
leo895tw
0
pandas-dev/pandas
data-science
60,913
Roadmap page has numbered-only list when should be a mix of numbered and unnumbered
[about / roadmap page in the website](https://pandas.pydata.org/about/roadmap.html) shows a numbered list of 17 items and this doesn't seem to be the expected result by looking at the code: https://github.com/pandas-dev/pandas/blob/05de25381f71657bd425d2c4045d81a46b2d3740/web/pandas/about/roadmap.md?plain=1#L108-L145
open
2025-02-11T19:58:06Z
2025-02-12T15:27:09Z
https://github.com/pandas-dev/pandas/issues/60913
[]
rffontenelle
1
explosion/spaCy
deep-learning
12,605
displacy offset_x - long sentence rendered outside viewport - add hint?
Sometimes sentences are too long to render with the default settings in displacy's options, at least in JupyterLabs. It is unclear from https://spacy.io/usage/visualizers or from https://github.com/explosion/spaCy/blob/master/spacy/displacy/render.py how many characters a sentence can contain before being rendered o...
closed
2023-05-08T07:49:59Z
2023-06-15T00:02:21Z
https://github.com/explosion/spaCy/issues/12605
[ "usage", "docs", "feat / visualizers" ]
HaakonME
2
pallets/flask
flask
4,490
Sessions not fully encoded?
Are the contents of the session cookie really safe? Hey there, I was browsing around with the flask sessions, and I got interested. I put the session into a base64decoder, and the exact contents where right there. Is there no other way to approach this issue? Is it really safe as everything before the dot is just ba...
closed
2022-03-21T00:58:09Z
2022-04-05T00:05:01Z
https://github.com/pallets/flask/issues/4490
[]
Gowixx
2
microsoft/unilm
nlp
1,690
Question about BitNet b1.58
In [https://github.com/microsoft/unilm/blob/master/bitnet/The-Era-of-1-bit-LLMs__Training_Tips_Code_FAQ.pdf](https://github.com/microsoft/unilm/blob/master/bitnet/The-Era-of-1-bit-LLMs__Training_Tips_Code_FAQ.pdf)-FAQ- 'Lower precision for activation and/or KV cache?', it is mentioned: "Furthermore, our analysis reveal...
open
2025-02-12T04:30:39Z
2025-02-12T04:30:39Z
https://github.com/microsoft/unilm/issues/1690
[]
mxjmtxrm
0
nerfstudio-project/nerfstudio
computer-vision
2,731
Training nerfacto model
Hi, I want to know that the default dtype of nerfstudio used is float32 or float16? Or how to train in float16 or bf16 mode? I tried to train a nerfacto model with image size is 584×876 and each iteration costs nearly 25s (only forwrd process, num_rays_per_chunk=32678, and settings for nerfacto is default)...
closed
2024-01-06T12:18:56Z
2024-01-12T13:25:15Z
https://github.com/nerfstudio-project/nerfstudio/issues/2731
[]
OrangeSodahub
3
python-restx/flask-restx
api
11
Integrate marshmallow
There exists a huge pile of forks etc of the flask_restful family and the one thing that seems to be missing consistently is native support for marshmallow. It would be really great if restx finally integrated that. The flask-restplus-patched project exists but its based off ancient apispec and so it's not quite there
closed
2020-01-14T18:04:45Z
2022-08-28T12:48:56Z
https://github.com/python-restx/flask-restx/issues/11
[]
mcclurem
2
pallets/flask
python
4,472
app.view_functions occurs endpoint key missing when adding url rule by endpoint(decorator method) of blueprint
<!-- This issue tracker is a tool to address bugs in Flask itself. Please use Pallets Discord or Stack Overflow for questions about your own code. Replace this comment with a clear outline of what the bug is. --> <!-- Describe how to replicate the bug. Include a minimal reproducible example that demonstrat...
closed
2022-03-01T11:00:56Z
2022-03-16T00:04:49Z
https://github.com/pallets/flask/issues/4472
[]
sunsongpy
1
replicate/cog
tensorflow
1,323
Fail while pushing with --separate-weights
Today I started to face the following issue, while using `cog push --separate-weights` Although I was able to push the model without the flag `--separate-weights` On the error below, I just replaced the project and model name by <project-name> and <model-name, respectively. ```bash $ cog push --separate-weights...
open
2023-09-29T18:29:12Z
2025-03-24T15:03:37Z
https://github.com/replicate/cog/issues/1323
[ "next" ]
wnakano
17
wger-project/wger
django
934
ProgrammingError at /en/software/features
Using the docker-compose.yml and prod.env from https://github.com/wger-project/docker results in the following error: [error screnshot](https://i.imgur.com/XgTxCKv.png) Only changes made are: 1. Modified prod.env with my domain, secret key, email address, etc. 2. Removed nginx service from the docker-compose....
closed
2022-01-03T02:36:00Z
2022-05-14T09:37:55Z
https://github.com/wger-project/wger/issues/934
[]
jakec-dev
1
jpadilla/django-rest-framework-jwt
django
356
Is it possible to return a new token from the refresh token endpoint?
My co-worker had raised this concern, that the token after refresh should have a new value. Is this possible? I did try looking at the source code, and some `pyjwt` source code, but I wasn't sure. Thank you
open
2017-08-09T22:54:00Z
2017-08-09T22:54:00Z
https://github.com/jpadilla/django-rest-framework-jwt/issues/356
[]
aaronlelevier
0
sebp/scikit-survival
scikit-learn
114
Scikit-survival broken config in pyfi
Hi Sebastian, Thanks for building the package scikit-survival and your contributions to the community. I am a Research Scientist at Facebook. I am trying to install this package using pyfi and I get the following error: ModuleNotFoundError: No module named 'numpy' Building wheel for scikit-survival (setup.py):...
closed
2020-05-26T15:47:22Z
2020-05-31T12:22:18Z
https://github.com/sebp/scikit-survival/issues/114
[]
juliedrew
2
home-assistant/core
python
140,762
August & Yale Access Bluetooth Integration - Yale assure lock 2
### The problem Starting about yesterday or so, I wasn't able to connect to Yale assure lock 2. I attempted following steps. These were the usual steps that got connection to work: 1. Delete my account from August integration UI 2. Full power down, wait for HA discovers Yale lock after system started. 3. "+ ADD INTE...
open
2025-03-16T21:26:38Z
2025-03-20T03:54:23Z
https://github.com/home-assistant/core/issues/140762
[ "integration: august" ]
doyajii1
2
huggingface/datasets
deep-learning
6,542
Datasets : wikipedia 20220301.en error
### Describe the bug When I used load_dataset to download this data set, the following error occurred. The main problem was that the target data did not exist. ### Steps to reproduce the bug 1.I tried downloading directly. ```python wiki_dataset = load_dataset("wikipedia", "20220301.en") ``` An exception occurre...
closed
2023-12-29T08:34:51Z
2024-01-02T13:21:06Z
https://github.com/huggingface/datasets/issues/6542
[]
ppx666
2
pallets/flask
python
4,393
Docs - fileuploads slight mistake
First time contributor / noob - bear with me: Here's a screen shot from the [docs relating to fileuploads](https://flask.palletsprojects.com/en/2.0.x/patterns/fileuploads/). <img width="867" alt="Screenshot 2021-12-28 at 16 06 20" src="https://user-images.githubusercontent.com/47497682/147584839-ed2319c7-5d49-4059-...
closed
2021-12-28T16:09:27Z
2022-01-12T00:04:47Z
https://github.com/pallets/flask/issues/4393
[]
jamesefhawkins
1
christabor/flask_jsondash
flask
20
Add ability to save position, and add dragging
Currently layouts are automatically drawn using a boxpacking algorithm. They should be customizeable, and allow this configuration to persist when saving.
closed
2016-05-10T04:38:03Z
2016-12-01T22:42:34Z
https://github.com/christabor/flask_jsondash/issues/20
[ "enhancement", "new feature" ]
christabor
0
kennethreitz/responder
graphql
570
GraphQL: Update React code
_@coderabbitai recommended this:_ _:warning: Potential issue_ **Improve error handling and update React rendering API.** Several improvements needed in the JavaScript implementation: 1. ReactDOM.render is deprecated in React 18 2. Fetch implementation lacks proper error handling 3. Missing CSRF protection ...
open
2024-10-31T04:30:01Z
2024-10-31T04:30:01Z
https://github.com/kennethreitz/responder/issues/570
[]
amotl
0
jina-ai/clip-as-service
pytorch
242
ModuleNotFoundError: No module named 'http.client'; 'http' is not a package
@hanxiao when I downloaded your code, and use this way to start bert-as-service, because I want to see more detail in your code, it got this error, does windows not support http.client? ![image](https://user-images.githubusercontent.com/30991932/52988135-06994900-3439-11e9-8ea1-530af55dbc07.png) ![image](https://user...
closed
2019-02-19T03:25:52Z
2019-03-14T03:45:04Z
https://github.com/jina-ai/clip-as-service/issues/242
[]
xiongma
0
QuivrHQ/quivr
api
3,045
Fix Front deploy show tokens not working
closed
2024-08-22T07:25:34Z
2024-08-22T08:06:38Z
https://github.com/QuivrHQ/quivr/issues/3045
[ "bug", "area: frontend" ]
StanGirard
1
allenai/allennlp
data-science
5,552
Model: questions about biaffine dep-parser
Hi, i'm recently working on graph-based parser reading your codes as examples. The code was clear and easy understanding. Still i am getting confused about one place. [https://github.com/allenai/allennlp-models/blob/a36aed540e605c4293c25f73d6674071ca9edfc3/allennlp_models/structured_prediction/models/biaffine_dependen...
closed
2022-01-27T12:49:17Z
2022-02-10T16:09:40Z
https://github.com/allenai/allennlp/issues/5552
[ "question", "stale" ]
13717680252
1
aminalaee/sqladmin
sqlalchemy
118
sort doesn't work after adding custom labels.
### 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 Thank you for this awesome repo. It saved me a lot of time. I have faced a weird bug. Here goes my model. ` class UserAdmin(ModelAdmin, model=...
closed
2022-03-31T07:31:38Z
2022-04-07T06:16:22Z
https://github.com/aminalaee/sqladmin/issues/118
[]
nazmulnnb
5