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
ading2210/poe-api
graphql
106
Unable to send message after a period of time
The parameters for sending a message are as follows. It seems that the connection will be disconnected after a period of time, and then it will never be connected again ```python for chunk in self.client.send_message(self.useAi, message,timeout=120): pass ``` Additionally, I used a proxy The command line ...
open
2023-06-08T14:07:50Z
2023-06-11T05:55:08Z
https://github.com/ading2210/poe-api/issues/106
[ "bug" ]
Seikaijyu
6
holoviz/panel
plotly
7,100
tabulator default font size is too large
Using panel 1.4.4 with bootstrap template, I have noticed that normal text (e.g. markdown panel) renders in 12px size but the tabulator widget uses 16px, which looks pretty odd: ![image](https://github.com/user-attachments/assets/7ebf310d-de01-45c6-8f33-a6d92d58417c) There is no option I can see to adjust the fo...
open
2024-08-07T20:02:37Z
2025-02-20T15:07:33Z
https://github.com/holoviz/panel/issues/7100
[ "component: tabulator", "ux" ]
samimia-swks
2
dropbox/PyHive
sqlalchemy
127
Unicode query breaking
Im trying to do a simple unicode query and it breaks with the following statement: > `>>> d.execute("select * from table_name where Column1="+u'\u6c34\u91ce\u7dda')` Error: `pyhive.exc.OperationalError: TExecuteStatementResp(status=TStatus(errorCode=40000, errorMessage=u"Error while compiling statement: FAILE...
closed
2017-05-29T20:58:17Z
2017-05-30T18:44:38Z
https://github.com/dropbox/PyHive/issues/127
[]
Chuseuiti
4
LibreTranslate/LibreTranslate
api
696
服务器不能访问外网,怎么部署下载模型呢
服务器不能访问外网,怎么部署下载模型呢
closed
2024-10-16T02:01:40Z
2024-10-16T02:01:54Z
https://github.com/LibreTranslate/LibreTranslate/issues/696
[]
zihao2981
1
okken/pytest-check
pytest
111
check.equal IndexError "list index out of range"
Catching exception and printing traceback for this piece of code erroring: ``` if not check.equal(response.status_code, 200, \ f"response status code expected 200 got {response.status_code}"): ``` Using pytest-check version 1.0.10 ``` Traceback (most recent call last): ...
closed
2023-01-04T00:18:38Z
2023-01-12T06:39:09Z
https://github.com/okken/pytest-check/issues/111
[ "unable to reproduce" ]
amit-selector
2
piccolo-orm/piccolo
fastapi
93
Mixins not working as it should
Hello, I'm trying to use Piccolo to one of my project, amazing work by the way, and I may have found a bug. I didn't figure this out yet, but I'll post here If I find something. I trying to implement the mixin pattern that I saw in the docs, however, when I execute any query, the collumns shows the name of the las...
closed
2021-05-04T12:09:50Z
2021-05-09T17:32:38Z
https://github.com/piccolo-orm/piccolo/issues/93
[]
brnosouza
4
neuml/txtai
nlp
229
Add support for loading/storing embedding indexes on cloud storage
Use Apache Libcloud (already an optional dependency) to support loading and storing embedding indexes on cloud storage. Apache Libcloud supports these providers: https://libcloud.readthedocs.io/en/stable/supported_providers.html
closed
2022-02-21T16:12:54Z
2022-02-23T21:14:20Z
https://github.com/neuml/txtai/issues/229
[]
davidmezzetti
0
art049/odmantic
pydantic
508
How does inheritance work with ODMantic models?
How does inheritance work with ODMantic models? ```py class UserBase(BaseModel, UserMixin): email: EmailStr password: SecretStr _engine: ClassVar[AIOEngine] model_config = {"arbitrary_types_allowed": True} ``` ```py class User(Model, UserBase): email: EmailStr password: SecretSt...
open
2024-11-20T01:37:00Z
2025-02-27T18:52:49Z
https://github.com/art049/odmantic/issues/508
[ "bug" ]
iBuitron
1
axnsan12/drf-yasg
rest-api
102
Support for postgres ArrayField
Django >= 1.8 supports the _ArrayField_ of django.contrib.postgres.fields. I'm using it as an array of strings that's serliazed with drf as _MultipleChoiceField_. #models.py `array_field = ArrayField(models.CharField(choices=TYPES, max_length=3))` #serlializers.py `array_field = serializers.MultipleChoiceField(...
closed
2018-04-17T12:08:07Z
2018-08-06T13:59:25Z
https://github.com/axnsan12/drf-yasg/issues/102
[ "bug" ]
ly0nk1ng
3
onnx/onnx
pytorch
6,018
When will outstanding security vulnerabilities be fixed?
# Ask a Question ### Question When are you planning to release the next version of Onnx so that the outstanding security vulnerabilities are patched? ### Further information - https://vuldb.com/?id.254653 (fixed by https://github.com/onnx/onnx/commit/66b7fb630903fdcf3e83b6b6d56d82e904264a20) - https://vuldb.co...
closed
2024-03-12T12:32:04Z
2024-03-28T07:58:37Z
https://github.com/onnx/onnx/issues/6018
[ "question" ]
micahstairs
2
kymatio/kymatio
numpy
296
BUG skcuda `subsample_fourier` crashes on non-complex inputs
As a result, things like ``` x = torch.randn(4) subsample_fourier(x, 1) ``` crash instead of giving the proper `TypeError`.
closed
2019-01-15T16:35:35Z
2019-01-17T15:18:57Z
https://github.com/kymatio/kymatio/issues/296
[ "bug", "1D" ]
janden
0
litestar-org/litestar
asyncio
3,891
Enhancement: Add query params to litestar.response.redirect.Redirect
### Summary I'd like to be able to specify query parameters in `Redirect.__init__`, rather than having to encode and append them to the redirect path manually. ### Basic Example Before: ``` from urllib.parse import urlencode from litestar.response import Redirect params = {"key_1": "value_1", "key_2": ["valu...
closed
2024-12-07T01:00:31Z
2025-03-20T15:55:03Z
https://github.com/litestar-org/litestar/issues/3891
[ "Enhancement" ]
marcuslimdw
1
gradio-app/gradio
deep-learning
10,601
change event doesn't be detected when value is component in gr.Dataframe
### Describe the bug I have a seven columns' dataframe, and the final column is html style selection component. When I select the value in such column, change event cannot be detected. ### Have you searched existing issues? 🔎 - [x] I have searched and found no existing issues ### Reproduction ```python import gr...
closed
2025-02-17T04:14:08Z
2025-03-04T19:16:16Z
https://github.com/gradio-app/gradio/issues/10601
[ "bug", "💾 Dataframe" ]
Yb2S3Man
1
ionelmc/pytest-benchmark
pytest
86
New filtering of benchmark tests filters out more than it should
I have proposed a modification to filter non-benchmark tests using the `pytest_collect_modifyitems()` hook instead of `pytest_runtest_call()` (#84). That modification introduced: - **a bug:** the filtering is finishing too early because of identation problem in the last lines of the filtering function. - **a conce...
closed
2017-08-13T20:14:56Z
2019-01-02T22:19:47Z
https://github.com/ionelmc/pytest-benchmark/issues/86
[]
drebs
5
zappa/Zappa
django
545
[Migrated] Scheduling event on s3 bucket fails
Originally from: https://github.com/Miserlou/Zappa/issues/1442 by [jesse-peters](https://github.com/jesse-peters) <!--- Provide a general summary of the issue in the Title above --> ## Context Using zappa on python 3.6 inside a venv. ## Expected Behavior I have an s3 bucket which has a few existing event subscri...
closed
2021-02-20T12:22:33Z
2024-04-13T16:37:12Z
https://github.com/zappa/Zappa/issues/545
[ "aws", "no-activity", "auto-closed" ]
jneves
2
satwikkansal/wtfpython
python
265
Found a small problem
I noticed the following sentence in your article . > [] = () is a semantically correct statement (unpacking an empty tuple into an empty list) according to the python documentation, the [] on the left of the equal sign looks like a `list`, but it's not. --------------------------- `del [a,b,c]` or `del (a...
open
2021-04-08T18:23:16Z
2021-06-13T10:01:19Z
https://github.com/satwikkansal/wtfpython/issues/265
[]
ch-yx
1
google-research/bert
nlp
364
Does the learning_rate will change through the trainning?
I wonder whether the learning_rate will change when pretrain or finetune? ① I pretrain a tmp1 model from BERT base model with train_steps=1w; then I continue to pretrain a tmp2 model from tmp1 model1 with train_steps=1w. ②I pretrain a tmp3 model directly from BERT base model with train_steps=2w . I wonder ...
open
2019-01-15T02:21:47Z
2019-01-15T02:23:16Z
https://github.com/google-research/bert/issues/364
[]
Gpwner
0
browser-use/browser-use
python
293
request: users can load up a queue of requests in JSON format and BU iterate over each JSON object
Example prompt: upload JSON file prompt example: Evaluate JSON file for prompt Go to gmail. Subject line : search of {arrayobject}. write summary. Save as draft. This queue structure should probably want to kill the LLM between queued sessions so there is no bleed over from one LLM instance to another. e.g. We r...
open
2025-01-17T08:53:18Z
2025-01-24T10:44:44Z
https://github.com/browser-use/browser-use/issues/293
[]
pleabargain
1
JaidedAI/EasyOCR
pytorch
1,307
`easyocr.Reader.readtext(...)` in rare occasions returns bounding box with `float` coordinates, and not `int`
I'm using EasyOCR to make very simple banknote recognition for uni project, using Python and OpenCV. If I understand correctly provided examples, code below: ```python import cv2 import numpy as np import easyocr cap = cv2.VideoCapture(...) reader = easyocr.Reader(["en"]) did_read, frame = cap.read() # some...
open
2024-09-12T18:29:10Z
2024-09-19T23:02:18Z
https://github.com/JaidedAI/EasyOCR/issues/1307
[]
ScheiBig
2
vimalloc/flask-jwt-extended
flask
323
Statement properly written?
https://github.com/vimalloc/flask-jwt-extended/blob/bf1a521b444536a5baea086899636406122acbc5/flask_jwt_extended/tokens.py#L60 At this line, since `fresh` is a boolean variable, should `isinstance` work in any situation here?
closed
2020-04-23T12:34:59Z
2020-04-23T12:58:09Z
https://github.com/vimalloc/flask-jwt-extended/issues/323
[]
ticksmas
1
thp/urlwatch
automation
638
navigate does not work
when I run urlwatch, > Exception while releasing resources for job: <browser navigate='https://pypi.org/project/urlwatch/' name='urlwatch' filter=[{'xpath': '/html/body/main/div[1]/div/div[1]/h1'}, {'html2text': {'method': 'pyhtml2text', 'unicode_snob': True, 'body_width': 0, 'inline_links': False, 'ignore_links':...
open
2021-04-19T02:07:52Z
2022-03-04T20:42:48Z
https://github.com/thp/urlwatch/issues/638
[]
A6669
2
sqlalchemy/sqlalchemy
sqlalchemy
11,166
New MySQL 8.3 reserved words
### Describe the bug MySQL 8,3 makes `intersect`, `parallel`, and `qualify` reserved words that now require quoting when used as identifiers. ### Optional link from https://docs.sqlalchemy.org which documents the behavior that is expected _No response_ ### SQLAlchemy Version in Use 2.0.28 ### DBAPI (i.e. the data...
closed
2024-03-15T17:54:57Z
2024-03-15T21:02:22Z
https://github.com/sqlalchemy/sqlalchemy/issues/11166
[ "mysql", "use case", "dialects" ]
seanbright
3
jazzband/django-oauth-toolkit
django
958
Client Credentials app throws assertion on auth code flow
**Describe the bug** <!-- A clear and concise description of what the bug is. --> If you try and use a client credentials app as an authorization code app flow it will cause an assertion error to be thrown. **To Reproduce** <!-- Steps to reproduce the behavior --> - Create a client_id as a client_credentials...
open
2021-04-06T17:01:59Z
2021-05-04T16:18:47Z
https://github.com/jazzband/django-oauth-toolkit/issues/958
[ "bug" ]
Amertz08
3
collerek/ormar
fastapi
939
Support properties in get_pydantic()
**Is your feature request related to a problem? Please describe.** Currently, dict and json support property_field, but get_pydantic does not. This causes issues with FastAPI (and other purposes that use the pydantic model, I assume). **Describe the solution you'd like** Include property_field in the annotations g...
open
2022-11-20T01:29:26Z
2022-11-20T01:29:26Z
https://github.com/collerek/ormar/issues/939
[ "enhancement" ]
Jonhasacat
0
PokeAPI/pokeapi
api
1,040
Add pokemon cries to GraphqQL response
With cries added to the pokemon model, it should also be available in the pokemon_v2_pokemon graphql object. NOt sure if this has been done but could not figure out the object structure needed here: https://beta.pokeapi.co/graphql/console/ to return the cry 'ogg' file
closed
2024-02-09T15:22:10Z
2024-02-21T18:32:20Z
https://github.com/PokeAPI/pokeapi/issues/1040
[]
blevy115
1
sinaptik-ai/pandas-ai
data-visualization
1,103
Support for Pyspark dataframe
### 🚀 The feature Pyspark is used widely in the community for ETL work involving large datasets. Adding support for it will increase adoption for the product. ### Motivation, pitch My org uses, Pyspark as the only framework for ETL, EDA is done by visualising various cuts of the same pyspark dataframe. ### Alt...
closed
2024-04-11T10:19:47Z
2024-09-06T16:06:31Z
https://github.com/sinaptik-ai/pandas-ai/issues/1103
[]
rishabh-dream11
4
vllm-project/vllm
pytorch
15,386
[Bug]: awq Deepseek-R1-AWQ The model is convertible to awq_marlin during runtime. Using awq_marlin kernel.
### Your current environment ![Image](https://github.com/user-attachments/assets/231880dd-5827-4f65-9ca8-9aa4de0a612f) vllm==0.8.1 0.8.2 0.8.3.dev5+g5797fb97.precompiled https://huggingface.co/cognitivecomputations/DeepSeek-R1-AWQ Concurrent use will result in the error message shown in the figure. ### 🐛 Describe...
open
2025-03-24T09:55:46Z
2025-03-24T10:22:30Z
https://github.com/vllm-project/vllm/issues/15386
[ "bug" ]
WALLE-AI
1
voila-dashboards/voila
jupyter
728
`pytest-tornasync` appears to be a *run-time* dependency?
Adding `voila` as a dependency to a `conda` meta-package I'm building breaks our CI with the below error: ``` C:\agent\_work\1\s>exit /B 0 Traceback (most recent call last): File "C:\Miniconda\envs\test-1512\lib\site-packages\_pytest\config\__init__.py", line 689, in import_plugin __import__(importspe...
closed
2020-09-26T07:44:49Z
2021-01-06T13:30:39Z
https://github.com/voila-dashboards/voila/issues/728
[]
dhirschfeld
3
marcomusy/vedo
numpy
1,221
Legosurface extraction
Hi, Thanks for such a great package! I am using Python 3.9.10 with Vedo 2024.5.2 and VTK 9.0.3. I have a dataset with numeric values surrounded by NaNs. The attached zip contains the dataset and two figures showing the anomalies I want to capture with a legosurface. As shown in the figures, the anomaly towards the u...
closed
2025-02-06T01:12:20Z
2025-03-08T16:39:28Z
https://github.com/marcomusy/vedo/issues/1221
[]
ivan-marroquin
17
tfranzel/drf-spectacular
rest-api
1,383
Returning an `Enum` from a `SerializerMethod`
Is it possible to express this: ```py class Item(Model): name = TextField() @unique class Color(Enum): Red = "red" Green = "green" Blue = "blue" class ItemSerializer(ModelSerializer): color = SerializerMethodField() def get_color(self, instance) -> Color: return Color.Red.value ...
open
2025-02-19T12:58:55Z
2025-03-13T11:46:46Z
https://github.com/tfranzel/drf-spectacular/issues/1383
[]
johnthagen
7
wandb/wandb
data-science
9,366
[Bug-App]: Cannot rename runs in the workspace on Firefox
### Describe the bug Since a few weeks ago I have been unable to rename runs from the Workspace page when using Firefox as the browser. When clicking the rename button nothing happens. The function works just fine on Chrome, and also you can rename specific runs from their Overview page on Firefox. Is this a problem o...
open
2025-01-30T11:59:48Z
2025-01-30T15:58:26Z
https://github.com/wandb/wandb/issues/9366
[ "ty:bug", "a:app" ]
vassil-atn
1
iMerica/dj-rest-auth
rest-api
421
cookie response on login
After upgrading from `2.2.4` to `2.2.5` the login call response returns ``` response = self.client.post(reverse('rest_login'),...) response.json()['JWT_AUTH_COOKIE'] == '***' response.json()['JWT_AUTH_REFRESH_COOKIE'] == '' ``` Where as before the upgrade, both of those values were actual tokens.
open
2022-07-19T12:33:37Z
2022-07-19T12:33:37Z
https://github.com/iMerica/dj-rest-auth/issues/421
[]
jkhales
0
kennethreitz/responder
flask
111
Handling WebSockets
Is there any way I can handle WebSockets connections using Responder?
closed
2018-10-21T09:19:29Z
2018-10-22T14:07:33Z
https://github.com/kennethreitz/responder/issues/111
[]
bartlomieju
2
tflearn/tflearn
tensorflow
1,092
One of the activation function parameters, 'selu' be generates an error.
I am currently using version 1.9 of tensorflow, and version tflearn is using version 0.32. One of the activation function parameters of tflearn, selu does not work properly. The symptoms are as follows. x = tflearn.conv_2d(_input, 16, 3, activation='selu', scope='conv1_1') -> TypeError: expected string or bytes-lik...
closed
2018-10-12T17:25:13Z
2018-10-17T03:49:37Z
https://github.com/tflearn/tflearn/issues/1092
[]
Sudo42b
1
ccxt/ccxt
api
25,393
Bitget: WatchBalance() doesn't react to balance change
### Operating System Win 11 ### Programming Languages JavaScript ### CCXT Version ^4.4.61 ### Description **BITGET**: When I start `watchBalance()`, it returns current balance. Then I make a trade, e.g. market buy, (`watchOrders` reacts), `watchBalance` does nothing.
closed
2025-03-03T08:32:31Z
2025-03-07T13:09:43Z
https://github.com/ccxt/ccxt/issues/25393
[]
Wlad007
2
man-group/arctic
pandas
630
help: how to query by column?
Which Store supports querying a subset of the Dataframes columns? Are there any examples doing this? I can see how the API works for time slice on the datetime indexed Dataframe but am struggling with column selection. Thanks for the great lib!
closed
2018-09-21T17:25:47Z
2018-10-13T22:10:18Z
https://github.com/man-group/arctic/issues/630
[]
js190
1
xuebinqin/U-2-Net
computer-vision
274
Face image processing unable to detect mirror effect !
![final-output](https://user-images.githubusercontent.com/311413/145182993-f58a5525-2348-460f-8be1-11ebb0569fcd.png) when I process, it unable to detect mirror hand ! Please expert guide us
open
2021-12-08T09:25:23Z
2022-03-13T18:36:04Z
https://github.com/xuebinqin/U-2-Net/issues/274
[]
tejastank
2
sanic-org/sanic
asyncio
2,748
Sanic crashed with KeyError: 'Sanic-Server-0-0' in `serve` function while was running normally
### Is there an existing issue for this? - [X] I have searched the existing issues ### Describe the bug Sanic function `serve` crashed at line `858` with the error message `Experienced exception while trying to serve`, while server was working normally before. Here is the full traceback: ``` Traceback (most r...
closed
2023-05-07T20:46:12Z
2023-05-08T12:46:08Z
https://github.com/sanic-org/sanic/issues/2748
[ "bug" ]
NikPaushkin
2
hyperspy/hyperspy
data-visualization
3,467
Please add support for Python 3.13
Hello, I just add a bug report in order to trace the Python 3.13 support. Python 3.13 is already part of Debian and will be the next default interpreter of trixie (Debian 13) Here a problem observed during the tests ``` removing build/bdist.linux-x86_64/wheel Successfully built hyperspy-0.0.0-py3-none-an...
closed
2024-11-19T14:19:38Z
2025-03-02T13:41:17Z
https://github.com/hyperspy/hyperspy/issues/3467
[ "type: bug" ]
picca
4
lk-geimfari/mimesis
pandas
1,177
Fail of query_string
``` ______________________ TestInternet.test_query_string[8] _______________________ self = <tests.test_providers.test_internet.TestInternet object at 0x7f6d503de0a0> net = <mimesis.providers.internet.Internet object at 0x7f6d503ded00>, length = 8 @pytest.mark.parametrize("length", [4, 6, 8, None]) de...
closed
2022-01-20T09:00:12Z
2022-01-25T20:31:23Z
https://github.com/lk-geimfari/mimesis/issues/1177
[ "bug" ]
lk-geimfari
0
seleniumbase/SeleniumBase
web-scraping
2,215
How to set options with the `driver` format inside the code? (Eg. --undetected)
can you tell how to set options eg --headed, --undetected inside code ,,i tried i couldn't solve this
closed
2023-10-28T10:07:31Z
2023-10-29T06:55:02Z
https://github.com/seleniumbase/SeleniumBase/issues/2215
[ "question", "UC Mode / CDP Mode" ]
Takundanashe
2
pytorch/pytorch
machine-learning
149,177
[Dist] Async op isend and irecv bug
### 🐛 Describe the bug ![Image](https://github.com/user-attachments/assets/f37b0180-bb40-4977-9a90-ee1243371994) I write a pp parallel framework for inference (for some reason, i can't post codes in the issue), and i found the time series is not correct, because of isend irecv behavior is a bit weird, just like the ...
open
2025-03-14T04:05:16Z
2025-03-20T09:26:25Z
https://github.com/pytorch/pytorch/issues/149177
[ "oncall: distributed", "module: c10d" ]
feifei-111
2
gee-community/geemap
jupyter
1,471
I cannot use geemap with my ArcGIS Pro
### What I did I was following your youtube GEE Tutorial 131, at 6:31, I typed the code in ArcGIS Pro ```python Map = geemap.Map() Map ``` ### What happened Then I had this message, and I could not open the map in ArcGIS Pro ```python To authorize access needed by Earth Engine, open the following URL...
closed
2023-03-19T04:52:33Z
2023-03-19T05:11:34Z
https://github.com/gee-community/geemap/issues/1471
[ "bug" ]
edmondcheng3021
3
tfranzel/drf-spectacular
rest-api
530
Provide self-hosting swagger UI/Redoc support
One of the convenient features that `drf-yasg` provided was [self hosting swagger-ui and redoc automatically in the wheel](https://github.com/axnsan12/drf-yasg/tree/master/src/drf_yasg/static/drf-yasg). For deployments on networks that do not have internet access, this made it a non-issue to make the swagger UI work ou...
closed
2021-09-19T23:45:41Z
2021-10-21T13:08:04Z
https://github.com/tfranzel/drf-spectacular/issues/530
[ "enhancement", "fix confirmation pending" ]
johnthagen
10
lepture/authlib
django
536
authorize_access_token not sending client_id and client_secret
**Describe the bug** The authorize_access_token method with the OAuth2.0 clients need to send `client_id` and `client_secret` to exchange the code for an access token. It is sending the `code`, `grant_type`, and `redirect_url` only. **Reproduce** Using https://rollup.id as the OAuth app provider and the flask ...
closed
2023-04-02T15:24:01Z
2023-06-09T23:39:06Z
https://github.com/lepture/authlib/issues/536
[ "bug" ]
4x4notfound
3
FactoryBoy/factory_boy
django
124
FuzzyDecimal should be called FuzzyFloat
It's confusing because python has both Float and Decimal types as do databases.
closed
2014-01-21T16:04:26Z
2014-01-22T21:47:51Z
https://github.com/FactoryBoy/factory_boy/issues/124
[ "Q&A" ]
savingschampion
2
strawberry-graphql/strawberry
fastapi
3,545
Using the ASGI app as a Starlette route throws typing errors
<!-- Provide a general summary of the bug in the title above. --> <!--- This template is entirely optional and can be removed, but is here to help both you and us. --> <!--- Anything on lines wrapped in comments like these will not show up in the final text. --> ## Describe the Bug <!-- A clear and concise de...
open
2024-06-21T13:52:51Z
2025-03-20T15:56:46Z
https://github.com/strawberry-graphql/strawberry/issues/3545
[ "bug" ]
parafoxia
7
plotly/jupyter-dash
dash
38
jupyter-dash R library
Hello, Is there a way to create an R library so that I could run r-Dash in jupyter lab? Thanks! Elze
open
2020-09-30T18:26:43Z
2020-09-30T18:26:43Z
https://github.com/plotly/jupyter-dash/issues/38
[]
elzerac
0
ultralytics/ultralytics
python
19,650
Writing a C-Interface for example: YOLOv8/YOLOv5 Inference C++
### 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 This may be the wrong place to ask but I'm trying to write a c wrapper, or i...
closed
2025-03-11T22:30:05Z
2025-03-13T04:18:00Z
https://github.com/ultralytics/ultralytics/issues/19650
[ "enhancement", "question", "detect" ]
BAMcGarvin
4
KaiyangZhou/deep-person-reid
computer-vision
47
HANN中可视化特征图方法求教
您好,感谢您的代码,对我这种刚入门的小白帮助很大 请问下像HANN等论文中可视化特征图一般用的是什么方法?
closed
2018-08-30T14:31:40Z
2018-09-03T18:12:22Z
https://github.com/KaiyangZhou/deep-person-reid/issues/47
[]
Bo396543018
2
ymcui/Chinese-LLaMA-Alpaca
nlp
606
全量pretrain脚本
### 提交前必须检查以下项目 - [X] 请确保使用的是仓库最新代码(git pull),一些问题已被解决和修复。 - [X] 由于相关依赖频繁更新,请确保按照[Wiki](https://github.com/ymcui/Chinese-LLaMA-Alpaca/wiki)中的相关步骤执行 - [X] 我已阅读[FAQ章节](https://github.com/ymcui/Chinese-LLaMA-Alpaca/wiki/常见问题)并且已在Issue中对问题进行了搜索,没有找到相似问题和解决方案 - [X] 第三方插件问题:例如[llama.cpp](https://github.com/ggerganov/llama.c...
closed
2023-06-15T14:04:29Z
2023-06-26T23:55:02Z
https://github.com/ymcui/Chinese-LLaMA-Alpaca/issues/606
[ "stale" ]
cristianoc20
4
huggingface/transformers
nlp
36,660
[FEAT] [non-CUDA]: Support alternative implementation for `constraints.positive_definite.check`
### Feature request Could there be an alternative implementation for ``` /usr/local/lib/python3.12/dist-packages/transformers/modeling_utils.py:2470: in _init_added_embeddings_weights_with_mean is_covariance_psd = constraints.positive_definite.check(epsilon * covariance).all() ``` the `torch.linalg.cholesky` only...
open
2025-03-12T09:38:30Z
2025-03-15T18:19:37Z
https://github.com/huggingface/transformers/issues/36660
[ "Feature request" ]
tjtanaa
10
laughingman7743/PyAthena
sqlalchemy
279
Creating tables with SQLAlchemy models supported?
The first issue I encountered: sqlalchemy.exc.CompileError: You need to specify the storage location for the table using the `awsathena_location` dialect keyword argument I was able to address this with something like: Base.metadata.tables['my_table'].dialect_options['awsathena']['location'] = location Ther...
closed
2022-02-15T22:57:09Z
2022-03-01T15:24:51Z
https://github.com/laughingman7743/PyAthena/issues/279
[]
ghost
23
HIT-SCIR/ltp
nlp
524
加载错误
Exception has occurred: ValueError unable to parse C:\Users\ma139/.cache\torch\ltp\ad382b14b05a2c95f3d034e1b6fd453ccec7d0e0c6444d1d2e7f2a20e783d51c-0315782f0f5abaeb286773e210d34d371ee7fb983c9c44f632229e18da24affa-extracted\tokenizer_config.json as a URL or as a local path File "H:\text-class-match\bilstm\ltp-test.p...
closed
2021-07-06T13:58:17Z
2022-08-20T11:10:39Z
https://github.com/HIT-SCIR/ltp/issues/524
[]
znsoftm
4
open-mmlab/mmdetection
pytorch
11,386
ModuleNotFoundError: No module named 'native_rasterizer'
控制台报错细节: Traceback (most recent call last): File "C:/PythonProject/e2ec_mmdet-master/demo/test.py", line 1, in <module> from mmdet.apis import init_detector, inference_detector File "C:\PythonProject\e2ec_mmdet-master\mmdet\apis\__init__.py", line 2, in <module> from .inference import (async_inference_...
closed
2024-01-16T13:52:10Z
2024-07-19T07:23:36Z
https://github.com/open-mmlab/mmdetection/issues/11386
[]
theRain0450
3
mljar/mercury
data-visualization
6
add option to change home view welcome message above notebooks gallery
Right now there is a h1 Welcome message at the top of the notebooks gallery. Please add an option to specify a custom message there. Ideally, it will be nice if Mercury admin can define a markdown file (for example `welcome.md`) with custom text that will be displayed above the notebooks gallery.
closed
2022-01-14T11:08:11Z
2022-01-26T17:47:32Z
https://github.com/mljar/mercury/issues/6
[]
pplonski
1
dask/dask
scikit-learn
11,197
Backend dispatch fails to re-raise BotoCoreError
**Describe the issue**: `dask.backends.CreationDispatch` fails to re-raise exceptions that don't take a positional argument. Such re-raising occurs here: https://github.com/dask/dask/blob/ff2488aec44d641696e0b7aa41ed9e995c710705/dask/backends.py#L139-L146 I encountered this issue when `dd.read_parquet` raised a ...
closed
2024-06-21T18:06:27Z
2024-07-03T15:09:01Z
https://github.com/dask/dask/issues/11197
[ "needs triage" ]
mdwint
1
sunscrapers/djoser
rest-api
372
The current path, accounts.html, didn't match any of these.
I'm trying to target the "/ account" page after login, but give the error: The current path, accounts.html, didn't match any of these. How can I solve? My Project Urls (Simplex) `from django.contrib import admin from django.urls import path, include from website.views import IndexTemplateView urlpatterns = ...
closed
2019-04-18T01:50:14Z
2019-05-24T09:29:42Z
https://github.com/sunscrapers/djoser/issues/372
[]
jbandeiira
1
STVIR/pysot
computer-vision
127
cropped youtube_bb
when do you can finished reload cropped youtube_bb? thanks
closed
2019-07-23T12:42:26Z
2019-07-25T08:34:51Z
https://github.com/STVIR/pysot/issues/127
[]
ghost
1
sktime/sktime
scikit-learn
7,973
TypeError while using RecursiveReductionForecaster class
I tried this code with hierarchical data structure, as follows: ``` test_size = 31 fh = np.arange(1, test_size + 1) df_train, df_test = temporal_train_test_split(df, test_size=test_size) model = Prophet( seasonality_mode="multiplicative", add_country_holidays={"country_name": "USA"}, daily_seasonality=True...
closed
2025-03-13T14:27:16Z
2025-03-14T02:44:33Z
https://github.com/sktime/sktime/issues/7973
[]
AsmaBaccouche
0
onnx/onnxmltools
scikit-learn
321
Convert LightGBM Failed due to split criteria "=="
Hi, I try to convert a lightgbm classifier to onnx using this tool, however, I'm getting some strange error on `unsupported splitting criterion`. I changed this file `C:\Users\jilli\AppData\Local\Continuum\anaconda3\lib\site-packages\onnxmltools\convert\lightgbm\operator_converters\LightGbm.py`, line 29, in _tran...
closed
2019-07-06T00:04:01Z
2019-08-21T09:59:50Z
https://github.com/onnx/onnxmltools/issues/321
[]
jilongliao
1
matplotlib/matplotlib
data-visualization
29,596
[Bug]: Position and BBox of mathtext are slightly offset from the expected ones and inconsistent with normal text
### Bug summary I first thank all Matplotlib developers and contributors again for maintaining the software! I would like to report a potential inconsistencies between normal text and math text; specifically: 1. Normal text and math text do not have the same bbox even for the essentially same string. 2. Math text s...
open
2025-02-09T13:34:59Z
2025-02-11T02:27:42Z
https://github.com/matplotlib/matplotlib/issues/29596
[ "topic: text/mathtext" ]
yuzie007
1
FactoryBoy/factory_boy
sqlalchemy
318
conditional SubFactory
I have two factories `FactoryV1` and `FactoryV2` and another factory `DefaultFactory` with attribute `version_dict`. I would like `version_dict` determined based on `api_version` as follows: ``` python class FactoryV1(Factory): class Meta: model = Version1 v1_x = None v1_y = None v1_z = N...
closed
2016-09-10T12:24:29Z
2016-09-13T08:58:38Z
https://github.com/FactoryBoy/factory_boy/issues/318
[ "Q&A" ]
vogxn
1
iperov/DeepFaceLive
machine-learning
89
No GPU option for Face Merger under linux
I have GPU options for everything else that I should except the Face Merger. <img width="390" alt="image" src="https://user-images.githubusercontent.com/759902/192625857-db32db12-77cb-4792-b90e-1d56b8e61ba4.png">
closed
2022-09-27T20:11:23Z
2022-10-03T14:52:31Z
https://github.com/iperov/DeepFaceLive/issues/89
[ "linux" ]
hcker2000
7
pytest-dev/pytest-qt
pytest
271
Is it possible to use qbot outside of pytest?
This is a question. I want to work out how to test the UI by interactively controlling it using qbot in a terminal. That is, I want to type code using qbot, see the app respond, and decide what to type next. In this way I think I can more easily create the code for test cases.
closed
2019-08-18T14:29:15Z
2019-08-19T13:02:01Z
https://github.com/pytest-dev/pytest-qt/issues/271
[ "question :question:" ]
jfemiani
1
microsoft/unilm
nlp
866
ValueError: 'layoutlmv3' is already used by a Transformers config, pick another name.
I'm trying to finetune the layoutlmv3 model following the instruction https://github.com/microsoft/unilm/tree/master/layoutlmv3. pop the following error message: **ValueError: 'layoutlmv3' is already used by a Transformers config, pick another name.** **below is the error stack:** python -m torch.distributed.la...
closed
2022-09-14T12:21:42Z
2022-11-03T16:37:32Z
https://github.com/microsoft/unilm/issues/866
[]
jack-gits
5
Miksus/rocketry
automation
89
Sub-second Timedelta?
Great project. I just switched an app over from Schedule. One question, and I may be asking Rocketry to do something not in its nature. Is there an option to use `Timedeltas` lower than one second? `ms` and `milliseconds` are in the source and parsing them doesn't seem to explode `Task` assignment. However, they don...
open
2022-08-31T20:35:00Z
2022-09-03T08:50:25Z
https://github.com/Miksus/rocketry/issues/89
[]
ferventgeek
8
QuivrHQ/quivr
api
2,721
[Feature] If no brain selected, create or use GPT4 brain
closed
2024-06-25T09:30:22Z
2024-08-08T08:27:43Z
https://github.com/QuivrHQ/quivr/issues/2721
[ "enhancement", "backend" ]
StanGirard
1
tensorflow/tensor2tensor
machine-learning
1,195
Weights not allowed to initialize in symbol modality
### Description Weights are unable to initialize for the symbol modality due to reuse being set to true in line 146 of modalities.py. Setting reuse to tf.AUTO_REUSE allows the weights to initialize which solves the problem. I see there are other locations within modalities.py where reuse is set to True rather than AUT...
closed
2018-11-01T14:27:28Z
2018-11-01T17:45:42Z
https://github.com/tensorflow/tensor2tensor/issues/1195
[]
mikeymezher
3
RobertCraigie/prisma-client-py
asyncio
335
How to help!
First off thank you for thinking of helping out the project! Any help, no matter how small is greatly appreciated. ## Voting There are some easy ways to show appreciation for this project: - Star the repository - Vote on Pull Requests to Awesome Lists - [Awesome Python](https://github.com/vinta/awesome-p...
open
2022-03-14T17:58:13Z
2023-01-21T18:42:02Z
https://github.com/RobertCraigie/prisma-client-py/issues/335
[ "kind/docs" ]
RobertCraigie
0
wkentaro/labelme
deep-learning
1,519
对环状多面体标注
I found that labelme could not label the annular polyhedron. For example, when I wanted to label the tire, I could only label the hub of the tire and the outer outline of the whole tire, and then deal with it myself. However, if I got the mask of the tire, I could not effectively convert it into the corresponding labe...
open
2024-12-08T05:31:30Z
2024-12-08T05:42:33Z
https://github.com/wkentaro/labelme/issues/1519
[]
wanghongfei833
1
automl/auto-sklearn
scikit-learn
1,122
install fails on Ubuntu when pip install ConfigSpace, when pip install auto-sklearn
When I pip install auto-sklearn (in virtual env), there may be an error when ConfigSpace is being pip installed, during (as documented): `curl https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt | xargs -n 1 -L 1 pip3 install` the error is something to the effect of "Python.h not found" ...
closed
2021-04-11T09:00:26Z
2021-04-13T07:45:28Z
https://github.com/automl/auto-sklearn/issues/1122
[]
stock90975
1
charlesq34/pointnet
tensorflow
48
about segmentation network
Hi! Thanks for sharing your nice works. I wonder why the segmentation network need to concatenate the one hot label with the pooling feature, will remove the encoded label decrease the performance? Thanks. @charlesq34
closed
2017-09-28T13:15:45Z
2021-04-21T10:28:52Z
https://github.com/charlesq34/pointnet/issues/48
[]
touristCheng
11
keras-team/keras
data-science
20,245
Question about Memory Leak (all backends)
There is an issue here in tf-keras about [memory leaks](https://github.com/keras-team/tf-keras/issues/286). There are [several workarounds](https://github.com/keras-team/keras/issues/5345), but the problem does not have a clear solution. I've gathered some observations: 1. Still happens in Keras 3 2. Happens ...
closed
2024-09-10T16:54:16Z
2024-09-11T17:11:24Z
https://github.com/keras-team/keras/issues/20245
[ "type:bug/performance" ]
newresu
7
Kludex/mangum
fastapi
275
Allow providing extra DEFAULT_TEXT_MIME_TYPES
**Issue**: I want to serve binary files as is (not base64 encoded) **Cause**: everything not in `DEFAULT_TEXT_MIME_TYPES` is base64 encoded by default **Proposed solution**: allow providing additional mime types; suggested options: - when declaring the handler `Mangum(app, extra_text_mime_types=["image/png"])` ...
closed
2022-09-25T22:06:24Z
2022-10-26T11:21:39Z
https://github.com/Kludex/mangum/issues/275
[ "improvement" ]
georgebv
3
sloria/TextBlob
nlp
116
new CoNLL corpus training
TextBlob's website says > ...and textblob.np_extractors.ConllExtractor, which uses the CoNLL 2000 corpus to train a tagger.` Is there currently a plan to update the ConllExtractor, e.g. train it using [conll2012](http://conll.cemantix.org/2012/data.html)?
open
2016-02-15T17:37:24Z
2016-02-15T17:37:24Z
https://github.com/sloria/TextBlob/issues/116
[]
kengz
0
holoviz/panel
jupyter
7,041
Tabulator header_filter formatting
I am creating a table containing a column of dates and other numerical data, and I would like to be able to filter the data by date using the "list" type. However, I cannot find a way to apply a bokeh DateFormatter to the generated dropdown when setting the header filter -- although the Tabulator class accepts "formatt...
open
2024-07-29T20:39:30Z
2025-01-20T19:18:53Z
https://github.com/holoviz/panel/issues/7041
[ "component: tabulator" ]
avbalsam
0
batuhaniskr/twitter-intelligence
web-scraping
10
0 tweet recived with date range
Hi¡ This tool works perfectly for me, but when i provide a specific date range, i´m getting always 0 tweet recived. Can this be due to the date format? Because i´m from Spain and our date format is d/m/y. Can you confirm this? Thx. ![captura](https://user-images.githubusercontent.com/42640149/47489963-081a8200...
closed
2018-10-25T09:21:01Z
2018-11-24T19:18:56Z
https://github.com/batuhaniskr/twitter-intelligence/issues/10
[]
bonkers96
1
allenai/allennlp
pytorch
5,463
Improving documentation, where to start?
Hi! I love AllenNLP json/jsonnet config training process, the amount of models and available functionalities! Unfortunately lacking documentation is in my opinion huge draw-back to understand and get into this library. I would love to help with documenting - I spent a lot of time understanding context from code itse...
closed
2021-11-11T15:34:24Z
2021-11-25T16:09:35Z
https://github.com/allenai/allennlp/issues/5463
[ "question", "stale" ]
KooTQ
2
public-apis/public-apis
api
3,776
!
Thanks for looking to open an issue for this project. If you are opening an issue to suggest adding a new entry, please consider opening a pull request instead!
closed
2024-02-28T06:26:07Z
2024-03-15T18:18:08Z
https://github.com/public-apis/public-apis/issues/3776
[]
rexa302
1
wkentaro/labelme
computer-vision
1,011
QT4 = QT_VERSION[0] == "4" I don't know how to make it work.
(Pytorch) G:\swin\Swin-Transformer-Object-Detection-master\data\instance_segmentation>python labelme2coco.py data_annotated data_dataset_coco --labels labels.txt Traceback (most recent call last): File "labelme2coco.py", line 16, in <module> import labelme File "C:\ProgramData\Anaconda3\envs\Pytorch\lib\sit...
closed
2022-04-24T09:12:52Z
2022-09-26T14:52:16Z
https://github.com/wkentaro/labelme/issues/1011
[]
JI4JUN
4
tqdm/tqdm
pandas
1,575
unable to set format for numbers with unit_scale
Hi, we've got the following bug report in Debian that I'd like to relay here (https://bugs.debian.org/1069702): ---snip--- I'm having trouble formatting numbers in progress bars when using unit_scale. Unfortunately, there doesn't seem to be a way to do this without overriding a lot of code. As shown in line...
open
2024-04-27T03:02:00Z
2024-04-27T03:02:00Z
https://github.com/tqdm/tqdm/issues/1575
[]
ghost
0
Urinx/WeixinBot
api
204
请问下绑定登陆(webwxpushloginurl)是不是已经不能用了?
现在都是返回{"ret":"1","msg":"args error"} 是不是这个接口现在不能用了?
open
2017-05-27T08:05:43Z
2018-04-03T15:31:53Z
https://github.com/Urinx/WeixinBot/issues/204
[]
yzchan
6
yzhao062/pyod
data-science
208
detecting the number of clusters
Hi recently, I noticed that there is some algorithms that automatically(?) detect the number of clusters like this, https://scikit-learn.org/stable/modules/clustering.html In practical(or industry(?)) the raw data maybe a clustered data but don't know how many cluster is exist. I think PyOD can update this? se...
open
2020-07-13T02:45:59Z
2020-07-13T02:48:00Z
https://github.com/yzhao062/pyod/issues/208
[]
NeighborhoodCoding
0
unit8co/darts
data-science
1,980
SHAP Time series force_plots.
It would be very nice to have a function or force_plot() parameter that allows the representatios of force_plots for a given time series (kind of ploting verticarly the force_plot for a given timestamp and stacking all those plots together). If it is already implemented, would you mind providing me with an example?
closed
2023-09-05T14:00:08Z
2024-01-21T15:28:10Z
https://github.com/unit8co/darts/issues/1980
[ "question" ]
nomadicsenseis
3
pytest-dev/pytest-xdist
pytest
260
Latest master failing on pytestmaster and pytestfeatures
For example: https://travis-ci.org/hugovk/pytest-xdist/builds/319594409 From https://github.com/pytest-dev/pytest-xdist/pull/259#issuecomment-353459821: > I suspect this is breaking because the output has changed and now includes the progress indicator in pytest-3.3, so the code which parses the output is not d...
closed
2017-12-22T10:58:19Z
2017-12-22T17:51:03Z
https://github.com/pytest-dev/pytest-xdist/issues/260
[]
hugovk
0
awtkns/fastapi-crudrouter
fastapi
66
Sqlalchemy adaptor error handling issue on "_create"
Hi, actually there is a need for a small development on **_create** as well(sqlalchemy.py). When inserting a row via post, I ended up with a different error message. I tried to insert a row into a table that have foreign key constraint on another table. The other table have no primary key value associated with row I tr...
closed
2021-04-24T08:22:32Z
2021-04-29T07:15:23Z
https://github.com/awtkns/fastapi-crudrouter/issues/66
[ "wontfix" ]
tunahan
3
pydantic/FastUI
pydantic
168
Support locked FormFields
Looks like `BaseFormField` was designed to support "locking"/"disabling" an input field: https://github.com/pydantic/FastUI/blob/cec25c61a7cc5a716d05d21039f95be3e8dac0e8/src/python-fastui/fastui/components/forms.py#L22 However, this is not working for me even after extending the `json_schema_field_to_field()` metho...
open
2024-01-30T00:13:51Z
2024-02-09T07:07:57Z
https://github.com/pydantic/FastUI/issues/168
[]
rgimen3z
1
google-deepmind/sonnet
tensorflow
75
What is the method to load a sonnet model in C++ for inference?
I just became aware of Sonnet and am considering using it for a project that I am working on, a program to play the card game Hearts using techniques inspired by AlphaGo. I need to be able to run prediction/inference in C++. I'm currently using TensorFlow's Estimator framework and the SavedModel interface which make...
closed
2018-01-01T18:54:11Z
2018-03-13T12:50:32Z
https://github.com/google-deepmind/sonnet/issues/75
[]
unitive-jim
1
plotly/dash
plotly
2,731
Improve react-docgen usage
Right now, component libraries need to include `react-docgen` specified as a devdep, and it's stuck on the 5.x series even though `react-docgen` itself is up to 7.x, because it's actually _used_ by `extract-meta.js` in this repo, via the `dash-generate-components` command. Can we either: - Use a version of `react-docg...
open
2024-01-24T14:35:58Z
2024-08-13T19:45:23Z
https://github.com/plotly/dash/issues/2731
[ "feature", "P3" ]
alexcjohnson
0
Avaiga/taipy
automation
2,191
[QUESTION] Implementation of a console which shows work progress from a FastAPI backend via websocket - slow
### What would you like to share or ask? Hello, i asked this question on discord and was recommended to post it here. I have a working solution but the UI updates very slowly so any recommendations on how to improve this implementation would be greatly appreciated. First, the two code files: # Taipy Frontend `...
open
2024-10-31T15:40:53Z
2024-12-16T16:37:07Z
https://github.com/Avaiga/taipy/issues/2191
[ "❓ Question", "🆘 Help wanted", "🟧 Priority: High", "Gui: Back-End" ]
dkersh
3
nolar/kopf
asyncio
1,101
Admission Controller Path
### Keywords mutating, webhook, validating ### Problem I have a simple mutate handler defined as below file.py ``` import logging import os import kopf logger = logging.getLogger(__name__) @kopf.on.mutate("notebooks") def mutate(spec, patch: kopf.Patch, **_,): .... @kopf.on.startup() def c...
closed
2024-02-02T22:02:06Z
2024-10-01T16:09:04Z
https://github.com/nolar/kopf/issues/1101
[ "question" ]
savemuri
1
csurfer/pyheat
matplotlib
4
pyheat command not found
After pip install pyheat, when I tried using it, I am getting this.
closed
2017-02-06T17:54:14Z
2017-02-25T15:03:36Z
https://github.com/csurfer/pyheat/issues/4
[ "bug" ]
bhaveshmunot1
6
yihong0618/running_page
data-visualization
80
garmin_sync.py 是否可以加个时间参数 ,导出指定时间的数据,默认导出当天的
目前好像默认导出所有数据。
closed
2021-01-26T02:12:47Z
2021-03-11T05:53:53Z
https://github.com/yihong0618/running_page/issues/80
[ "enhancement" ]
chinaphp
1
pnkraemer/tueplots
matplotlib
56
Figsizes for multiple rows
For plots with multiple rows, inferring the figure height by multiplying the default height with the number of rows, creates a rather skewed plot. IMO, the solution should be that each _subplot_ has the golden ratio as a height-width-ratio, and that the overall figure height is governed by the linewidth and this cr...
closed
2022-01-13T13:14:53Z
2022-01-13T13:57:10Z
https://github.com/pnkraemer/tueplots/issues/56
[]
pnkraemer
0
NullArray/AutoSploit
automation
1,248
Unhandled Exception (f54636619)
Autosploit version: `2.2.1` OS information: `Windows-8.1-6.3.9600` Running context: `C:\Users\Reel\Desktop\NEW_LAptop\app4\AutoSploit-master\autosploit.py` Error meesage: `psutil.AccessDenied (pid=308)` Error traceback: ``` File "C:\Users\Reel\Desktop\NEW_LAptop\app4\AutoSploit-master\autosploit\main.py", line 60, in...
closed
2020-02-14T21:20:38Z
2020-03-21T21:10:34Z
https://github.com/NullArray/AutoSploit/issues/1248
[]
AutosploitReporter
0
Lightning-AI/pytorch-lightning
deep-learning
20,604
PyTorchProfiler does not profile GPU
### Bug description Using PyTorchProfiler I don't get GPU profiling in Tensorboard view, the logs indicate that GPU is being used. ![Image](https://github.com/user-attachments/assets/8029e8b9-3689-49b4-9411-9de0fc2d8aca) ### What version are you seeing the problem on? v2.5 ### How to reproduce the bug ```python ...
open
2025-02-26T14:04:33Z
2025-03-24T16:10:02Z
https://github.com/Lightning-AI/pytorch-lightning/issues/20604
[ "bug", "needs triage", "ver: 2.5.x" ]
anguzo
1
dnouri/nolearn
scikit-learn
58
Loading nn from weights file, for prediction
Hi, Post fit()'ing, I save the best weights to file using ``` python net.save_weights_to(weights_file) ``` However, upon loading the weights back from the file into a net ``` python net_train = pickle.load(f) net.load_weights_from(net_train) net.predict() ``` predict()'ion fails with message ``` File "/Use...
closed
2015-03-08T09:48:01Z
2015-03-08T10:25:16Z
https://github.com/dnouri/nolearn/issues/58
[]
baskin
0
jina-ai/langchain-serve
fastapi
25
HTTP timeout in 60s
Hi all, as I am testing langchain-serve with a llama index in the back-end I noticed that, while locally works fine, once deployed (for the first run) the timeout is preventing the chain to work as expected. This has to do with the fact that it needs to create the indexes in the first place and this requires more t...
closed
2023-04-20T09:19:11Z
2023-05-11T11:13:48Z
https://github.com/jina-ai/langchain-serve/issues/25
[]
cyberandy
1
akanz1/klib
data-visualization
6
[BUG] - numpy overflow encountered in reduce
Thanks for sharing this package, I'm loving it! I did run into a bug today. When I try to run dist_plot on my dataset, I get the following message: <snip>\numpy\core\_methods.py:160: RuntimeWarning: overflow encountered in reduce I isolated it down to one particular series in my dataframe. It's not one I real...
closed
2021-03-08T08:47:23Z
2021-03-10T19:49:11Z
https://github.com/akanz1/klib/issues/6
[ "bug" ]
Zalfrin
6