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
ray-project/ray
python
51,504
CI test windows://python/ray/tests:test_global_state is consistently_failing
CI test **windows://python/ray/tests:test_global_state** is consistently_failing. Recent failures: - https://buildkite.com/ray-project/postmerge/builds/8965#0195aaf1-9737-4a02-a7f8-1d7087c16fb1 - https://buildkite.com/ray-project/postmerge/builds/8965#0195aa03-5c4f-4156-97c5-9793049512c1 DataCaseName-windows://pyth...
closed
2025-03-19T00:07:25Z
2025-03-19T21:53:03Z
https://github.com/ray-project/ray/issues/51504
[ "bug", "triage", "core", "flaky-tracker", "ray-test-bot", "ci-test", "weekly-release-blocker", "stability" ]
can-anyscale
3
marcomusy/vedo
numpy
804
AttributeError: 'NoneType' object has no attribute 'polydata'
Hi there, I wrote a code in order to show the obj file from my own the first time I was successful with another obj file, but unfortunately, the second time mentioned error has been driving me crazy What can I do further? the code is: from vedo import Mesh mesh = Mesh("3dobjtest.obj") mesh.show() Er...
closed
2023-02-06T15:47:51Z
2023-02-06T23:27:09Z
https://github.com/marcomusy/vedo/issues/804
[]
ghost
6
identixone/fastapi_contrib
pydantic
167
Support docker secrets in configuration
### Description In order to use this library successfully as part of another system that is deployed via Docker Swarm, we need to support reading configuration variables from secrets file
closed
2021-02-28T21:13:36Z
2021-03-01T10:38:01Z
https://github.com/identixone/fastapi_contrib/issues/167
[ "enhancement" ]
levchik
1
yt-dlp/yt-dlp
python
12,506
[Floatplane] Optimization for downloading a playlist/channel with an archive file
### Checklist - [x] I'm requesting a site-specific feature - [x] I've verified that I have **updated yt-dlp to nightly or master** ([update instructions](https://github.com/yt-dlp/yt-dlp#update-channels)) - [x] I've checked that all provided URLs are playable in a browser with the same IP and same login details - [x] ...
closed
2025-03-01T17:22:26Z
2025-03-07T23:32:28Z
https://github.com/yt-dlp/yt-dlp/issues/12506
[ "question" ]
RankoKohime
4
ageitgey/face_recognition
python
789
How to get the results of landmarks with 68 points as dlib
### Description How to get the results of landmarks with 68 points as dlib. I don't wanna use `import dlib; etc.. ` . Cause it takes too much time. When i was trying to get landmarks, i used `api.face_landmarks(image)`. But what i got is 72 points. And i tried to manually changed the results to 68 points according t...
open
2019-03-29T02:47:39Z
2022-03-15T16:47:47Z
https://github.com/ageitgey/face_recognition/issues/789
[]
zoeleesss
1
aleju/imgaug
deep-learning
607
Fliplr and Flipud flips the same images when using random_state
When using Fliplr and Flipud with the same random_state they always flip the same images. Here's some code to show it: ``` import imgaug as ia import imgaug.augmenters as iaa import numpy as np import matplotlib.pyplot as plt def _get_light_image_augmenter(sq=None): aug = iaa.Sequential([ iaa...
open
2020-02-10T19:45:35Z
2020-02-11T18:18:46Z
https://github.com/aleju/imgaug/issues/607
[]
gustavscholin
3
milesmcc/shynet
django
179
"Allowed origins" should not default to '*'
I noticed when I copied and pasted a site snippet (including the site's UUID hardcoded) to another site that I was getting hits recorded from the new site. That was because I had not changed the default CORS header ("Allowed origins") in its config. Could this be set to a more sensible (and secure) default, like the...
open
2021-11-30T23:33:10Z
2022-02-05T00:42:38Z
https://github.com/milesmcc/shynet/issues/179
[]
hughbris
2
Yorko/mlcourse.ai
pandas
721
Incredibly large output in Feature selection
In the [topic 6](https://mlcourse.ai/book/topic06/topic6_feature_engineering_feature_selection.html) the output of the reverse_geocoder cell: ```python import reverse_geocoder as revgc revgc.search(list(zip(df.latitude, df.longitude))) ``` shows very huge useless output, like ~70% of the full page length. Can y...
closed
2022-09-13T17:54:51Z
2022-09-13T23:00:50Z
https://github.com/Yorko/mlcourse.ai/issues/721
[]
aulasau
1
iperov/DeepFaceLab
machine-learning
5,645
AMD Driver Timeout / HRESULT failed with 0x887a0005 / Check failed: 0 <= new_num_elements (0 vs. -1)
## Expected behavior *Extract face set (dst or src) and train (Quick96 and SAEHD tested).* ## Actual behavior *1. Extracting face set fails with `F tensorflow/core/common_runtime/dml/dml_upload_heap.cc:56] HRESULT failed with 0x887a0005: chunk->resource->Map(0, nullptr, &upload_heap_data)` or `F tensorflow/cor...
closed
2023-03-18T21:49:53Z
2023-05-22T21:23:31Z
https://github.com/iperov/DeepFaceLab/issues/5645
[]
xzuyn
2
GibbsConsulting/django-plotly-dash
plotly
401
The package generates Django migrations in the path of the pip package and not in the application migrations folder
# Symptoms When running the Django `makemigrations` command on a simple Django project that is just containing a simple Dash page derived from the examples available for `django-plotly-dash`, the migrations containing the database table for the internal communication of `django-plotly-dash` are generated in the `migra...
closed
2022-05-14T12:43:36Z
2023-06-04T15:27:16Z
https://github.com/GibbsConsulting/django-plotly-dash/issues/401
[]
erl987
2
pydantic/pydantic
pydantic
10,960
Problem generating OpenAPI schema for models with an enum as the key of a dict
### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description The code below used to work on 2.9.2, but it crashes on 2.10 with a message: `RuntimeError: Cannot update undefined schema for $ref=#/components/schemas/__main____PrimaryColor-Input__1`. The example uses FastAPI because it's the most c...
closed
2024-11-24T14:43:56Z
2024-12-02T15:41:24Z
https://github.com/pydantic/pydantic/issues/10960
[ "bug V2" ]
brianmedigate
4
litestar-org/litestar
api
3,477
Bug: Multi-body response incompatible with LoggingMiddleware
### Description When using `ServerSentEvent` Responses with `StructlogPlugin`, the application errors. Preliminary research led me to https://github.com/litestar-org/litestar/blob/main/litestar/middleware/logging.py#L180, where `scope.state._ls_connection_state.log_context` does not have any values during second...
closed
2024-05-07T23:32:24Z
2025-03-20T15:54:42Z
https://github.com/litestar-org/litestar/issues/3477
[ "Bug :bug:" ]
keongalvin
3
deepspeedai/DeepSpeed
pytorch
6,795
Does ZeRO++ Work on AMD GPU Mi200?
When I enable ZeRO++ on MI200, hit below exception: ``` [rank0]: File "/opt/conda/envs/ptca/lib/python3.9/site-packages/deepspeed/runtime/zero/stage3.py", line 179, in __init__ [rank0]: self.parameter_offload = self.initialize_ds_offload( [rank0]: File "/opt/conda/envs/ptca/lib/python3.9/site-packages/deepspee...
closed
2024-11-27T04:04:53Z
2024-12-06T02:30:27Z
https://github.com/deepspeedai/DeepSpeed/issues/6795
[]
unavailableun
4
Gozargah/Marzban
api
1,205
ارور EOF بعد از ساخت اکانت با API روی بعضی از اینباندها
این مشکل رو با استفاده از صفحه OpenAPI مرزبان روی نسخه 0.6.0 تست کردیم و مشخص شد باگ هست. تو نسخه 0.5 یا 0.6 به وجود اومده. اگر یه ریکوئست POST به این شکل بزنم برای ایجاد یوزر جدید: { "username": "user1234", "proxies": { "vmess": {}, "vless": {} }, "inbounds": { "vmess": [ "VMess Websocket" ], "vless": [ "Legacy", "...
closed
2024-07-31T10:02:31Z
2024-08-03T11:57:31Z
https://github.com/Gozargah/Marzban/issues/1205
[ "Bug" ]
automa-gen
3
hatchet-dev/hatchet
fastapi
1,115
Hatchet Lite only generating localhost tokens
I'm trying to use hatchet lite as a simpler deployment for our small scale project, but I need a token that has a non-localhost host. Despite setting the `SERVER_GRPC_BROADCAST_ADDRESS` env variable in the docker compose for the hatchet-lite instance, tokens always seem to point to localhost. I did this successfully...
closed
2024-12-11T17:20:45Z
2024-12-11T19:02:09Z
https://github.com/hatchet-dev/hatchet/issues/1115
[]
obermillerk
3
nonebot/nonebot2
fastapi
2,602
Plugin: a2s查询
### PyPI 项目名 nonebot-plugin-a2s-query ### 插件 import 包名 nonebot_plugin_a2s_query ### 标签 [{"label":"游戏服务器","color":"#ea5252"},{"label":"value","color":"#99ea52"}] ### 插件配置项 _No response_
closed
2024-03-10T14:02:44Z
2024-06-23T14:09:59Z
https://github.com/nonebot/nonebot2/issues/2602
[ "Plugin" ]
NanakaNeko
3
littlecodersh/ItChat
api
722
机器人是否有httpserver,可以接受三方程序发送的消息?
在提交前,请确保您已经检查了以下内容! - [x] 您可以在浏览器中登陆微信账号,但不能使用`itchat`登陆 - [x] 我已经阅读并按[文档][document] 中的指引进行了操作 - [x] 您的问题没有在[issues][issues]报告,否则请在原有issue下报告 - [ ] 本问题确实关于`itchat`, 而不是其他项目. - [x] 如果你的问题关于稳定性,建议尝试对网络稳定性要求极低的[itchatmp][itchatmp]项目 请使用`itchat.run(debug=True)`运行,并将输出粘贴在下面: ``` [在这里粘贴完整日志] ``` 您的itchat版本为...
closed
2018-08-29T03:20:26Z
2019-11-22T03:46:58Z
https://github.com/littlecodersh/ItChat/issues/722
[]
leaout
0
babysor/MockingBird
pytorch
973
自定义音频效果不佳
**Summary[问题简述(一句话)]** A clear and concise description of what the issue is. 模型是能够跑通的,但是测试自己提供的音频时,合成的效果对比示例的音频差距好大,想问一下输入的音频是不是有什么处理。 **Env & To Reproduce[复现与环境]** 描述你用的环境、代码版本、模型 **Screenshots[截图(如有)]** If applicable, add screenshots to help
open
2023-11-24T09:58:32Z
2024-01-07T09:31:48Z
https://github.com/babysor/MockingBird/issues/973
[]
zhou-zhi-hong
1
gradio-app/gradio
deep-learning
10,436
Theme is only used on first tab
### Describe the bug Monochrome is set for the interface, but only gets applied to the first tab. Tab 2 and 3 seem to be still using the default theme. ### Have you searched existing issues? 🔎 - [x] I have searched and found no existing issues ### Reproduction ```python import gradio as gr with gr.Blocks(title...
closed
2025-01-24T22:41:03Z
2025-01-27T19:15:26Z
https://github.com/gradio-app/gradio/issues/10436
[ "bug", "needs repro" ]
GregSommerville
3
CorentinJ/Real-Time-Voice-Cloning
tensorflow
1,170
Missing or murmuring words after synthesizing
Hi there, I tried it more than a year ago and I remember it was working fine with "demo_cli". At the time, I was using Mac Bigfur. Now, i tried again, with Mac Monterey. There are missing words or some words just murmuring and not clear at all. Tried wav, mp3 and m4a and it's reproducible. Does anyone know wh...
open
2023-03-05T21:35:08Z
2023-03-05T21:35:08Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/1170
[]
alann07
0
mljar/mercury
data-visualization
386
call to websocket keeps pending in mercury development server
Hi, I execute `mercury run` from a folder containing some notebook files. Mercury start without any error. It opens the browser listing the notebooks from the folder. I select a notebook and it opens. So far so good. But now the right side stays grayed out and shows 3 dots indicating that it is loading. With the ne...
closed
2023-10-27T13:18:43Z
2023-10-28T15:02:14Z
https://github.com/mljar/mercury/issues/386
[]
robert-elles
2
pydata/pandas-datareader
pandas
940
can not fetch data before 1970 on yahoo finance
Hi! I run into an error when using pandas-datareader. I think it's probably related to the unix time stamp. my code: from pandas_datareader import data as web import datetime import pandas as pd import matplotlib.pyplot as plt #spy 500 index stock = '%5EGSPC' endDate = datetime.datetime(2022, 8, 30) s...
open
2022-09-01T19:40:29Z
2023-01-10T15:21:21Z
https://github.com/pydata/pandas-datareader/issues/940
[]
houpuli
1
pytest-dev/pytest-cov
pytest
677
reporting coverage for a module imported with importlib
# Summary I am using pytest [with "importlib" as import mode](https://github.com/martibosch/pylandstats/blob/main/pyproject.toml#L78) because I am building a cython extension and otherwise pytest imports from the folder named "pylandstats" (without the built cython extension) rather than the installed package (also na...
closed
2025-02-13T16:09:03Z
2025-02-27T09:29:44Z
https://github.com/pytest-dev/pytest-cov/issues/677
[]
martibosch
2
CorentinJ/Real-Time-Voice-Cloning
tensorflow
832
Report on Single Voice Training Results
Hello @blue-fish and all, I am running the demo_toolbox on Win10, under Anaconda3 (run as administrator), env: VoiceClone, using an NVidia GEForce RTS2070 Super on an EVGA 08G-P4-3172-KR card, 8GB GDDR6, using python 3.7, pytorch Win10/CUDA version 11.1, with all other requirements met. The toolbox GUI (demo_toolbox.p...
closed
2021-08-30T01:57:55Z
2021-09-01T02:44:37Z
https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/832
[]
Tomcattwo
3
AutoGPTQ/AutoGPTQ
nlp
742
[BUG] I am quant qwen2-7b with auto-gptq
**Describe the bug** I've found a couple of bug, and I also have a few questions Bug: 1. qwen2.5-7b-instruct has very high avg loss for mlp.up_proj and mlp.gate_proj in wikitext2 dataset. In a 28-layer network, it's around 200 for the first 10 layers. In the later layers, the loss will be close to 2000, have you e...
open
2024-10-31T10:04:43Z
2024-11-12T10:51:42Z
https://github.com/AutoGPTQ/AutoGPTQ/issues/742
[ "bug" ]
Ijustakid
4
huggingface/datasets
nlp
6,447
Support one dataset loader per config when using YAML
### Feature request See https://huggingface.co/datasets/datasets-examples/doc-unsupported-1 I would like to use CSV loader for the "csv" config, JSONL loader for the "jsonl" config, etc. ### Motivation It would be more flexible for the users ### Your contribution No specific contribution
open
2023-11-23T13:03:07Z
2023-11-23T13:03:07Z
https://github.com/huggingface/datasets/issues/6447
[ "enhancement" ]
severo
0
miguelgrinberg/Flask-Migrate
flask
84
from alembic.revision import ResolutionError ImportError: No module named revision
I created a new sqlite database which works fine. Then made some changes to it and followed by ``` python manage.py db upgrade ``` but If I tried to run ``` python manage.py runserver ``` then I get ``` from alembic.revision import ResolutionError ImportError: No module named revision ``` Probably need to add PY...
closed
2015-09-17T09:22:27Z
2019-01-13T22:21:38Z
https://github.com/miguelgrinberg/Flask-Migrate/issues/84
[ "question", "auto-closed" ]
scheung38
7
fastapi/sqlmodel
pydantic
147
How to mark a model field as "non-persisted", i.e. to not be pushed to the DB?
### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it. - [X] I searched the SQLModel documentation, with the integrated search. - [X] I already searched in Google "How to X in SQLModel" and didn't find any information. - [X] I al...
closed
2021-10-26T07:23:02Z
2021-10-28T19:21:25Z
https://github.com/fastapi/sqlmodel/issues/147
[ "question" ]
JLHasson
4
agronholm/anyio
asyncio
353
3.3.0: pytest is failing
Just normal build, install and test cycle used on building package from non-root account: - "setup.py build" - "setup.py install --root </install/prefix>" - "pytest with PYTHONPATH pointing to setearch and sitelib inside </install/prefix> ```console + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-anyio-3.3.0...
closed
2021-07-31T09:50:54Z
2021-08-01T12:15:32Z
https://github.com/agronholm/anyio/issues/353
[]
kloczek
22
dynaconf/dynaconf
fastapi
835
dynaconf_merge = false supported?
Hello, I would like to know if it is possible to disable merging for some keys of a configs. In our case, we have a bunch of config files (~30) and merging them is the usual behavior. We do this through the `Dynaconf` parameter `merge_enabled`. Now, in a few cases the merging leads to undesired behavior and it would be...
closed
2022-11-24T11:14:21Z
2023-10-04T19:56:35Z
https://github.com/dynaconf/dynaconf/issues/835
[ "question", "RFC" ]
westphal-jan
5
deepfakes/faceswap
deep-learning
945
How do I remove ugly dark shadows on my face after changing face?
The converted face has black shadows. How can I eliminate it?
closed
2019-12-03T06:39:19Z
2019-12-04T10:58:05Z
https://github.com/deepfakes/faceswap/issues/945
[]
hnjiakai
1
mljar/mljar-supervised
scikit-learn
463
change multiprocessing to loky because it crashed on MacOs BigSpur
When using multiprocessing in Golden Features it causes crashed in MacOs BigSur 11.5.2 Please change to loky package https://github.com/joblib/loky
closed
2021-08-30T12:47:11Z
2021-09-02T07:52:25Z
https://github.com/mljar/mljar-supervised/issues/463
[ "bug" ]
pplonski
1
pydantic/FastUI
pydantic
354
ServerLoad component append prefix to url if I use url with http protocol included
I have application which communicate with other my servers, and i want to fetch with ServerLoad component to my endpoint on another server and that endpoint will be return the FastUI components, but when ServerLoad fetching to the given url also if url wtitten with http/https he append application prefix and doesn't us...
closed
2024-09-25T13:05:05Z
2024-12-15T18:18:02Z
https://github.com/pydantic/FastUI/issues/354
[]
dchnkoo
0
zappa/Zappa
django
501
[Migrated] Retries and timeout for dependencies.
Originally from: https://github.com/Miserlou/Zappa/issues/1316 by [Tipuch](https://github.com/Tipuch) ## Description Added retries and timeout optional parameters in the cli, a retry scheme when downloading dependencies and a different exception handling when downloading packages. ## GitHub Issues https://githu...
closed
2021-02-20T09:43:34Z
2022-07-16T07:23:34Z
https://github.com/zappa/Zappa/issues/501
[]
jneves
1
jazzband/django-oauth-toolkit
django
804
push release 1.3.0 to pypi
Push release 1.3.0 to pypi
closed
2020-03-04T14:01:46Z
2020-03-24T13:36:29Z
https://github.com/jazzband/django-oauth-toolkit/issues/804
[]
n2ygk
11
microsoft/nni
machine-learning
5,587
Bug: imcompatability between save & load functions and configs.
There is a imcompatability between standard config and code, as shown in functions save and load: https://github.com/microsoft/nni/blob/master/nni/tools/nnictl/nnictl_utils.py#L828 https://github.com/microsoft/nni/blob/master/nni/tools/nnictl/nnictl_utils.py#LL931C5-L931C22 It can be reproduced by saving and load...
open
2023-05-29T19:12:42Z
2023-07-19T12:00:40Z
https://github.com/microsoft/nni/issues/5587
[]
zjowowen
2
mwaskom/seaborn
pandas
3,439
so.plot not working in version 0.12.2
The following code does to display the intended graph, just a blank white space. ``` import numpy as np import pandas as pd import matplotlib as mpl import matplotlib.pyplot as plt import seaborn as sns import seaborn.objects as so dataLi = pd.read_csv("lithium_data.csv") dataLi ( so.Plot(dataL...
closed
2023-08-16T02:17:21Z
2023-08-16T16:19:59Z
https://github.com/mwaskom/seaborn/issues/3439
[]
RSelvaratnam
1
d2l-ai/d2l-en
pytorch
2,323
How to load d2l modules on Colab to avoid ModuleNotFoundError?
I’d like to begin reading this book and running its examples. However, for some resoans I am not allowed to install Conda on the machine. So, I have tried to run notebook on colab. However, once running the first cell, it give an Error like this: ``` %matplotlib inline import math import time import numpy as np i...
closed
2022-10-03T16:15:12Z
2022-11-20T02:04:17Z
https://github.com/d2l-ai/d2l-en/issues/2323
[]
ghost
8
seleniumbase/SeleniumBase
pytest
2,225
Struggling with Remote Debugging port
I am trying to run a script on a previously opened browser. I cannot connect to the browser instead my script opens up a new browser with each new run. The Browser opened -> [https://imgur.com/a/afBEAJX](https://imgur.com/a/afBEAJX) I use this to spawn my browser: cd C:\Program Files\Google\Chrome\Application chro...
closed
2023-10-30T08:04:30Z
2023-11-02T20:38:14Z
https://github.com/seleniumbase/SeleniumBase/issues/2225
[ "question", "UC Mode / CDP Mode" ]
Dylgod
8
pytest-dev/pytest-html
pytest
258
Attaching video URL after every test run in pytest html report
After every test run i am getting the video URL but when the report gets generated the URL is only shown for the 2nd test case which is of the 1st one and for 1st one it doesn't show anything. Note: the video URLs are generated correctly for each test cases it just that i am not able to properly attach the link to eac...
open
2020-01-30T19:38:43Z
2020-10-23T01:25:03Z
https://github.com/pytest-dev/pytest-html/issues/258
[ "question" ]
rahulbasu86
6
scanapi/scanapi
rest-api
9
Add package to brew
closed
2019-07-21T19:24:21Z
2019-08-02T13:59:08Z
https://github.com/scanapi/scanapi/issues/9
[ "Feature" ]
camilamaia
1
miguelgrinberg/flasky
flask
454
InstrumentedList has no attribute 'paginate'
hi, there is a stranger problem. when i run app, it raise error: InstrumentedList has no attribute 'paginate': pagination = user.followers.paginate(.....) i use type function to check the type of user.followers, it's InstrumentedList instead of BaseQuery class. i have seached google for several days, but hav...
closed
2019-12-30T09:41:19Z
2019-12-30T10:53:10Z
https://github.com/miguelgrinberg/flasky/issues/454
[]
MansonLuo
1
vanna-ai/vanna
data-visualization
637
How ro show results in Numbers and with thousand seperator along with change the currency to not be $
Hi , how can we change to show results in Numbers and with thousand separator along with change the currency to not be $ ? Thanks in advance
closed
2024-09-13T07:00:46Z
2024-09-16T14:09:03Z
https://github.com/vanna-ai/vanna/issues/637
[]
Ismokgtar
0
graphql-python/gql
graphql
301
Is there a way to export gql response dynamicly?
### The problem: **exporting data with `graphql` is inefficient .** for example lets look at this query: ```gql query{ SiteById(id:852){ unitSet{ connableSet{ connablealertSet{ TidKey TidValue } } } } } ``` returns this json respons: ```json {...
closed
2022-02-22T10:12:41Z
2022-03-12T19:04:18Z
https://github.com/graphql-python/gql/issues/301
[ "type: question or discussion" ]
nrbnlulu
5
robertmartin8/MachineLearningStocks
scikit-learn
32
Question
Hi Robert, This is another fine project together with your excellent portfolio optimisation work. I hope you don't mind me asking a question as someone inexperienced in this area regarding the amount of fundamental data required to produce a viable model. My local exchange is London (LSE/FTSE) and getting histor...
open
2020-05-23T15:05:13Z
2020-05-30T12:35:57Z
https://github.com/robertmartin8/MachineLearningStocks/issues/32
[]
lefig
9
pennersr/django-allauth
django
3,126
Can django-allauth work with Google login today through dj-rest-auth, since Google Identity services is not yet supported?
django-allauth does not seem to support the latest Google Identity services at the moment. Does this mean django-allauth is unable to work with Google login through dj-rest-auth for the time being?
closed
2022-07-18T02:13:44Z
2023-06-18T21:52:23Z
https://github.com/pennersr/django-allauth/issues/3126
[]
helpme1
1
widgetti/solara
fastapi
161
Sessions timeout / websocket disconnect
Thanks for the great project! I am developing an app for annotating data, but some data is difficult to discern and takes a long time, and it is quite difficult to use if the session expires at that time. Is it possible to extend the session expiration date? If there is information on this in the documentation or so...
closed
2023-06-20T10:53:57Z
2023-10-11T11:30:31Z
https://github.com/widgetti/solara/issues/161
[]
yugosuz
5
keras-team/keras
deep-learning
20,258
Add AdEMAMix Optimizer
AdEMAMix integrates Adam and EMA optimization methods to tackle issues of slow convergence and subpar generalization in large language models and noisy datasets. It utilizes three beta parameters along with an alpha parameter to provide flexible momentum and adaptive learning rates. Paper: https://arxiv.org/abs/2409...
closed
2024-09-14T20:33:32Z
2024-09-16T02:30:05Z
https://github.com/keras-team/keras/issues/20258
[]
IMvision12
4
FlareSolverr/FlareSolverr
api
1,150
[yggtorrent] (updating) Exception: System.Threading.Tasks.TaskCanceledException: The request was canceled due to the configured HttpClient.Timeout of 60 seconds elapsing. ---> System.TimeoutException: A task was canceled. ---> System.Threading.Tasks.TaskCanceledException: A task was canceled
### Have you checked our README? - [X] I have checked the README ### Have you followed our Troubleshooting? - [X] I have followed your Troubleshooting ### Is there already an issue for your problem? - [X] I have checked older issues, open and closed ### Have you checked the discussions? - [X] I have read the Dis...
closed
2024-04-12T11:41:04Z
2024-04-12T11:49:00Z
https://github.com/FlareSolverr/FlareSolverr/issues/1150
[]
GattusoGregory
0
flasgger/flasgger
rest-api
172
Smarter merging of specs_dict
I tried implementing a custom decorator that autofills some repetitive documentation data using the `specs_dict` attribute on the decorated function (this is also used by `@swag_from`). However, because of [this line](https://github.com/rochacbruno/flasgger/blob/8adba148ec4b262ac304b8439e10f55ef521c285/flasgger/utils.p...
closed
2017-11-27T11:59:25Z
2017-12-06T05:13:11Z
https://github.com/flasgger/flasgger/issues/172
[]
janbuchar
2
dunossauro/fastapi-do-zero
sqlalchemy
133
maume fast_zero
| Link do projeto | Seu @ no git | Comentário (opcional) | |-------------|-------------|-------------| | [crono_task](https://github.com/mau-me/crono_task_backend) | [@mau-me](https://github.com/mau-me) | Gerenciador de tarefas com backend baseado no fast_zero |
closed
2024-05-01T22:13:14Z
2024-05-01T22:14:32Z
https://github.com/dunossauro/fastapi-do-zero/issues/133
[]
mau-me
0
djstein/modern-django
rest-api
1
Good articles
This is a good series of Django resources. Please keep it up and can't wait for the rest 👍
closed
2017-10-13T13:48:28Z
2017-12-20T00:55:04Z
https://github.com/djstein/modern-django/issues/1
[]
sfdye
0
ageitgey/face_recognition
python
1,499
Can we train our own face encoding model?
Esp. compare 2 faces, it use the KNN algorithm. Can we train the model behind this algorithm? I search out no documentation about this.
open
2023-05-04T06:22:16Z
2023-05-04T06:22:16Z
https://github.com/ageitgey/face_recognition/issues/1499
[]
fishfree
0
dpgaspar/Flask-AppBuilder
flask
1,858
select record to filter another view
### Environment Flask-Appbuilder version: 4.1.1 ### Expected results I'd like to define an action in MyViewA (I followed this [doc](https://flask-appbuilder.readthedocs.io/en/latest/actions.html) ) to filter another view MyViewB. To create the filter i used this [doc](https://flask-appbuilder.readthedocs.i...
open
2022-06-07T14:12:39Z
2022-07-26T11:43:42Z
https://github.com/dpgaspar/Flask-AppBuilder/issues/1858
[]
piccio123
1
eriklindernoren/ML-From-Scratch
data-science
111
No module named 'mlfromscratch.utils.loss_functions'
Traceback (most recent call last): File "C:\G\ML-From-Scratch\mlfromscratch\examples\gradient_boosting_regressor.py", line 9, in <module> from mlfromscratch.utils.loss_functions import SquareLoss ModuleNotFoundError: No module named 'mlfromscratch.utils.loss_functions'
open
2024-11-20T08:51:03Z
2024-11-20T08:51:03Z
https://github.com/eriklindernoren/ML-From-Scratch/issues/111
[]
LeiYangGH
0
comfyanonymous/ComfyUI
pytorch
6,959
wtf
### Your question cannot work ### Logs ```powershell ``` ### Other _No response_
closed
2025-02-24T15:46:29Z
2025-02-24T15:46:42Z
https://github.com/comfyanonymous/ComfyUI/issues/6959
[ "User Support" ]
drfai
0
CPJKU/madmom
numpy
263
[Q] RNNBeatTracker filter choice
Hello guys. Fantastic work with the project. I am trying to port some parts of the project to tensorflow, and I am currently implementing the RNNBeatTracker RNN based on the paper you have linked. I am wondering if there is any particular reason you choose to filter the spectrogram with a LogarithmicFilterBank instead...
closed
2017-03-06T00:54:08Z
2019-02-06T10:35:46Z
https://github.com/CPJKU/madmom/issues/263
[]
ghost
14
Textualize/rich
python
2,880
[BUG] IPython extension: add ipython cell line to traceback
**Description** When using the rich extension for IPython terminal (`%load_ext rich`), and when there is an error, I can't see the line from which the error arises, only its line number. I often have pretty long cells and it's not easy to spot which line is causing the error since there is no lines numbers displa...
open
2023-03-15T14:01:25Z
2023-03-15T14:01:49Z
https://github.com/Textualize/rich/issues/2880
[ "Needs triage" ]
Paul-Aime
1
iperov/DeepFaceLab
machine-learning
932
Error extracting frames from data_src in deepfacelab colab
I was trying to run DFL_Colab, i imported the workspace folder successfully but got this error when i ran the extract frames cell "/content /!\ input file not found. Done. " please, any help regarding this?
open
2020-10-30T00:34:27Z
2023-06-08T21:51:12Z
https://github.com/iperov/DeepFaceLab/issues/932
[]
jamesbright
2
microsoft/nni
deep-learning
4,810
TPE tuner failed to load nested search space json
**Describe the issue**: **Environment**: - NNI version: 2.7 - Training service (local|remote|pai|aml|etc): local - Client OS: ubuntu 18 - Server OS (for remote mode only): - Python version:python3.7 - PyTorch/TensorFlow version: - Is conda/virtualenv/venv used?: - Is running in Docker?: yes **Config...
closed
2022-04-26T07:32:07Z
2022-09-08T03:10:20Z
https://github.com/microsoft/nni/issues/4810
[]
tjlin-github
3
MagicStack/asyncpg
asyncio
276
store procedure return a record
hi, i have a store procedure like this: ``` get_user_sp(user_email VARCHAR, user_password VARCHAR) RETURNS RECORD AS $$ DECLARE result RECORD; BEGIN SELECT user_id, is_active INTO result FROM users WHERE users.email = user_email AND users.password = user_password LIMIT 1; RETUR...
closed
2018-03-24T15:16:29Z
2018-03-28T15:11:06Z
https://github.com/MagicStack/asyncpg/issues/276
[ "question" ]
python-programmer
1
microsoft/nni
machine-learning
5,298
cannot fix the mask of the interdependent layers
**Describe the issue**: When i pruned the segmentation model.After saving the mask.pth,when i speed up ,the mask cannot fix the new architecture of the model **Environment**: - NNI version:2.0 - Training service (local|remote|pai|aml|etc):local - Client OS:ubuntu - Server OS (for remote mode only): - Python ...
closed
2022-12-23T11:12:32Z
2023-02-24T02:36:58Z
https://github.com/microsoft/nni/issues/5298
[]
sungh66
10
remsky/Kokoro-FastAPI
fastapi
25
[Bug]: losing connection while streaming does not interrupt generation
Reproduction steps: 1- start streaming a long piece of text via the openai compatible endpoint 2- close page / stop streaming / lose connection Expectation : chunks generation stops on the server. Ready to start immediately for next query. Current behaviour: server is stuck completing previous generation. new re...
closed
2025-01-11T17:02:18Z
2025-01-14T15:07:50Z
https://github.com/remsky/Kokoro-FastAPI/issues/25
[ "enhancement" ]
mrHBH
4
STVIR/pysot
computer-vision
210
训练效果不稳定,请问如何评估一组超参数或者一个改进是否有改进效果?
直接用这里提供的siamrpn_r50_l234_dwxcorr_8gpu去跑,对epoch11-20都在VOT2018做hp_search.py一次,然后用eval.py获得其中最好成绩。 在train.py用不同的seed,重复以上实验,然后最后的eao最好的和最差的差不多都差6个点了。 训练效果受随机性影响这么大,如果我要实验一组新的超参数,或者研究一项改进,要怎么样才能证明它有改进,而不是随机性碰巧的? 谢谢回复。
closed
2019-10-18T13:53:03Z
2019-12-18T09:49:21Z
https://github.com/STVIR/pysot/issues/210
[]
JamesLearning
4
tensorflow/tensor2tensor
deep-learning
1,745
Using MOE utils
I have a question about using the MOE utils. How would I integrate these utilities into my own model to create a mixture of experts model where each expert is a convolutional neural network?
closed
2019-11-15T20:05:20Z
2020-04-15T19:42:42Z
https://github.com/tensorflow/tensor2tensor/issues/1745
[]
zack466
0
plotly/dash-cytoscape
dash
82
Publish a new release
There have been changes to `Tree.py` that have not been published. Some of these changes fix import issues with Python 2.7.
closed
2020-03-18T01:54:40Z
2020-07-14T14:55:56Z
https://github.com/plotly/dash-cytoscape/issues/82
[ "bug" ]
chriddyp
0
home-assistant/core
asyncio
140,942
Weheat integration fails to connect
### The problem Hi, after installing the weheat integration I am trying to connect the integration to the server. I have logged in, however I get the following error: ```python File "/usr/local/lib/python3.13/site-packages/weheat/exceptions.py", line 156, in from_response raise ApiException(http_resp=http_resp, ...
open
2025-03-19T17:47:26Z
2025-03-24T06:37:09Z
https://github.com/home-assistant/core/issues/140942
[ "integration: weheat" ]
Josnoww
4
ets-labs/python-dependency-injector
flask
342
Please provide builds for ARM based systems
I wrote a program using the Dependency Injector and wanted to use it on an embedded system using Aarch64 architecture. Unfortunately though, it doesn't come with gcc to build it or any package manager to install the necessary prerequisites. Would you consider providing wheel builds for ARM based systems? On [cibuild...
closed
2020-12-22T14:46:36Z
2021-01-11T00:56:59Z
https://github.com/ets-labs/python-dependency-injector/issues/342
[ "enhancement" ]
czukowski
6
huggingface/transformers
deep-learning
36,010
ImportError: cannot import name 'GenerationMixin' from 'transformers.generation'
### System Info - `transformers` version: 4.47.1 - Platform: Linux-6.8.0-52-generic-x86_64-with-glibc2.39 - Python version: 3.11.11 - Huggingface_hub version: 0.28.1 - Safetensors version: 0.5.2 - Accelerate version: not installed - Accelerate config: not found - PyTorch version (GPU?): 2.6.0+cu124 (True) - Tensorflo...
closed
2025-02-03T08:40:41Z
2025-03-15T08:04:24Z
https://github.com/huggingface/transformers/issues/36010
[ "bug" ]
sij411
1
autogluon/autogluon
data-science
4,378
What does "gluon" mean?
Came up in a team meeting while chatting about you guys and we'd love to know what your name means!
closed
2024-08-12T14:54:28Z
2024-08-12T23:14:48Z
https://github.com/autogluon/autogluon/issues/4378
[ "question" ]
skim2257
1
recommenders-team/recommenders
deep-learning
1,675
[BUG] python_chrono_split could create time leakage
The current behavior of python_chrono_split is to take x% of each user/item as train and the rest is the test dataset. This could create time leakage because some items might become popular at some date t=0 but users who's train time happens before that t<0 time could be easily be recommended with that popular item fr...
open
2022-03-14T21:52:08Z
2022-03-22T18:07:56Z
https://github.com/recommenders-team/recommenders/issues/1675
[ "bug" ]
chanansh
3
kizniche/Mycodo
automation
762
Downsampling and retention policies for Influxdb
My perception (perhaps wrongly) is that influxdb is the weak point in the system, e.g. system hangs etc can often be tracked to influxdb stopping for some reason... Currently as the systems runs.... the database just keeps getting bigger, and bigger... I am currently sampling/recording data at 1 min intervals... so i...
closed
2020-04-02T10:19:49Z
2021-02-02T14:18:01Z
https://github.com/kizniche/Mycodo/issues/762
[]
drgrumpy
10
ipython/ipython
data-science
14,235
TypeError when using `store` magic command.
<!-- This is the repository for IPython command line, if you can try to make sure this question/bug/feature belong here and not on one of the Jupyter repositories. If it's a generic Python/Jupyter question, try other forums or discourse.jupyter.org. If you are unsure, it's ok to post here, though, there are few ...
closed
2023-11-02T13:50:37Z
2024-02-08T09:32:36Z
https://github.com/ipython/ipython/issues/14235
[ "bug" ]
sagzest
2
aminalaee/sqladmin
fastapi
894
Ability to leave a FileField empty when a photo is already uploaded
### Checklist - [x] There are no similar issues or pull requests for this yet. ### Is your feature related to a problem? Please describe. At the moment, when going to layouts where there is a FileField and a photo has already been uploaded, it does not give the opportunity not to change the photo. an error occurs ...
open
2025-03-15T16:32:43Z
2025-03-15T16:46:57Z
https://github.com/aminalaee/sqladmin/issues/894
[]
burvelandrei
0
Lightning-AI/pytorch-lightning
data-science
19,738
Loading from a checkpoint does not work properly in distributed training
### Bug description I train my model on multiple GPUs and save it with the `checkpoint callback` and `save_hyperparameters()`. I get a directory which looks like this, so this part seems to work flawlessly: ``` /epoch=5 --/checkpoint ----mp_rank_00_model_states.pt ----zero_pp_rank_0_mp_rank_00_optim_states.pt -...
open
2024-04-04T14:31:02Z
2024-04-04T14:31:02Z
https://github.com/Lightning-AI/pytorch-lightning/issues/19738
[ "bug", "needs triage" ]
asusdisciple
0
SciTools/cartopy
matplotlib
2,384
Issue plotting Any maps.
### Description <!-- Please provide a general introduction to the issue/proposal. --> Hello, basically everytime I am try to plot any maps I get the same error below <!-- If you are reporting a bug, attach the *entire* traceback from Python. If you are proposing an enhancement/new feature, provide links to rel...
closed
2024-05-12T03:11:26Z
2024-05-12T03:41:13Z
https://github.com/SciTools/cartopy/issues/2384
[]
Ernesto2425
0
sczhou/CodeFormer
pytorch
243
Output images are the originals from the input
I run the command like this "python scripts/crop_align_face.py -i inputs/cropped_faces -o outputs/cropped_faces", but it didn't work as expect. I found the images in output folder has nothing different with the images in input folder. My computer is Mac Book Pro M1.
open
2023-06-08T10:43:56Z
2023-06-08T10:43:56Z
https://github.com/sczhou/CodeFormer/issues/243
[]
PatriotBo
0
django-import-export/django-import-export
django
1,831
Resource field is empty when importing data
Hi, I have Django 4.2.13 with django-import-export 4.0.2. I have wrote an admin class that inherits from `ImportExportModelAdmin` and defined the `resource_classes` property. But for some reason, the field `resource` is empty when trying to import. And the fields are not displayed in `This importer will impor...
closed
2024-05-13T22:07:11Z
2024-05-14T15:41:33Z
https://github.com/django-import-export/django-import-export/issues/1831
[ "question" ]
nortigo
5
lepture/authlib
flask
175
Authlib does not correctly work with httpx middleware
**Describe the bug** A clear and concise description of what the bug is. **Error Stacks** ``` Traceback (most recent call last): File "/home/ken/.local/share/virtualenvs/testproj-lMPjJ55e/lib/python3.8/site-packages/uvicorn/protocols/http/httptools_impl.py", line 385, in run_asgi result = await app(se...
closed
2019-12-23T20:26:46Z
2020-02-11T10:59:42Z
https://github.com/lepture/authlib/issues/175
[ "bug" ]
kkinder
2
thp/urlwatch
automation
362
Option to configure SSL/TLS version and cipher suite for url job
Related earlier discussions: #265 #361 Related blog post: [Configuring TLS With Requests](https://lukasa.co.uk/2017/02/Configuring_TLS_With_Requests/)
open
2019-02-08T17:32:16Z
2020-07-21T09:39:53Z
https://github.com/thp/urlwatch/issues/362
[ "enhancement" ]
cfbao
4
vitalik/django-ninja
pydantic
783
AttributeError: 'NoneType' object has no attribute 'delete_cookie'
**Describe the bug** I am able to create cookies but I am not able delete the cookie ```from django.http import HttpResponse @app.get('/logout', auth=JwtAuth()) def logout_user(request, response: HttpResponse): response.delete_cookie("access") response.delete_cookie("refresh") return {'message': "...
closed
2023-07-03T15:00:11Z
2023-07-03T17:12:28Z
https://github.com/vitalik/django-ninja/issues/783
[]
ankushagar99
3
apache/airflow
python
47,948
ExternalTaskSensor with mode='reschedule' raising module 'airflow.settings' has no attribute 'engine' error
### Apache Airflow version main (development) ### If "Other Airflow 2 version" selected, which one? _No response_ ### What happened? ExternalTaskSensor with mode='reschedule' raising module 'airflow.settings' has no attribute 'engine' error Traceback (most recent call last): File "/opt/airflow/airflow/sensors/b...
open
2025-03-19T11:01:00Z
2025-03-23T17:07:01Z
https://github.com/apache/airflow/issues/47948
[ "kind:bug", "priority:medium", "area:core", "affected_version:3.0.0beta" ]
atul-astronomer
1
pallets-eco/flask-wtf
flask
192
IntegerField always fails on validation
Whatever I enter into the form, validating the form always fails on the IntegerField. ``` from flask.ext.wtf import Form from wtforms.fields import * from wtforms.validators import * class FooForm(Form): a = StringField('a', validators=[InputRequired()]) b = IntegerField('b', validators=[InputRequired()]) `...
closed
2015-08-05T08:21:59Z
2021-05-28T01:04:00Z
https://github.com/pallets-eco/flask-wtf/issues/192
[]
canebat
2
holoviz/panel
matplotlib
7,178
Unable to change the background colour for pn.indicators.Dial widget
#### version info: Panel 1.4.2 #### Description of expected behavior and the observed behavior: I’ve been unable to change the background colour for my pn.indicators.Dial widget. I’ve tried CSS, customized designs, etc and nothing seems to work. Ultimately I’d like the background to be transparent so that the das...
closed
2024-08-22T15:02:34Z
2024-09-12T12:41:46Z
https://github.com/holoviz/panel/issues/7178
[]
doughagey
2
cvat-ai/cvat
tensorflow
9,003
Logging: establishing a relationship between log of cvat and log of nuclio
Hi, I see, that the logging of events in CVAT is very deep. I'm using for automatically annotating self-written functions in NUCLIO. These functions are logging their activities in the log of NUCLIO. In this example, you see the labeling activities of a function ```` 25.01.28 09:20:27.130 (I) sor.http.w...
closed
2025-01-28T09:51:26Z
2025-01-31T13:44:58Z
https://github.com/cvat-ai/cvat/issues/9003
[]
RoseDeSable
4
ageitgey/face_recognition
python
865
How to set face_encodings to use CPU and RAM only?
* face_recognition version:1.2.3 * Python version:3.7.3 * Operating System: Win10 ### Description when I ran to get face_locations with mode='hog', no problem. When i ran to get face_encodings, got this error below, it seems that this function of face_encodings is going to use GPU to get allocate memory. How to...
open
2019-06-27T15:09:35Z
2019-07-09T01:11:30Z
https://github.com/ageitgey/face_recognition/issues/865
[]
michaeldengxyz
3
pytorch/vision
computer-vision
8,877
Setting a single negative value or a couple of negative values to `sigma` argument of `ElasticTransform()` doesn't get error against the error message
### 🐛 Describe the bug Setting a negative and positive value together to `sigma` argument of [ElasticTransform()](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.ElasticTransform.html) gets the error messages as shown below: ```python from torchvision.datasets import OxfordIIITPet from torchvisio...
open
2025-01-24T01:42:08Z
2025-02-19T13:32:48Z
https://github.com/pytorch/vision/issues/8877
[]
hyperkai
1
polakowo/vectorbt
data-visualization
43
Error of Portfolio.from_signals
Hi, thank for this lib. I got a problem when I was trying test example. ``` import vectorbt as vbt import pandas as pd import yfinance as yf price = yf.Ticker("BTC-USD").history(period="max") entries, exits = pd.Series.vbt.signals.generate_random_both( price.shape[0], n=10, seed=42 ) portfolio = v...
closed
2020-09-01T10:32:31Z
2020-09-16T22:32:04Z
https://github.com/polakowo/vectorbt/issues/43
[]
Jaclong
12
microsoft/nlp-recipes
nlp
394
[BUG] Not authorized to access variable group.
### Description ![image](https://user-images.githubusercontent.com/6098674/64176278-169fd580-ce2b-11e9-9c12-66c0479f2329.png) ### How do we replicate the bug? I am not authorized to access the variable group which has the keyvault so the tests do not run. ### Expected behavior (i.e. solution) Successful ...
closed
2019-09-03T13:19:45Z
2019-10-23T16:36:31Z
https://github.com/microsoft/nlp-recipes/issues/394
[ "bug" ]
bethz
2
ultralytics/ultralytics
pytorch
18,687
YOLOv8 detection head intuitive feature specialization (e.g., small/medium/large object focus)
### Search before asking - [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/ultralytics/ultralytics/discussions) and found no similar questions. ### Question I have repeatedly read and observed that in the case of YOLOv3, the d...
open
2025-01-14T19:59:12Z
2025-01-15T18:15:15Z
https://github.com/ultralytics/ultralytics/issues/18687
[ "question", "detect" ]
leethologica
4
alteryx/featuretools
data-science
1,913
Use polars for primitive calculation for faster feature value generation
- We could support [polars](https://github.com/pola-rs/polars) DataFrames, and use the functions from that library for generating features (in primitive calculations).
open
2022-02-17T18:15:13Z
2023-06-26T18:52:16Z
https://github.com/alteryx/featuretools/issues/1913
[ "new feature", "needs design", "spike" ]
gsheni
2
python-visualization/folium
data-visualization
1,194
HeatMap with fixed scale
```python hm = folium.plugins.HeatMapWithTime(data, scale_radius=False) ``` #### Problem description Would it be possible to fix the scale for the map like what is done for HeatMap_time. #### Output of ``folium.__version__`` 0.10.
closed
2019-08-05T09:47:27Z
2022-11-27T15:37:44Z
https://github.com/python-visualization/folium/issues/1194
[]
betizad
1
d2l-ai/d2l-en
computer-vision
2,226
issue with module show_list_len_pair_hist from d2l.torch
![image](https://user-images.githubusercontent.com/50806191/181920373-59069fe5-b955-41a8-967a-0ac796053cc8.png)
closed
2022-07-30T15:07:42Z
2022-07-30T19:45:11Z
https://github.com/d2l-ai/d2l-en/issues/2226
[]
ulfat191
2
fastapi-admin/fastapi-admin
fastapi
33
how to use own SQL database for this project?
I would love to use this admin panel and connect it to my own database. But I have no idea of how the tables and relations are built..
closed
2021-02-04T12:41:08Z
2021-05-01T12:52:44Z
https://github.com/fastapi-admin/fastapi-admin/issues/33
[]
vlori2k
1
firerpa/lamda
automation
100
网页端触摸控制异常
Architecture: arm64-v8a Model: M2012K11AC (14, 1080x2400) 系统是lineageos 21. 感觉这像是个映射的问题 打开开发者选项里的触摸反馈可以发现实际上可以触摸 但是显示的点局限于屏幕左上角很小的一片方形区域 搜索已有的issue发现在properties.local里添加touch.backend=system属性的解决方法 但是这个并不能解决我所遇到的问题 其表现为重启之后整个显示区域都是无法点击的 显示view only 另外这个使用scrcpy是能正常显示和点击触摸的
open
2025-01-01T13:15:32Z
2025-01-03T11:15:27Z
https://github.com/firerpa/lamda/issues/100
[]
koast18
3
tflearn/tflearn
tensorflow
641
AttributeError: 'DNN' object has no attribute 'predict_lables'
`encode_decode = model.predict_lables(feed_dict={X:testX}) print(encode_decode)` While trying to run the above code I am encountring AttributeError: 'DNN' object has no attribute 'predict_lables' error! I checked and DNN supports predict_labels
closed
2017-02-28T17:08:13Z
2017-02-28T17:15:51Z
https://github.com/tflearn/tflearn/issues/641
[]
jdvala
0
ymcui/Chinese-LLaMA-Alpaca-2
nlp
194
会开源33B模型吗?
### 提交前必须检查以下项目 - [X] 请确保使用的是仓库最新代码(git pull),一些问题已被解决和修复。 - [X] 我已阅读[项目文档](https://github.com/ymcui/Chinese-LLaMA-Alpaca-2/wiki)和[FAQ章节](https://github.com/ymcui/Chinese-LLaMA-Alpaca-2/wiki/常见问题)并且已在Issue中对问题进行了搜索,没有找到相似问题和解决方案。 - [X] 第三方插件问题:例如[llama.cpp](https://github.com/ggerganov/llama.cpp)、[LangChain](https://g...
closed
2023-08-28T03:06:50Z
2023-08-28T10:27:32Z
https://github.com/ymcui/Chinese-LLaMA-Alpaca-2/issues/194
[]
lucasjinreal
3
Esri/arcgis-python-api
jupyter
1,780
Item.share() is not working when the groups parameter is specified
**Describe the bug** I am not able to share items with specified groups with the arcgis.gis.Item.share() method. I tried a hosted feature layer and a view of that HFL. The _org_ and _everyone_ parameters do work, but the _groups_ parameter with a group ID string or with the Group object fails to change any sharing pro...
open
2024-03-19T19:16:50Z
2025-01-07T17:56:53Z
https://github.com/Esri/arcgis-python-api/issues/1780
[ "bug" ]
avstjohn
2
huggingface/datasets
pytorch
7,406
Adding Core Maintainer List to CONTRIBUTING.md
### Feature request I propose adding a core maintainer list to the `CONTRIBUTING.md` file. ### Motivation The Transformers and Liger-Kernel projects maintain lists of core maintainers for each module. However, the Datasets project doesn't have such a list. ### Your contribution I have nothing to add here.
closed
2025-02-17T00:32:40Z
2025-03-24T10:57:54Z
https://github.com/huggingface/datasets/issues/7406
[ "enhancement" ]
jp1924
3
pandas-dev/pandas
data-science
60,496
ENH: astype(object) does not convert numpy strings to str
### Pandas version checks - [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the [latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of pandas. - [X] I have confirmed this bug exists on the [main branch](https://pandas.pydata.org/docs/dev/ge...
open
2024-12-05T13:02:11Z
2024-12-09T23:29:05Z
https://github.com/pandas-dev/pandas/issues/60496
[ "Enhancement", "Strings", "Closing Candidate" ]
aktobii
3