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
litestar-org/litestar
api
3,644
Bug: openapi parameter order doesn't match the order in the path
### Description Unconsumed parameters [appear to be added last to the openapi spec](https://github.com/litestar-org/litestar/blob/ffaf5616b19f6f0f4128209c8b49dbcb41568aa2/litestar/_openapi/parameters.py#L226), which causes strange parameter ordering in other generated code. It looks like some effort was made to acc...
open
2024-07-24T03:36:27Z
2025-03-20T15:54:50Z
https://github.com/litestar-org/litestar/issues/3644
[ "Bug :bug:", "OpenAPI" ]
ashanbrown
0
joeyespo/grip
flask
215
markdown commenting
Grip doesn't seem to observe markdown commenting (text not to be included in the generated doc) The most universally accepted does not seem to work "[//]: # " "(empty line)[comment]: # " I verified the first of those actually does work on github http://stackoverflow.com/questions/4823468/comments-in-markdown
closed
2016-10-30T11:10:59Z
2016-10-30T19:54:19Z
https://github.com/joeyespo/grip/issues/215
[ "not-a-bug" ]
chrisamow
3
huggingface/datasets
deep-learning
7,430
Error in code "Time to slice and dice" from course "NLP Course"
### Describe the bug When we execute code ``` frequencies = ( train_df["condition"] .value_counts() .to_frame() .reset_index() .rename(columns={"index": "condition", "condition": "frequency"}) ) frequencies.head() ``` answer should be like this condition | frequency birth control | 27655 dep...
closed
2025-02-28T11:36:10Z
2025-03-05T11:32:47Z
https://github.com/huggingface/datasets/issues/7430
[]
Yurkmez
2
Yorko/mlcourse.ai
numpy
753
There might be an error in Topic 5, Part 1: Bagging 4. Out-of-Bag Error subheading
[link_to_notebook](https://github.com/Yorko/mlcourse.ai/blob/main/jupyter_english/topic05_ensembles_random_forests/topic5_part1_bagging.ipynb) In Topic 5, Part 1: Bagging and under the heading 4. Out-of-Bag Error, It starts as: _> Looking ahead, in case of Random Forest, there is no need to use cross-validation or ...
closed
2023-08-04T14:44:54Z
2024-08-19T16:16:00Z
https://github.com/Yorko/mlcourse.ai/issues/753
[]
fatih-boyar
1
streamlit/streamlit
streamlit
10,884
implement Backdrop component to block user interaction before some long tasks are finished
### 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 Display a full screen Backdrop to prevent user from interacting with the current page until certain operation...
open
2025-03-24T07:32:37Z
2025-03-24T07:34:09Z
https://github.com/streamlit/streamlit/issues/10884
[ "type:enhancement" ]
link89
1
aimhubio/aim
tensorflow
3,133
Import an offline wandb run
## Is it possible to import an offline wandb run directly to aim without starting a wandb server?
closed
2024-04-16T09:23:35Z
2024-06-03T09:50:30Z
https://github.com/aimhubio/aim/issues/3133
[ "type / question" ]
edwardsp
1
modelscope/modelscope
nlp
813
KeyError: 'speaker-diarization-inference is not in the pipelines registry group speaker-diarization. Please make sure the correct version of ModelScope library is used.'
运行实例https://modelscope.cn/models/iic/speech_diarization_eend-ola-en-us-callhome-8k/summary 报错信息: KeyError: 'speaker-diarization-inference is not in the pipelines registry group speaker-diarization. Please make sure the correct version of ModelScope library is used.' 版本信息:modelscope:'1.12.0' funasr: '1.0.19' Mod...
closed
2024-03-28T08:46:26Z
2024-05-19T01:50:49Z
https://github.com/modelscope/modelscope/issues/813
[ "Stale" ]
yangyyt
2
pennersr/django-allauth
django
3,047
ACCOUNT_EMAIL_VERIFICATION = "mandatory" not preventing unverified email login
I just found out that a registered email that is yet to be verified is allowed to log in even though ACCOUNT_EMAIL_VERIFICATION is set to "mandatory" in the settings. I don't know if this is a bug with the latest allauth, but I am certain this was working fine before. Here are my codes. ```` #Settings.py ACC...
closed
2022-03-07T23:28:27Z
2023-06-14T20:05:53Z
https://github.com/pennersr/django-allauth/issues/3047
[]
eakenbor
4
jupyter-book/jupyter-book
jupyter
1,549
Incomplete documentation on publishing to Read The Docs
### Describe the problem The Jupyter Book documentation covers also [publishing to Read The Docs](https://jupyterbook.org/publish/readthedocs.html). But going through the suggested steps makes the build on `readthedocs.io` fail with an error about a missing dependency, `ModuleNotFoundError: No module named 'sphinx_t...
open
2021-11-28T12:07:51Z
2021-11-28T12:11:27Z
https://github.com/jupyter-book/jupyter-book/issues/1549
[ "bug" ]
pamoroso
1
seleniumbase/SeleniumBase
pytest
2,774
Fetch Requests Data When Open a Page
I want to fetch all requests similar https://www.dilatoit.com/2020/12/17/how-to-capture-http-requests-using-selenium.html ``` from seleniumwire import webdriver # Import from seleniumwire # Create a new instance of the Firefox driver driver = webdriver.Firefox() # Go to the Google home page driver.ge...
closed
2024-05-14T17:53:35Z
2024-05-14T18:48:42Z
https://github.com/seleniumbase/SeleniumBase/issues/2774
[ "question" ]
adarmawan117
1
dynaconf/dynaconf
django
676
[RFC] Allow validators to operate on list items - was: `AttributeError: 'BoxList' object has no attribute 'get'`on calling validate()
settings.toml ```toml [[PROVIDERS]] PROVIDER_NAME = "A" TYPE = "1" [[PROVIDERS]] PROVIDER_NAME = "B" TYPE = 1 ``` app.py ```python from dynaconf import Dynaconf, Validator settings = Dynaconf() settings.validators.register(Validator('PROVIDERS.TYPE', is_type_of=str)) settings.validators.validate() ...
open
2021-10-12T16:26:37Z
2023-03-25T07:09:14Z
https://github.com/dynaconf/dynaconf/issues/676
[ "wontfix", "Not a Bug", "RFC" ]
sla-te
4
kochlisGit/ProphitBet-Soccer-Bets-Predictor
seaborn
87
Running a main.py getting an error with import tf_utils
![Screenshot 2024-08-07 143729](https://github.com/user-attachments/assets/31c40b3b-6d34-438b-a255-c446671a326b)
open
2024-08-07T12:48:08Z
2024-08-07T12:48:08Z
https://github.com/kochlisGit/ProphitBet-Soccer-Bets-Predictor/issues/87
[]
konli90
0
joke2k/django-environ
django
403
"Invalid line" error when line starts with spaces and then a comment follows
We use comments, nested with 4 spaces. This works fine in environ 0.4.5 , but now generates an error in environ 0.9.0: > Invalid line: # Domain, without prefix ('www.') and suffix ('.nl'/'.com') in both .env and the error message, 4 spaces preceed the hashtag. Sorry, I did not succeed in finding the right way...
closed
2022-06-27T13:33:51Z
2023-07-06T21:21:13Z
https://github.com/joke2k/django-environ/issues/403
[ "bug" ]
wimfeijen
3
ets-labs/python-dependency-injector
asyncio
118
Add validation of provided type for Singleton provider
Possible syntax: ``` python class ServiceProvider(providers.Singleton): """Service provider.""" provided_type = BaseService """Provided type. :type: type | None """ ```
closed
2015-12-11T17:59:14Z
2015-12-13T21:32:35Z
https://github.com/ets-labs/python-dependency-injector/issues/118
[ "feature" ]
rmk135
0
awesto/django-shop
django
835
Update version announcement in README.md
### Version 1.1 has been released! ... a few minor versions ago. Just a reminder before the next release, whenever it comes.
closed
2020-10-28T04:23:04Z
2020-10-28T07:48:15Z
https://github.com/awesto/django-shop/issues/835
[]
greyhare
0
deepspeedai/DeepSpeed
pytorch
6,507
[BUG] Why is LoRA much slower than Freeze?
Model:Qwen2-72B Machine: 8 * A100 80G Environment: Deepspeed zero 3 # Freeze Method Log: - Set trainable layers: 77,78,79 - trainable params: 2633054208 || all params: 72706203648 || trainable%: 3.6215 - epochs:10 - train_runtime = 20:36:14.47 - train_samples_per_second = 1.051 - train_steps_p...
closed
2024-09-09T08:35:48Z
2024-09-09T08:58:00Z
https://github.com/deepspeedai/DeepSpeed/issues/6507
[ "bug", "training" ]
gugugu-469
1
AirtestProject/Airtest
automation
920
test
:bulb:**相关项目:** **标题:** test **AirtestIDE版本:** 1 **未使用本地Pyhton环境运行脚本** **报错描述:**     BUG信息 **相关截图:** 无 **报错Log:** **连接设备信息:** **提供最小可复现此BUG的代码:** ``` 无 ```
closed
2021-06-17T06:25:03Z
2021-06-17T09:44:16Z
https://github.com/AirtestProject/Airtest/issues/920
[]
yimelia
0
pytest-dev/pytest-django
pytest
904
How to hide the migrations output?
If I run one test via PyCharm I see the migrations output twice: ``` /home/guettli/projects/lala-env/bin/python /snap/pycharm-professional/230/plugins/python/helpers/pycharm/_jb_pytest_runner.py --target test_models.py::test_address_is_complete Testing started at 11:42 ... Launching pytest with arguments test_mod...
open
2021-02-07T10:48:54Z
2023-10-01T07:50:29Z
https://github.com/pytest-dev/pytest-django/issues/904
[ "needs-info" ]
guettli
2
lucidrains/vit-pytorch
computer-vision
152
Training vit on Imagenet 1k got bad performance.
I am using vit to train ImageNet 1k from scratch. The accuracy of SOTA is about 70% to 80%. But I can only reach 30%. I don't know why it doesn't work. I use the following configuration. ``` python model = ViT( image_size=224, patch_size=32, num_classes=args['n_class'], dim=768, depth=a...
open
2021-08-31T02:32:15Z
2022-04-08T09:58:40Z
https://github.com/lucidrains/vit-pytorch/issues/152
[]
songlei00
2
rio-labs/rio
data-visualization
17
Add Security policy
closed
2024-05-17T09:33:03Z
2024-05-30T12:15:06Z
https://github.com/rio-labs/rio/issues/17
[ "documentation" ]
Sn3llius
0
junyanz/pytorch-CycleGAN-and-pix2pix
computer-vision
709
test results are blurred and seem worse than the training results
Thanks for sharing such a wonderful project! When I trained the model with facades, the training results were good seen with carnal eyes, but when I tested the model ,the results are vaguer, also with some noises. Is that normal?
closed
2019-07-18T05:41:07Z
2019-07-30T03:06:45Z
https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/709
[]
hyang23333
11
explosion/spaCy
data-science
12,411
Displacy visualiser only sometimes shows labels
In many cases, I do not see the label at the beginning of a span in displacy. This should not be an issue with a particular label since I sometimes see it when using different text examples. Is there something I should look out for to avoid this? ``` colors = {#omitted in this example} options = {"spans_key": ...
open
2023-03-13T21:15:01Z
2023-04-20T14:14:12Z
https://github.com/explosion/spaCy/issues/12411
[ "feat / visualizers" ]
goonhoon
8
marimo-team/marimo
data-visualization
3,920
Error in the config file
### Describe the bug Hi team, Just a small bug: when you run marimo config describe, the experimental stuff is under AI, value dict[str, any]. However, the config won't parse if you set that in the toml, and if you follow the template (where experimental is in its own section), it doesn't work. ### Environment <det...
closed
2025-02-26T02:38:25Z
2025-02-26T15:54:38Z
https://github.com/marimo-team/marimo/issues/3920
[ "bug" ]
arthrod
0
scanapi/scanapi
rest-api
488
Remove `if not matches:` from StringEvaluator
## Refactor ### Description Remove unuseful lines: - https://github.com/scanapi/scanapi/blob/main/scanapi/evaluators/string_evaluator.py#L27-L28 - https://github.com/scanapi/scanapi/blob/main/scanapi/evaluators/string_evaluator.py#L27-L28 `matches` variable is an `callable_iterator object`, so it will never ...
closed
2021-08-09T19:17:04Z
2021-08-10T12:50:53Z
https://github.com/scanapi/scanapi/issues/488
[ "Good First Issue", "Refactor", "Code Quality" ]
camilamaia
0
developmentseed/lonboard
jupyter
669
Depend on geoarrow-rust?
There are probably a few places where `geoarrow-rust` could be useful to Lonboard. One is getting the total bounds of the input: https://github.com/developmentseed/lonboard/blob/667dfedb633f41c89e70b491f5a961a702c3d884/lonboard/_geoarrow/ops/bbox.py#L36-L98 That apparently takes two seconds with 12.5M points, whi...
open
2024-10-03T18:44:56Z
2024-10-03T18:45:22Z
https://github.com/developmentseed/lonboard/issues/669
[]
kylebarron
0
Anjok07/ultimatevocalremovergui
pytorch
1,707
Error while using the Demudder in the latest beta version
I get this error while using Demudder. I tried all demudding options (there are three) and also tried renaming the file to a shorter version, in case UVR was struggling with it as it was a long file name. The model I used was the v1E one. Last Error Received: Process: MDX-Net Missing file error raised. Please addre...
open
2025-01-21T10:27:29Z
2025-02-02T20:05:25Z
https://github.com/Anjok07/ultimatevocalremovergui/issues/1707
[]
thenormal
1
ultrafunkamsterdam/undetected-chromedriver
automation
830
Working locally with Headless=False on MacOS, but not Ubuntu server error
Hello, amazing job creating this @ultrafunkamsterdam. This is the only tool for me that bypassed a multi-million dollar companies anti-scraping solutions. It would work undetected on my MacOS with Headless=False, and when i ported it over to my linux server i get the follow error: `selenium.common.exceptions.WebD...
open
2022-10-09T14:37:25Z
2022-10-10T01:26:33Z
https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/830
[]
BurnNoticeSpy
2
scanapi/scanapi
rest-api
455
Possibly broken super() call
## Bug report ### Environment LGTM analysis ### Description of the bug First argument to super() is not enclosing class → https://lgtm.com/projects/g/scanapi/scanapi/snapshot/975eee8439217318dce6c39d70c1d700d6f33bd6/files/scanapi/settings.py?sort=name&dir=ASC&mode=heatmap#xb5202bf2b059205b:1 ### Expected b...
closed
2021-07-31T08:57:19Z
2021-08-11T16:51:52Z
https://github.com/scanapi/scanapi/issues/455
[ "Code Quality" ]
jhermann
0
keras-team/keras
deep-learning
20,675
Keras API reference has not been updated yet
Even though Keras 3.7.0 has been released, it seems the API reference has not yet been updated. For example, I couldn't find the CELU activation function listed on [the activations page.](https://keras.io/api/layers/activations/) Please feel free to let me know if I have misunderstood something. Thank you!
closed
2024-12-20T14:14:30Z
2024-12-22T05:19:07Z
https://github.com/keras-team/keras/issues/20675
[]
shashaka
2
pyg-team/pytorch_geometric
pytorch
9,311
MoleculeNet's BBBP dataset incorrectly batched
### 🐛 Describe the bug While batching the BBBP dataset, there is one graph that is not associated with any node. This causes a discrepancy in the number of graph labels in the batch and output shape of the downstream model. This affects loss calculations and a shape mismatched is observed. Minimal code for reprodu...
closed
2024-05-11T20:01:44Z
2024-05-13T13:31:43Z
https://github.com/pyg-team/pytorch_geometric/issues/9311
[ "bug" ]
apurvakokate
1
psf/black
python
4,397
Psfback
**Black v24.4.2** [Playground link](https://black.vercel.app/?version=stable&state=_Td6WFoAAATm1rRGAgAhARYAAAB0L-Wj4ARsAnNdAD2IimZxl1N_WlkPinBFoXIfdFTaTVkGVeHShArYj9yPlDvwBA7LhGo8BvRQqDilPtgsfdKl-ha7EFp0Ma6lY_06IceKiVsJ3BpoICJM9wU1VJLD7l3qd5xTmo78LqThf9uibGWcWCD16LBOn0JK8rhhx_Gf2ClySDJtvm7zQJ1Z-Ipmv9D7I_zhjztfi2UTVsJp...
closed
2024-07-07T00:40:18Z
2024-07-07T00:40:53Z
https://github.com/psf/black/issues/4397
[]
omenihuson2
0
IvanIsCoding/ResuLLMe
streamlit
2
Fix Line Overflow in LaTeX templates
Sometimes, if a line is too long it can overflow. Some cases that trigger it: * Very long given name * Very long university name * Lots of skills in a category The templates that are most affected by it are: * Deedy * Plush * Simple
open
2023-04-12T23:45:51Z
2024-03-21T23:28:16Z
https://github.com/IvanIsCoding/ResuLLMe/issues/2
[ "good first issue" ]
IvanIsCoding
3
quokkaproject/quokka
flask
145
Dillinger - The best markdown editor needs to be integrated
https://github.com/joemccann/dillinger/
closed
2014-04-19T02:08:38Z
2015-07-16T02:56:34Z
https://github.com/quokkaproject/quokka/issues/145
[ "enhancement" ]
rochacbruno
0
huggingface/transformers
machine-learning
36,337
Assisted generation slower than with base model alone
### System Info - `transformers` version: 4.49.0 - Platform: Linux-5.14.0-284.73.1.el9_2.x86_64-x86_64-with-glibc2.35 - Python version: 3.11.11 - Huggingface_hub version: 0.27.1 - Safetensors version: 0.5.2 - Accelerate version: 1.2.1 - Accelerate config: not found - DeepSpeed version: not installed - PyTorch version...
open
2025-02-21T21:51:39Z
2025-03-24T08:03:33Z
https://github.com/huggingface/transformers/issues/36337
[ "bug" ]
sahilsuneja1
3
home-assistant/core
python
140,389
PECO does not work with mandatory MFA
### The problem The PECO integration (via OPower) can no longer be setup because MFA cannot be disabled and is now mandatory for accounts. For Exelon companies like PECO, the docs currently state that MFA must be disabled for the integration to authenticate. ### What version of Home Assistant Core has the issue? 20...
closed
2025-03-11T15:24:12Z
2025-03-24T16:30:43Z
https://github.com/home-assistant/core/issues/140389
[ "integration: opower" ]
steverep
4
ultralytics/ultralytics
computer-vision
19,310
Device selection on export on multi-gpu systems
### Search before asking - [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and found no similar bug report. ### Ultralytics YOLO Component _No response_ ### Bug Greatings! 🚀 Sorry for my English. I ran into issue (latest version, February, 19th) when choosing ...
closed
2025-02-19T10:30:55Z
2025-02-20T18:39:51Z
https://github.com/ultralytics/ultralytics/issues/19310
[ "exports" ]
liwtw
4
aimhubio/aim
tensorflow
2,539
Aim telemetry hangs in air-gapped environment
## 🐛 Bug Within an environment with no internet access, the Aim SDK can hang on exit while Segment attempts to flush telemetry data to its servers. ### To reproduce Create a `run_aim.py` script: ```python import aim import logging logging.basicConfig() run = aim.Run() ``` and run `python run_aim....
closed
2023-02-09T16:41:44Z
2023-03-10T10:20:53Z
https://github.com/aimhubio/aim/issues/2539
[ "type / bug", "help wanted", "phase / review-needed", "priority / critical-urgent" ]
wlhjason
5
dpgaspar/Flask-AppBuilder
flask
2,158
it's possible to change the table name for user/role/permission tables?
By default the models/tables defined in [flask_appbuilder/security/sqla/models.py](https://github.com/dpgaspar/Flask-AppBuilder/blob/master/flask_appbuilder/security/sqla/models.py) have the `ab_` prefix I am trying to extend the data model (adding some columns) with a subclass - as suggested in [Extending the User ...
open
2023-11-06T11:59:39Z
2023-12-22T06:56:39Z
https://github.com/dpgaspar/Flask-AppBuilder/issues/2158
[]
ZeeD
2
huggingface/diffusers
deep-learning
10,565
Different generation with `Diffusers` in I2V tasks for LTX-video
### Describe the bug Hello, I encountered an issue with the generation when attempting the I2V task using `Diffusers`. Is there any difference between the `diffusers` implementation and the `LTX-video-inference scripts` in the I2V task? - The above is the result from the `inference.py`, and the following is the resu...
open
2025-01-14T03:24:06Z
2025-03-14T15:04:00Z
https://github.com/huggingface/diffusers/issues/10565
[ "bug", "stale" ]
Kaihui-Cheng
8
mithi/hexapod-robot-simulator
dash
30
Check stability in ik_solver module
- Check pose stability. The inverse kinematics solver doesn't yet actually check if the center of gravity is inside its support polygon.
closed
2020-04-11T09:57:34Z
2020-04-23T16:12:04Z
https://github.com/mithi/hexapod-robot-simulator/issues/30
[ "feature request" ]
mithi
1
PokeAPI/pokeapi
api
817
Pokemon IDs #980 and #987 Does Not Exist
https://pokeapi.co/api/v2/pokemon-species/980 and https://pokeapi.co/api/v2/pokemon-species/987 does not exist. This moves every pokemon after it into an even more wrong id than they all already are. There already is an issue for all of the wrong IDs, but this is a lapse in pokemon existing at all.
closed
2023-01-13T02:38:15Z
2023-01-17T12:58:51Z
https://github.com/PokeAPI/pokeapi/issues/817
[]
NathanGuidry
0
x-tabdeveloping/topicwizard
dash
36
Add Querying Documents interactively based on topic axes.
Imagine the following scenario: You're a restaurant branch, you run S3 on reviews you got from your customers, and you get a handful of interesting axes. You would most likely want to query documents based on values on this axis to see for instance which reviews are negative in valence and talk about the food. A g...
open
2024-04-14T12:47:35Z
2024-04-14T12:47:36Z
https://github.com/x-tabdeveloping/topicwizard/issues/36
[]
x-tabdeveloping
0
marcomusy/vedo
numpy
1,231
Normals documentation and initialisation
Hello, I've been working with vedo for a while, and one challenge I encountered was understanding how the `vertex_normals` and `cell_normals` properties function. It took me some time to figure out that these properties are not automatically computed and require explicit initialization. The documentation currently st...
closed
2025-03-12T16:28:25Z
2025-03-15T14:18:33Z
https://github.com/marcomusy/vedo/issues/1231
[]
CorpsSansOrganes
1
microsoft/nni
machine-learning
5,423
define HPO process in one file
Hi, in the example [Port PyTorch Quickstart to NNI](https://nni.readthedocs.io/en/stable/tutorials/hpo_quickstart_pytorch/model.html), the search space and experiment are defined in one file, and the trial is defined in another file. Is there a way to put them together in one single py file, just like NAS (defining a...
closed
2023-03-07T12:44:30Z
2023-03-10T05:53:19Z
https://github.com/microsoft/nni/issues/5423
[]
heibaidaolx123
2
yunjey/pytorch-tutorial
deep-learning
160
where is models folder located
closed
2019-03-02T14:09:37Z
2019-03-02T20:01:57Z
https://github.com/yunjey/pytorch-tutorial/issues/160
[]
anjalinagel12
0
deepfakes/faceswap
machine-learning
1,351
TypeError: 'type' object is not subscriptable
(faceswap3.9) zcb@zcb:~/ys1/faceswap-master$ python faceswap.py -h Setting Faceswap backend to CPU Traceback (most recent call last): File "faceswap.py", line 12, in <module> from lib.cli import args as cli_args # pylint:disable=wrong-import-position File "/home/zcb/ys1/faceswap-master/lib/cli/args.py", l...
closed
2023-09-18T03:29:56Z
2023-09-18T07:49:05Z
https://github.com/deepfakes/faceswap/issues/1351
[]
oolYang
7
erdewit/ib_insync
asyncio
383
Empty Ticker.ticks
Hello, I have the following function: ``` def get_underlying_price( symbol: str, ib: IB, currency: str, position: ib_insync.PortfolioItem ) -> float: contract = get_contract(symbol, position) print(f"{contract=}") ib.reqMktData(contract, "", False, False) ticker = ib.ticker(contract) ...
closed
2021-06-19T18:35:50Z
2021-07-29T14:55:29Z
https://github.com/erdewit/ib_insync/issues/383
[]
dmitriiweb
1
gyli/PyWaffle
matplotlib
11
block present when value is 0
Hi! Thanks for creating PyWaffle and the useful examples. I started using it today and everything is great, except that sometimes I have a value of 0 for some items. But when the waffle chart is generated, a block is still present for the category with a value of 0. <img width="849" alt="Screen Shot 2019-08-30 at ...
closed
2019-08-30T20:59:58Z
2019-09-16T08:14:12Z
https://github.com/gyli/PyWaffle/issues/11
[]
glaubius
1
15r10nk/inline-snapshot
pytest
127
`--snap-fix` CLI argument
As per #123, my bad for creating an issue with multiple points. Please can we have a new `--snap-fix` or `--sfix` argument (or something else concise) which implies both `--inline-snapshot=fix` and `--inline-snapshot=create`. I'd also be fine if `--sfix` was a concise version of `--inline-snapshot=fix`, and there...
closed
2024-11-05T12:02:20Z
2024-11-11T09:18:28Z
https://github.com/15r10nk/inline-snapshot/issues/127
[]
samuelcolvin
6
Colin-b/pytest_httpx
pytest
82
Add a way to reset HTTPXMock._requests
I started using httpx_mock and tried to mock multiple requests to one resource. Then I expected httpx_mock.reset() to reset the state of HTTPXMock. However, it resets only callbacks, self._requests are still left unchanged. Generally: ```py def test_something(httpx_mock: HTTPXMock): # custom setup that has t...
closed
2022-08-22T11:13:23Z
2022-11-03T21:06:28Z
https://github.com/Colin-b/pytest_httpx/issues/82
[ "enhancement" ]
Normale
2
stanfordnlp/stanza
nlp
618
[QUESTION] How to update models after upgrading library?
Hi I upgraded today to 1.2 to use the new UD 2.7 models. However, after upgrading the library, it seems as if you cannot have different model versions of the same language. As a result, I had to delete the language folder in `stanza_resources` before I could download the new models. Is this intended behavior? It wou...
closed
2021-02-08T16:53:31Z
2021-02-26T07:52:52Z
https://github.com/stanfordnlp/stanza/issues/618
[ "question" ]
BramVanroy
2
Evil0ctal/Douyin_TikTok_Download_API
web-scraping
379
小白求助,用的方法二,在打开localhost的时候显示failed to load resource怎么解决
小白求助,用的方法二,在打开localhost的时候显示failed to load resource怎么解决
closed
2024-05-02T03:26:11Z
2024-06-14T08:41:27Z
https://github.com/Evil0ctal/Douyin_TikTok_Download_API/issues/379
[ "enhancement" ]
xhj0214
5
newpanjing/simpleui
django
253
在没有web服务器的情况下添加simpleui
思考了一下,要不要写这个内容。想到simpleui的文档那么详细,还是觉得应该提一下这个问题。 场景和问题:在没有web服务器,且关闭了 Django 调试模式的情况下。目录存在,且文件已经克隆好了,但是在打开admin页面时还是提示无法找到文件,可以修改运行指令为: python manage.py runserver --insecure ip:port 实在抱歉,没注意到底部的讨论区。
closed
2020-04-15T15:17:50Z
2020-04-15T15:22:10Z
https://github.com/newpanjing/simpleui/issues/253
[ "enhancement" ]
neoshui
0
Evil0ctal/Douyin_TikTok_Download_API
web-scraping
261
[BUG] 简短明了的描述问题
快捷指令无法使用了,一直提示更新但已经是最新版本
closed
2023-08-31T18:30:21Z
2023-09-05T12:06:03Z
https://github.com/Evil0ctal/Douyin_TikTok_Download_API/issues/261
[]
kkkouo
1
keras-team/keras
pytorch
20,423
AttributeError: 'KerasHistory' object has no attribute 'layer'
I'm encountering the error "AttributeError: 'KerasHistory' object has no attribute 'layer'" while working with a Keras model. I'm trying to access layer information, but it seems I'm referencing the wrong object. the version of TensorFlow is 2.17.0 I tried to change the name layer to operation but it's not workin...
closed
2024-10-29T03:37:36Z
2024-10-29T18:43:01Z
https://github.com/keras-team/keras/issues/20423
[ "type:Bug" ]
Neta-Robinzon-Butbul
3
CorentinJ/Real-Time-Voice-Cloning
deep-learning
410
Audioread "no backend" issue
This comes up very frequently for Windows users. `pip install -r requirements.txt` does not install a backend for audioread (a dependency of librosa). This causes an exception when loading any file that requires conversion, such as .mp3. Can we make use of soundfile to load and convert audio files, instead of libros...
closed
2020-07-09T03:08:10Z
2020-07-10T08:25:43Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/410
[]
ghost
3
Yorko/mlcourse.ai
data-science
667
The slack team url at mlcourse.ai#community gives 404 error
The link mentioned at "Discussions are held in the #mlcourse_ai channel of the [OpenDataScience (ods.ai)](https://ods.ai/en/) Slack team." sends 404 error
closed
2020-06-02T20:20:42Z
2020-06-06T07:57:35Z
https://github.com/Yorko/mlcourse.ai/issues/667
[ "minor_fix" ]
sidgupta234
1
microsoft/nlp-recipes
nlp
361
[BUG] We should have a separate package yaml file for the utils_nlp package
### Description <!--- Describe your bug in detail --> Right now all dependencies are generated by running "generate_conda_file.py" file to generate the .yaml file, but it would be better if we have separate dependency file for the utils_nlp package. When we release utils_nlp as a pip installable package, users ar...
closed
2019-08-22T19:37:36Z
2019-11-25T17:48:40Z
https://github.com/microsoft/nlp-recipes/issues/361
[ "bug", "bug-bash" ]
kehuangms
1
AirtestProject/Airtest
automation
704
@logwrap raise json exception
Tried to use something like this: from airtest.core.helper import (G, delay_after_operation, import_device_cls, logwrap, set_logdir, using, log) class My_class(): @logwrap def myfunction(self,myargements): some actions Exemple = My_class() Exemp...
closed
2020-03-13T10:43:37Z
2020-03-30T07:03:43Z
https://github.com/AirtestProject/Airtest/issues/704
[]
farosep
1
strawberry-graphql/strawberry
django
3,396
Can Strawberry created dataclasses be `frozen` by default?
## Feature Request Type - [ ] Core functionality - [X] Alteration (enhancement/optimization) of existing feature(s) - [ ] New behavior ## Need Since [1.1.328](https://github.com/microsoft/pyright/releases/tag/1.1.328) Pyright type checker has become more strict w.r.t. to detecting incompatible variable overr...
open
2024-02-25T12:14:47Z
2025-03-20T15:56:37Z
https://github.com/strawberry-graphql/strawberry/issues/3396
[]
kkom
3
xinntao/Real-ESRGAN
pytorch
672
判别器损失问题
作者您好,首先很感谢您优秀的工作,在这里有一个问题想问您,请问训练过程中咱判别器损失的变化曲线是什么样的,我将本判别器模型迁移到一个VAE重建的应用场景,在训练过程中,无论是否加载您的判别器pretrained权重,GAN的损失均基本保持不变,请问这是正常的吗?期待您的回复,对您感激不尽!
open
2023-08-08T09:32:34Z
2024-04-25T12:56:54Z
https://github.com/xinntao/Real-ESRGAN/issues/672
[]
alexzdy
4
nerfstudio-project/nerfstudio
computer-vision
3,535
nerfacto automatically downscaling to max 1500 pixels
When I run the given nerfacto command (following the documentation exactly), it downscales to max 1500 pixels ( 50 x 30) and thus the scene is basically unrecognizable. I tried changing this by setting --downscale-factor 1 but it isn't working (stuck in training) and --downscale-factor 2 also gives max 1500 pixels. If ...
open
2024-11-27T17:11:16Z
2024-11-27T17:11:16Z
https://github.com/nerfstudio-project/nerfstudio/issues/3535
[]
leyuheon1
0
graphql-python/graphene-django
graphql
798
Updating the Docs with a `diff` view
Hey, It would be super cool if you could add a `diff` view in the docs for the https://docs.graphene-python.org/projects/django/en/latest/tutorial-plain/#getting-single-objects code block. Plus you could also add the filename to be changed since there are two `schema.py` files both in *cookbook* and *ingredients...
closed
2019-10-13T07:29:33Z
2019-10-31T23:31:31Z
https://github.com/graphql-python/graphene-django/issues/798
[]
athul
2
encode/databases
sqlalchemy
274
Create a standard and developer and user friendly feed back system after query is executed
for the commands like execute , execute_many , if there is insert query then return the new id of the row that has been inserted . if the query is update the return number of updated rows .
closed
2020-12-11T10:15:51Z
2021-03-25T15:05:57Z
https://github.com/encode/databases/issues/274
[]
abhijitgujar86
0
ymcui/Chinese-LLaMA-Alpaca
nlp
847
RuntimeError: element 0 of tensors does not require grad and does not have a grad_f
### Check before submitting issues - [X] Make sure to pull the latest code, as some issues and bugs have been fixed. - [X] Due to frequent dependency updates, please ensure you have followed the steps in our [Wiki](https://github.com/ymcui/Chinese-LLaMA-Alpaca/wiki) - [X] I have read the [FAQ section](https://gith...
closed
2023-09-24T09:37:36Z
2023-10-25T12:37:43Z
https://github.com/ymcui/Chinese-LLaMA-Alpaca/issues/847
[]
phamkhactu
2
microsoft/JARVIS
pytorch
22
Can Nvidia's 40 series graphics card be used for the current project?
Can Nvidia's 40 series graphics card be used for the current project? as I can see that the System Requirements is as follows: Ubuntu 16.04 LTS NVIDIA GeForce RTX 3090 * 1 RAM > 24GB
closed
2023-04-04T11:56:24Z
2023-04-06T19:41:52Z
https://github.com/microsoft/JARVIS/issues/22
[]
GothicFox
5
indico/indico
flask
6,653
Abstract submission notifications come from the no-reply email making users think that can't reply, even if reply-to is set
**Describe the bug** This seems to be working as intended, but the way it works is very confusing for our event managers, as well as people submitting abstracts. If you setup an abstract notification, and set a reply-to, the from is still the no-reply user with is confusing to the user. We have set things up so th...
open
2024-12-06T21:45:36Z
2024-12-06T21:45:36Z
https://github.com/indico/indico/issues/6653
[ "bug" ]
dwindibank
0
koxudaxi/datamodel-code-generator
fastapi
2,001
Missing Imports When Model Is Changed as a Discriminator
**Describe the bug** int `Parser.parse` function the `self.__apply_discriminator_type(model, imports)` function gets called `for module, models in module_models`, before `module, models, init, imports, scoped_model_resolver` get added to the `processed_models` array. If certain condition match, this function call has ...
closed
2024-06-12T11:54:20Z
2024-07-01T16:47:10Z
https://github.com/koxudaxi/datamodel-code-generator/issues/2001
[]
luca-knaack-webcom
0
microsoft/MMdnn
tensorflow
898
Does MMDnn support retrain?
Platform (like ubuntu 16.04/win10): Python version: Source framework with version (like Tensorflow 1.4.1 with GPU): Destination framework with version (like CNTK 2.3 with GPU): Pre-trained model path (webpath or webdisk path): Running scripts:
closed
2020-10-05T15:19:09Z
2020-10-05T15:20:22Z
https://github.com/microsoft/MMdnn/issues/898
[]
calvin886
0
brightmart/text_classification
nlp
68
question_id question_string_list
您好,请问question_id和question_string_list分别指的是什么呢,能不能大概说下预测文件的格式呀。
open
2018-07-09T06:46:46Z
2018-07-10T05:29:33Z
https://github.com/brightmart/text_classification/issues/68
[]
tangdouer
2
ultralytics/ultralytics
python
19,527
About the txt saved
### Search before asking - [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/orgs/ultralytics/discussions) and found no similar questions. ### Question when setting save_txt=True , the results of the segmentation model sometimes...
closed
2025-03-05T06:09:54Z
2025-03-05T17:20:24Z
https://github.com/ultralytics/ultralytics/issues/19527
[ "question", "fixed", "segment" ]
Henry0528
4
CorentinJ/Real-Time-Voice-Cloning
pytorch
1,252
sipbuild.pyproject.PyProjectOptionException during pip install
While running pip install -r requirements.txt got ``` ╰─> [25 lines of output] Traceback (most recent call last): File "/Users/marco/.pyenv/versions/3.11.5/envs/rtvc/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 353, in <module> main() ...
open
2023-09-22T21:03:23Z
2024-06-14T08:18:41Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/1252
[]
marcobazzani
1
horovod/horovod
deep-learning
3,626
Tensorflow 2 Distributed Optimizer
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] It's a clear truth that tf.gradients use less VRAM than a gradientape in tensorflow 2, and we've been using tf.gradients just fine for the past few years. H...
open
2022-07-29T11:00:39Z
2022-07-29T11:00:56Z
https://github.com/horovod/horovod/issues/3626
[ "enhancement" ]
Apprisco
0
getsentry/sentry
python
86,998
Visual bug with overlapping line charts
It looks like antialiasing is off or something: ![Image](https://github.com/user-attachments/assets/23f31495-bcc4-44e3-af4b-e6648c8ba290) https://cleptric.sentry.io/organizations/cleptric/insights/backend?project=4508604100706304&statsPeriod=14d
open
2025-03-13T16:25:00Z
2025-03-17T15:24:36Z
https://github.com/getsentry/sentry/issues/86998
[]
matejminar
0
miguelgrinberg/flasky
flask
163
Send email with celery has error
I tried using celery to send the email, but one error goes out: EncodeError: can't pickle thread.lock objects And the code of email.py is like this: # encoding: utf-8 from threading import Thread from flask import current_app, render_template from flask.ext.mail import Message from . import mail, celery @celery.task...
closed
2016-06-22T08:49:04Z
2016-06-26T07:07:10Z
https://github.com/miguelgrinberg/flasky/issues/163
[ "question" ]
8cbx
2
polakowo/vectorbt
data-visualization
64
ADVSTEX with limit entry orders?
Great package, been trying it for about a month and I've found it to be very flexible! I've been using ADVSTEX and there doesn't seem to be an obvious way to define limit entry orders, and subsequently, filled entries. The class seems to assume that entries are filled order entries or market bought. The entries I...
closed
2020-12-17T07:12:14Z
2021-01-22T16:02:33Z
https://github.com/polakowo/vectorbt/issues/64
[]
quanatee
5
ranaroussi/yfinance
pandas
1,329
Exception: yfinance failed to decrypt Yahoo data response with hardcoded keys, contact developers
I use Python 3.8 Installed yfinance 0.2.4 I'm pulling the info of a ticker using this code: `info = yf.Ticker(symbol).info` And I'm getting this error message: > Exception("Yahoo has again changed data format, yfinance now unsure which key(s) is for decryption: '80226cfb77c7'-><class 'str'> , '80226cfb77c7'-><cl...
closed
2023-01-23T20:11:55Z
2023-02-10T18:07:16Z
https://github.com/ranaroussi/yfinance/issues/1329
[]
DolevAlgam
71
Miserlou/Zappa
flask
1,598
Tags support bug: Zappa attempts to override existing tags
<!--- Provide a general summary of the issue in the Title above --> ## Context I'm running zappa with `"tags": { "sometag": "somevalue" }` specified and `s3_bucket` set to a bucket created by another CloudFormation stack. <!--- Provide a more detailed introduction to the issue itself, and why you consider it to be ...
open
2018-08-29T11:28:35Z
2018-10-07T17:44:31Z
https://github.com/Miserlou/Zappa/issues/1598
[]
paulina-mudano
3
wagtail/wagtail
django
12,558
get_admin_default_ordering documentation
The get_admin_default_ordering method documentation lists available sort orders, but in practice, anything valid for `PageQuerySet.order_by` can be used. ### Pertinent section of the Wagtail docs https://docs.wagtail.org/en/stable/reference/pages/model_reference.html#wagtail.models.Page.get_admin_default_ordering #...
closed
2024-11-09T09:33:01Z
2024-11-11T07:37:12Z
https://github.com/wagtail/wagtail/issues/12558
[ "Documentation" ]
bmihelac
4
onnx/onnx
machine-learning
6,578
Protos documentation page
# Ask a Question ### Question In the file `onnx/docs/docsgen/source/api/classes` is stated that sequences can contain sequences, maps or tensors but every operator that deals with sequences I have seen constrains the elements of a sequence to be of type tensor. The same goes for maps. Am I missing something? ###...
open
2024-12-06T20:01:57Z
2024-12-06T20:30:43Z
https://github.com/onnx/onnx/issues/6578
[ "question" ]
matscalia
0
streamlit/streamlit
machine-learning
10,026
Supress multiselect "Remove an option first". Message displays immediately upon reaching max selection.
### 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 st.multiselect displays this message immediately upon reaching n = max_selections: ![image](https://github.c...
open
2024-12-16T04:00:23Z
2024-12-17T03:42:44Z
https://github.com/streamlit/streamlit/issues/10026
[ "type:enhancement", "feature:st.multiselect" ]
LarryLoveIV
3
chiphuyen/stanford-tensorflow-tutorials
tensorflow
35
arxiv_abstracts.txt contains only 100 distinct lines
Each line is repeated 72 times. I guess this will cripple the expected performance on the network as there is a really small number of distinct training samples. Is this by design for the course?
open
2017-06-27T02:37:01Z
2017-07-11T21:05:26Z
https://github.com/chiphuyen/stanford-tensorflow-tutorials/issues/35
[]
eduardofv
1
ni1o1/transbigdata
data-visualization
65
计算过程中,数据发生变化
大家好,我在用transBigData 聚合集计栅格内数据量 的时候发现,先前都在0~1的数据,计算之后都自动变成1了,怎么在计算过程中保持数据不变呢? ![L%1IZ(@1W1U@F8AT17@`VG3](https://user-images.githubusercontent.com/87556341/201522135-571a8c78-4be9-4093-8572-e31f2d138337.png)
closed
2022-11-13T12:43:49Z
2022-11-23T07:05:17Z
https://github.com/ni1o1/transbigdata/issues/65
[]
wangleping2000
1
ccxt/ccxt
api
24,556
Rate Limit field not properly defined in documentation
### Operating System _No response_ ### Programming Languages _No response_ ### CCXT Version _No response_ ### Description Looking at the chapter devoted to "rate limit", https://docs.ccxt.com/#/README?id=rate-limit , there is missing the most important information, what it is, what the `exhange.rateLimit` number...
open
2024-12-13T22:05:00Z
2024-12-28T19:45:08Z
https://github.com/ccxt/ccxt/issues/24556
[]
telenskyt
2
tflearn/tflearn
data-science
1,171
OSS License compatibility question
There’s some possible confusion on the license of your repository when you combine other open-source code. The module `tflearn/vendor/arg_scope.py` claims its license as **Apache-2.0**. However, the license of your whole project is shown as **the MIT license** in LICENSE, i.e., less strict than Apache-2.0 on licens...
open
2023-01-14T05:33:02Z
2023-01-14T05:33:02Z
https://github.com/tflearn/tflearn/issues/1171
[]
Ashley123456789
0
LAION-AI/Open-Assistant
machine-learning
3,731
Unable to create new chat
I'm unable to start a new conversation. Nothing happens when I hit the URL https://open-assistant.io/chat. I tried several browsers, believing the problem was with the browser settings, but it happened every time.
closed
2023-11-15T09:40:35Z
2023-11-25T07:28:20Z
https://github.com/LAION-AI/Open-Assistant/issues/3731
[]
ac852321
6
pennersr/django-allauth
django
3,380
Intermittent login with Google errors
We are using allauth library to allow login via Google on our site. We did not override any allauth functionality, or change any of our code around logging in recently. The error message for the intermittent failures is: ``` "exception": "Error retrieving access token: b'{\\n \"error\": \"invalid_grant\",\\n \"error...
closed
2023-08-16T21:26:43Z
2023-10-11T15:30:52Z
https://github.com/pennersr/django-allauth/issues/3380
[]
kate-skorija
5
httpie/cli
api
958
request response time
I think it would be a good idea to have how long the response of a request took displayed in the output, this could be useful if comparing API's or testing the performance impact of a change to an API. with a little help I'd be willing to help out with this
closed
2020-07-23T19:19:08Z
2022-01-24T12:14:59Z
https://github.com/httpie/cli/issues/958
[]
s1ntaxe770r
2
lanpa/tensorboardX
numpy
514
Question in projecting an embedding with different labels
When I projecting an embedding with different labels, for example: ```python writer.add_embedding(same_embedding, labels_str_two, tag=f'labels_str_two') writer.add_embedding(same_embedding, labels_str_one, tag='labels_str_one') ``` I got two different pictures, just like these two pic...
open
2019-10-03T12:15:55Z
2019-10-05T17:36:11Z
https://github.com/lanpa/tensorboardX/issues/514
[]
heslowen
5
harry0703/MoneyPrinterTurbo
automation
422
无法拉取 docker image
这个大家是怎么解决的呢? ` (base) ➜ MoneyPrinterTurbo git:(main) docker-compose up Building webui DEPRECATED: The legacy builder is deprecated and will be removed in a future release. Install the buildx component to build images with BuildKit: https://docs.docker.com/go/buildx/ Sending build co...
closed
2024-06-22T02:54:24Z
2024-06-26T03:14:04Z
https://github.com/harry0703/MoneyPrinterTurbo/issues/422
[]
xushijie
0
plotly/dash
data-visualization
2,653
dcc.Dropdown has inconsistent layout flow with other common input components
**Describe your context** ``` dash 2.13.0 dash-core-components 2.0.0 dash-html-components 2.0.0 dash-table 5.0.0 ``` **Describe the bug** Many of the go-to Dash Core Components have the CSS style `display` set to `inline-block`, with a notable except...
open
2023-10-05T15:35:07Z
2024-08-13T19:38:28Z
https://github.com/plotly/dash/issues/2653
[ "bug", "P3" ]
ned2
0
axnsan12/drf-yasg
django
521
Question: why is only JSON allowed?
Even though DRF is configured to allow json and form data, this library only shows JSON as the only available request type.
closed
2020-01-04T16:54:57Z
2020-02-17T01:08:08Z
https://github.com/axnsan12/drf-yasg/issues/521
[]
cristianocca
1
sanic-org/sanic
asyncio
2,757
Circular import in target file accidentally triggers 'No module named ... found'
### Is there an existing issue for this? - [X] I have searched the existing issues ### Describe the bug While developing it appears that I accidentally caused a circular import which Python traces back to starting in the file I have my app in. As a result, Python outputs an error such as the following: ``` ImportE...
closed
2023-06-02T15:50:34Z
2023-07-05T11:38:16Z
https://github.com/sanic-org/sanic/issues/2757
[ "help wanted", "beginner", "feature request" ]
Bluenix2
0
littlecodersh/ItChat
api
1,030
这个项目用不了了,可以用gewechat/openwechat
ipad免费方案(推荐) https://github.com/Devo919/Gewechat hook免费方案:https://github.com/eatmoreapple/openwechat(会挤掉电脑) 有需要的自取,下面打广告的都是骗子 二道贩子 大家都不要理。
open
2024-11-30T09:23:55Z
2025-02-08T00:53:24Z
https://github.com/littlecodersh/ItChat/issues/1030
[]
ShanHaiYKP
3
browser-use/browser-use
python
481
Tor support
### Problem Description Sometimes, chrome base browser have a lot of issues, and some extensions are now limited due to ManifestV3. Also, without the tor network, we often face some rate limitation with google search or public APIs. ### Proposed Solution Instead of using playwright, switching to selenium would pro...
closed
2025-01-30T15:58:30Z
2025-02-21T21:31:10Z
https://github.com/browser-use/browser-use/issues/481
[ "enhancement" ]
gotyer
1
LibreTranslate/LibreTranslate
api
354
ERROR: The Compose file './docker-compose.cuda.yml' is invalid
After a fresh git clone, when running `docker-compose -f docker-compose.cuda.yml up -d --build` I get ` ERROR: The Compose file './docker-compose.cuda.yml' is invalid because: services.libretranslate-cuda.deploy.resources.reservations value Additional properties are not allowed ('devices' was unexpected) `
closed
2022-12-02T22:26:17Z
2022-12-11T18:44:27Z
https://github.com/LibreTranslate/LibreTranslate/issues/354
[]
Athanaze
2
plotly/dash
flask
3,132
`jupyter_mode='external'` doesn't work with `use_pages=True`
**Describe your context** Please provide us your environment, so we can easily reproduce the issue. - replace the result of `pip list | grep dash` below ``` dash 2.18.1 dash_ag_grid 31.2.0 dash-bootstrap-components 1.6.0 dash-colorscales ...
open
2025-01-24T20:23:32Z
2025-02-03T17:33:59Z
https://github.com/plotly/dash/issues/3132
[ "bug", "P2" ]
Aleksei-Poliakov
0
dask/dask
scikit-learn
10,999
TypeError: float() argument must be a string or a real number, not 'csr_matrix'
<!-- Please include a self-contained copy-pastable example that generates the issue if possible. Please be concise with code posted. See guidelines below on how to provide a good bug report: - Craft Minimal Bug Reports http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports - Minimal Complete Verifiab...
closed
2024-03-13T13:39:14Z
2024-03-14T13:18:41Z
https://github.com/dask/dask/issues/10999
[ "needs triage" ]
erico-imgproj
1
plotly/dash
plotly
3,186
Make sure that external_stylesheets style doesn't apply to the dev tools
See #3185 for an example of an issue that arises when external stylesheets are loaded and can override the css in dev tools
open
2025-02-24T21:43:35Z
2025-02-28T17:39:35Z
https://github.com/plotly/dash/issues/3186
[ "bug", "P1", "cs" ]
marthacryan
2
blb-ventures/strawberry-django-plus
graphql
157
Cursor Pagination without relay
Hello and merry xmas. I just finished an implementation of cursor pagination for a non-relay context and I encountered a couple of issues I would like to ask about and perhaps get a few pointers on a better implementation. Pagination was implemented using a modified version of [django-cursor-pagination](https://gith...
closed
2022-12-25T21:01:12Z
2023-06-15T21:35:30Z
https://github.com/blb-ventures/strawberry-django-plus/issues/157
[ "question" ]
m4riok
2