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 sequencelengths 0 9 | user_login stringlengths 1 39 | comments_count int64 0 452 |
|---|---|---|---|---|---|---|---|---|---|---|---|
BlinkDL/RWKV-LM | pytorch | 127 | finetune for other languages? | how I can fine-tune for vietnamese for dialog chatbot ? Thanks guys | closed | 2023-05-25T08:48:41Z | 2023-06-07T16:56:20Z | https://github.com/BlinkDL/RWKV-LM/issues/127 | [] | batman-do | 3 |
pytorch/pytorch | deep-learning | 149,097 | Aten arange behavior when dtype is int64 and step size is greater than range | ### 🐛 Describe the bug
While testing corner cases on torch.arange, i see the following behavior when dtype is int64 and step size is greater than range.
On CPU, i get the following behavior for arange.
>> a = torch.arange(0, 0.5, 1, dtype=torch.int64)
>> a
tensor([], dtype=torch.int64)
>> a = torch.arange(0, 0.5, 1, ... | open | 2025-03-13T03:11:13Z | 2025-03-17T04:22:59Z | https://github.com/pytorch/pytorch/issues/149097 | [
"triaged",
"module: python frontend"
] | satheeshhab | 1 |
amdegroot/ssd.pytorch | computer-vision | 300 | I am training with my own data set, but the problem of loss is empty. | my pc
GTX1080Ti centos7 learnng rate 1e-5
Who has the same situation as me, please help me. thanks。
iter 310 || Loss: nan || timer: 0.1921 sec.
iter 320 || Loss: nan || timer: 0.2041 sec.
iter 330 || Loss: nan || timer: 0.2006 sec.
iter 340 || Loss: nan || timer: 0.2043 sec.
iter 350 || Loss: nan || timer: ... | open | 2019-03-07T14:23:59Z | 2019-06-28T08:50:30Z | https://github.com/amdegroot/ssd.pytorch/issues/300 | [] | dazhangzhang | 6 |
MycroftAI/mycroft-core | nlp | 2,600 | Ubuntu CLI commands | Hi, love that Mycroft is working on Kubuntu 18.10. I only had to fiddle with pulseaudio (restart?) to get the audio out working (although the audio test worked). I've been trying to get Voice Command to work for years, starting with WSP, Vocola and Dragonfly on Windows, but the Winapi and such calls are very limited an... | closed | 2020-05-31T16:54:53Z | 2020-06-07T22:12:24Z | https://github.com/MycroftAI/mycroft-core/issues/2600 | [] | auwsom | 13 |
dask/dask | numpy | 11,285 | BUG: `array.asarray` does not respect `dtype` arg | **Describe the issue**:
`dask.array.asarray` does not respect the `dtype` argument.
**Minimal Complete Verifiable Example**:
```python
>>> import numpy as np
>>> import dask.array as da
>>> Zm = da.asarray([[1, 2, 3]])
>>> Zm
dask.array<array, shape=(1, 3), dtype=int64, chunksize=(1, 3), chunktype=numpy.... | closed | 2024-08-08T12:12:01Z | 2024-08-12T14:46:21Z | https://github.com/dask/dask/issues/11285 | [
"array"
] | lucascolley | 1 |
matplotlib/matplotlib | data-visualization | 29,146 | [MNT]: Add Type Checking to Avoid AttributeError in Functions Handling Units | ### Summary
Currently, in unit-related example scripts , the code raises an AttributeError when numpy.float64 objects are used without being converted to objects with a convert_to method. This can create issues for users who attempt to pass Numpy float values directly, unaware that the function expects specific unit-h... | closed | 2024-11-15T21:18:07Z | 2025-01-04T18:08:48Z | https://github.com/matplotlib/matplotlib/issues/29146 | [
"status: needs clarification",
"Maintenance"
] | MehdiNemri | 3 |
pydantic/pydantic-core | pydantic | 1,462 | 2.24.0: not ready for `pyupgrade --py39-plus` (fails on linking DSO) | Next month python 3.8mwill be EOSed.
I've tested patch generated by `pyupgrade --py39-plus` and looks like with that patch build fails on linking with
```console
+ /usr/bin/python3 -sBm build -w --no-isolation
* Getting build dependencies for wheel...
* Building wheel...
Running `maturin pep517 build-wheel -i /us... | closed | 2024-09-21T18:23:39Z | 2024-10-22T13:24:07Z | https://github.com/pydantic/pydantic-core/issues/1462 | [] | kloczek | 5 |
igorbenav/fastcrud | pydantic | 60 | IN and NOT IN filter | Thanks for this awesome package.
**Is your feature request related to a problem? Please describe.**
It should be possible to filter records using the **IN** and **NOT IN** operators in the **get** and **get_multi** functions.
**Describe the solution you'd like**
```python
db_asset = await crud_users.get(
... | closed | 2024-04-24T17:36:27Z | 2024-05-07T03:16:35Z | https://github.com/igorbenav/fastcrud/issues/60 | [
"enhancement",
"FastCRUD Methods"
] | FCMHUB | 2 |
junyanz/pytorch-CycleGAN-and-pix2pix | pytorch | 724 | Stuck on "WARNING:root:Setting up a new session" | I downloaded the `facades` dataset. I then run `python train.py --dataroot ./datasets/facades --name facades_pix2pix --model pix2pix --direction BtoA`, but I'm stuck at `WARNING:root:Setting up a new session`
Even after a few hours, it says there and doesn't seem to progress. Why is this? | closed | 2019-08-06T04:45:16Z | 2019-09-21T22:33:10Z | https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/724 | [] | za13 | 1 |
MaartenGr/BERTopic | nlp | 2,211 | There are Chinese characters in my project, but after calling the visualize_document_datamap() method, the characters appear as garbled text. | ### Have you searched existing issues? 🔎
- [X] I have searched and found no existing issues
### Desribe the bug
fig = topic_model.visualize_document_datamap(
sentences,
topics=topics,
reduced_embeddings=reduced_embeddings,
#custom_labels=custom_labels,
title='文档和主题的分布',
sub_title='基于 ... | open | 2024-11-12T08:08:52Z | 2024-12-06T21:25:29Z | https://github.com/MaartenGr/BERTopic/issues/2211 | [
"bug"
] | superseanyoung | 4 |
jacobgil/pytorch-grad-cam | computer-vision | 18 | Support of Batch Input | Hi,
it appears that the original code did not directly support the batch input. I forked the repo and created some simple modification. (you may discard the part to load my own models)
https://github.com/CielAl/pytorch-grad-cam_batch/blob/master/grad_cam.py#L114
Hope this might be useful in case others try to a... | closed | 2019-03-31T08:07:54Z | 2021-05-01T17:38:05Z | https://github.com/jacobgil/pytorch-grad-cam/issues/18 | [] | CielAl | 4 |
brightmart/text_classification | tensorflow | 111 | a02的cnn_multiple_layers问题 | a02下的p7_TextCNN_model.py中多层CNN函数cnn_multiple_layers中,因为第一层conv的padding是SAME,卷积后会保持图的大小,因此输出的维度是[[batch_size, sequence_length, embedding_size, num_filters]],第二层卷积层开始时136行的reshape,最后一维写成1,会造成第一维变成batch_size*embedding_size,导致内存容易溢出,其实这里的reshape可以去掉的,修复这个问题之后,显存占用回到正常水平。
另外个人感觉,第一层没必要用SAME来padding,这里不像是图像,实际上横向是完整的词向量,pad... | closed | 2019-03-11T02:50:15Z | 2019-03-14T02:15:49Z | https://github.com/brightmart/text_classification/issues/111 | [] | snaillp | 1 |
Gozargah/Marzban | api | 893 | ای پی لیمیت | روشی نیست که ای پی لیمیت تعریف کنیم تو مرزبان ؟
دوتا اسکریپت هست ولی خیلی باگ داره سازندشم جواب گو نیست | closed | 2024-03-27T07:27:43Z | 2024-03-27T14:15:22Z | https://github.com/Gozargah/Marzban/issues/893 | [
"Duplicate",
"Invalid"
] | hossein2 | 1 |
harry0703/MoneyPrinterTurbo | automation | 586 | 老哥可以整合下支持本地sd生成图片? | ### 是否已存在类似的功能请求?
- [x] 我已搜索现有的功能请求
### 痛点
老哥可否把这个项目整合下 支持sd生成图片 https://github.com/Anning01/ComicTweets
### 建议的解决方案
老哥可否把这个项目整合下 支持sd生成图片 https://github.com/Anning01/ComicTweets
### 有用的资源
_No response_
### 其他信息
_No response_ | open | 2025-02-11T05:08:44Z | 2025-02-19T13:54:57Z | https://github.com/harry0703/MoneyPrinterTurbo/issues/586 | [
"enhancement"
] | Weststreet | 1 |
serengil/deepface | machine-learning | 739 | despite cuda drivers being installed, I'm seeing this issue | [2023-05-01 12:17:25 +0000] [8] [INFO] Booting worker with pid: 8
2023-05-01 12:17:26.167599: I tensorflow/core/util/port.cc:110] oneDNN custom operations are on. You may see slightly different numerical results due to floating-point round-off errors from different computation orders. To turn them off, set the environ... | closed | 2023-05-01T12:20:05Z | 2023-05-01T14:15:56Z | https://github.com/serengil/deepface/issues/739 | [
"dependencies"
] | ankit-g | 1 |
ploomber/ploomber | jupyter | 936 | improving the onboarding tutorial - your first pipeline | We want to improve the onboarding experience of the basic tutorials on binder.
## general observations
* the objective of the initial tutorial should be to convince people to give ploomber a try. the current version tries to teach them ploomber, we want to change that. our value proposition should be clear: ploom... | closed | 2022-07-23T03:54:32Z | 2022-08-18T12:00:28Z | https://github.com/ploomber/ploomber/issues/936 | [
"documentation",
"stash"
] | edublancas | 1 |
explosion/spaCy | data-science | 13,407 | Import broken python 3.9 |
## How to reproduce the behaviour
```import spacy```
## Your Environment
<!-- Include details of your environment. You can also type `python -m spacy info --markdown` and copy-paste the result here.-->
* Operating System: Windows 10.0.19045
* Python Version Used: 3.9.13
* spaCy Version Used: 3.7.4
```
T... | closed | 2024-04-04T03:27:58Z | 2024-04-04T08:43:54Z | https://github.com/explosion/spaCy/issues/13407 | [
"install"
] | SilverDew-sg | 1 |
AUTOMATIC1111/stable-diffusion-webui | pytorch | 15,526 | [Bug]: v1.9.0 GFPGAN and CodeFormer not work | ### Checklist
- [X] The issue exists after disabling all extensions
- [X] The issue exists on a clean installation of webui
- [ ] The issue is caused by an extension, but I believe it is caused by a bug in the webui
- [X] The issue exists in the current version of the webui
- [X] The issue has not been reported before... | open | 2024-04-15T13:13:48Z | 2024-06-21T20:15:57Z | https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/15526 | [
"bug-report"
] | PawAlldeller | 3 |
huggingface/datasets | tensorflow | 6,740 | Support for loading geotiff files as a part of the ImageFolder | ### Feature request
Request for adding rasterio support to load geotiff as a part of ImageFolder, instead of using PIL
### Motivation
As of now, there are many datasets in HuggingFace Hub which are predominantly focussed towards RemoteSensing or are from RemoteSensing. The current ImageFolder (if I have understood c... | closed | 2024-03-18T20:00:39Z | 2024-03-27T18:19:48Z | https://github.com/huggingface/datasets/issues/6740 | [
"enhancement"
] | sunny1401 | 0 |
tqdm/tqdm | pandas | 649 | tqdm_notebook bar malformed when bar_format is specified. | ### System Info
```sh
>>> import tqdm, sys
>>> print(tqdm.__version__, sys.version, sys.platform)
4.28.1 3.6.7 |Anaconda, Inc.| (default, Oct 23 2018, 14:01:38)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] darwin
```
### Issue:
With the bar format below, the progress bars are correctly ren... | closed | 2018-12-05T20:45:20Z | 2018-12-11T11:55:53Z | https://github.com/tqdm/tqdm/issues/649 | [
"duplicate 🗐",
"to-fix ⌛",
"p2-bug-warning ⚠",
"submodule-notebook 📓"
] | neerajprad | 4 |
oegedijk/explainerdashboard | plotly | 69 | random uuid with seed | Is there a reason why you are using UUIDs in the first place? Thinking you could just set seed and do randomization with numbers to get deterministic names.
E.g line 177 in dashboard_methods.py
` if not hasattr(self, "name") or self.name is None:
self.name = name or "uuid"+shortuuid.ShortUUID().... | closed | 2021-01-12T19:25:11Z | 2021-02-15T11:23:28Z | https://github.com/oegedijk/explainerdashboard/issues/69 | [] | oegedijk | 7 |
huggingface/transformers | machine-learning | 36,584 | Significant Increase in Computation Time When Using Attention Mask in SDPA Attention | ### System Info
`transformers` version: 4.46.3
- Platform: Linux-5.15.0-91-generic-x86_64-with-glibc2.10
- Python version: 3.8.18
- Huggingface_hub version: 0.25.2
- Safetensors version: 0.4.5
- Accelerate version: 1.0.1
- Accelerate config: - compute_environment: LOCAL_MACHINE
- distributed_type: DEEPSPEE... | closed | 2025-03-06T12:21:38Z | 2025-03-08T04:11:34Z | https://github.com/huggingface/transformers/issues/36584 | [
"bug"
] | tartarleft | 4 |
flasgger/flasgger | rest-api | 148 | How to set "Parameter content type" | I need to change "Parameter content type" from "application/json" to "text/plain" for a "body" type parameter.
How can I do it?
Thanks. | closed | 2017-08-16T12:16:35Z | 2018-05-25T16:34:54Z | https://github.com/flasgger/flasgger/issues/148 | [] | frizner | 1 |
lepture/authlib | django | 432 | TokenValidator.scope_insufficient seems wrong | There's been changes in [TokenValidator.scope_insufficient()](https://github.com/lepture/authlib/blob/1089d5441c8e780a5165ca859b289fc8485ec5eb/authlib/oauth2/rfc6749/resource_protector.py#L33) to support nested required scopes, but I think it introduces a bug.
```
>>> from authlib.oauth2.rfc6749.resource_protector ... | closed | 2022-02-24T17:40:45Z | 2022-03-02T08:01:25Z | https://github.com/lepture/authlib/issues/432 | [
"documentation"
] | abompard | 2 |
pydantic/logfire | fastapi | 408 | We're changing database | ## Rollout
We're gradually rolling out queries to the new database now. If you're affected, you'll see a banner like this:
<img width="770" alt="Screenshot 2024-09-18 at 14 42 24" src="https://github.com/user-attachments/assets/11990bfa-f669-4ca5-bf1a-45c8359da344">
**If you notice queries taking longer or ret... | closed | 2024-08-29T19:24:54Z | 2024-10-15T09:12:32Z | https://github.com/pydantic/logfire/issues/408 | [] | samuelcolvin | 5 |
strawberry-graphql/strawberry-django | graphql | 351 | how to create a single field filter? | I am trying to define a field on a type that can be filtered, the field only returns 1 object so no list.
my attempt is this:
```
chat: auto = strawberry_django.field(
field_name="chat_set",
filters=ChatFilter,
default_factory=lambda: None,
)
```
but it still returns a list, I w... | closed | 2023-08-28T23:10:31Z | 2025-03-20T15:57:18Z | https://github.com/strawberry-graphql/strawberry-django/issues/351 | [] | hyusetiawan | 4 |
OpenBB-finance/OpenBB | python | 6,840 | [🕹️]No-Code Side Quests Twitter thread | ### What side quest or challenge are you solving?
I have publish twitter thread
### Points
(🕹️ 150-500 Points)
### Description
_No response_
### Provide proof that you've completed the task
Thread Link is [here](https://x.com/adil_kadival/status/1848576037954982310)
| closed | 2024-10-22T09:06:29Z | 2024-10-24T09:18:17Z | https://github.com/OpenBB-finance/OpenBB/issues/6840 | [] | adilkadivala | 7 |
vitalik/django-ninja | django | 356 | DIFFERENT SCHEMA BASED ON API VERSION ON SWAGGER UI | I have two API versions but each with it's own schemas

The problem all schemas are displayed on both ends
How can I separate each schema to be displayed on the correct version
 fails | <!-- Please search existing issues to avoid creating duplicates. -->
### Environment Information
- geemap version: 0.11.0
- Python version: 3.7
- Operating System: On Google Colab
### Description
Hi, when trying to run datasets.get_ee_stac_list() it returns []
The URL https://earthengine-stac.st... | closed | 2022-01-18T11:05:51Z | 2022-01-19T05:14:33Z | https://github.com/gee-community/geemap/issues/873 | [
"bug"
] | adityachopra1 | 2 |
dask/dask | pandas | 11,394 | Discrepancy in column property with actual structure after grouping | **Describe the issue**:
After `groupby` and `reset_index`, DataFrame `columns` property have one column missing and one with an incorrect name, while computed DataFrame have proper structure.
**Minimal Complete Verifiable Example**:
```python
import pandas as pd
import dask.dataframe as dd
data = {
'i... | open | 2024-09-17T16:04:55Z | 2025-03-10T01:51:02Z | https://github.com/dask/dask/issues/11394 | [
"dataframe",
"needs attention"
] | dbalabka | 0 |
dmlc/gluon-cv | computer-vision | 998 | run demo_ssd.py gets error | ----------Python Info----------
Version : 3.5.6
Compiler : GCC 7.3.0
Build : ('default', 'Aug 26 2018 21:41:56')
Arch : ('64bit', '')
------------Pip Info-----------
Version : 10.0.1
Directory : /home/z440/miniconda3/envs/mxnet/lib/python3.5/site-packages/pip
----------MXNet Info... | closed | 2019-10-22T09:39:08Z | 2021-06-07T07:04:22Z | https://github.com/dmlc/gluon-cv/issues/998 | [
"Stale"
] | ghost | 2 |
google-research/bert | nlp | 558 | if we only use mask LM in training and disable the'next sentence', how should I modify the create_pretraining_data.py | in pre-training code, I figure out just disable the 'next sentence loss' code
| open | 2019-04-06T08:20:00Z | 2019-04-10T07:20:17Z | https://github.com/google-research/bert/issues/558 | [] | SeekPoint | 1 |
huggingface/transformers | python | 36,071 | modeling_phi3 errors with AttributeError: 'DynamicCache' object has no attribute 'get_max_length' | ### System Info
- `transformers` version: 4.49.0.dev0 (315a9f494e0e00d8652722ce950be590852a4727~1)
- Platform: Windows-10-10.0.20348-SP0
- Python version: 3.11.7
- Huggingface_hub version: 0.28.1
- Safetensors version: 0.5.2
- Accelerate version: 1.3.0
- Accelerate config: not found
- PyTorch version (GPU?): 2.6.0+... | open | 2025-02-06T16:50:38Z | 2025-03-20T16:54:58Z | https://github.com/huggingface/transformers/issues/36071 | [
"bug"
] | doctorpangloss | 11 |
yezz123/authx | pydantic | 251 | raise NotImplementedError in BaseDBBackend | ### First Check
- [X] I added a very descriptive title to this issue.
- [X] I already read and followed all the tutorial in the docs and didn't find an answer.
- [X] I already checked if it is not related to AuthX but to [Pydantic](https://github.com/samuelcolvin/pydantic).
- [X] I already checked if it is not related... | closed | 2022-07-01T15:33:17Z | 2023-03-06T09:31:11Z | https://github.com/yezz123/authx/issues/251 | [
"enhancement",
"question"
] | nickshanks347 | 2 |
ets-labs/python-dependency-injector | asyncio | 364 | feature request: provider for "self" | I would like a provider to be able to pass a container as an argument:
```python
class Container(containers.DeclarativeContainer):
foo = providers.Callable(calc_foo, containers.MarkerForContainer)
bar = providers.Object('hello')
container = Container()
container.override_providers(container=container)... | closed | 2021-01-19T10:05:35Z | 2021-02-09T13:17:00Z | https://github.com/ets-labs/python-dependency-injector/issues/364 | [
"feature"
] | shaunc | 9 |
graphql-python/flask-graphql | graphql | 32 | Is this project still mantained? | @syrusakbary thank you for this great project! I noticed that there have been a lot of commits since the last release, of which the last one was 6 months ago. Are you still planning on working on this project?
Best regards | closed | 2017-09-11T13:15:59Z | 2021-01-04T16:23:12Z | https://github.com/graphql-python/flask-graphql/issues/32 | [] | lucasrcosta | 9 |
koxudaxi/datamodel-code-generator | pydantic | 1,450 | Unique items should be allowed as list in Pydantic v2 | **Describe the bug**
When Pydantic v2 is used, i.e., `--output-model-type pydantic_v2.BaseModel`, any field tagged with unique items will always be created as set. Where it is understandable to use set to ensure unique items, there is a distinct difference between set and list. Some important ones are:
* Set does not... | closed | 2023-07-25T02:18:28Z | 2023-08-09T15:34:07Z | https://github.com/koxudaxi/datamodel-code-generator/issues/1450 | [
"bug"
] | xu-cheng | 4 |
biolab/orange3 | numpy | 6,719 | ROC Curve widget sets a wrong prior probability | With apologies to self for writing such a bad bug report: I have no time to properly explore it now, but I have to write this down lest I forget.
I encountered a situation (on Pima diabetes data) in which the ROC widget's target was set to 1, but the prior probability was that for class 0. I changed the target to 0 ... | closed | 2024-01-26T15:14:10Z | 2024-03-28T15:24:45Z | https://github.com/biolab/orange3/issues/6719 | [
"bug",
"snack"
] | janezd | 1 |
pyro-ppl/numpyro | numpy | 1,370 | Using dirichlet sampler directly in Dirichlet distribution | After https://github.com/google/jax/pull/9906, `jax.random.dirichlet` should be robust for small concentration, so we can remove the current trick that we put in the Dirichlet sampler. | closed | 2022-03-19T05:09:56Z | 2022-04-13T10:45:43Z | https://github.com/pyro-ppl/numpyro/issues/1370 | [
"enhancement"
] | fehiepsi | 1 |
comfyanonymous/ComfyUI | pytorch | 7,027 | Wan model is not working in MacOs if scheduler is `uni_pc` | ### Expected Behavior
A normal video output
### Actual Behavior
https://github.com/user-attachments/assets/66051ca7-ccd2-4fb9-a186-a9bf4e974772
### Steps to Reproduce
I was trying to use Wan 2.1 model in Comfy in my macbook pro (M2). And use the example workflow from [blog examples](https://huggingface.co/Comfy-O... | open | 2025-03-01T07:27:04Z | 2025-03-10T18:15:32Z | https://github.com/comfyanonymous/ComfyUI/issues/7027 | [
"Potential Bug"
] | edwin0cheng | 6 |
pyro-ppl/numpyro | numpy | 1,838 | `nuts.get_extra_fields()["num_steps"]=0` after warmup | I have the following piece of code:
``` python
nuts = MCMC(
NUTS(model_logreg),
num_warmup=2**13,
num_samples=2**10,
num_chains=2**5,
chain_method="vectorized",
)
nuts.warmup(jr.key(2), x_train, labels_train, extra_fields=("num_steps",))
warmup_steps = nuts.get_extra_fields()["num_steps"]
... | closed | 2024-07-26T12:39:07Z | 2024-08-05T22:55:42Z | https://github.com/pyro-ppl/numpyro/issues/1838 | [
"question"
] | andyElking | 4 |
roboflow/supervision | tensorflow | 1,022 | How to register detection in `PolygonZone` for any overlap | ### Search before asking
- [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar feature requests.
### Question
How can I register a detection inside a `PolygonZone` when there is any overlap? Without requiring the entire bounding box to be contained insid... | open | 2024-03-19T11:22:32Z | 2024-07-26T22:02:03Z | https://github.com/roboflow/supervision/issues/1022 | [
"question"
] | marcospgp | 4 |
piccolo-orm/piccolo | fastapi | 238 | Add `create` method | If you want to create an object and save it, the current approach is:
```python
band = Band(name="Pythonistas")
await band.save().run()
```
We can add a `create` method, which might be preferable for some people coming from other ORMs:
```python
band = await Band.objects().create(name="Pythonistas").run()
... | closed | 2021-09-16T15:09:00Z | 2021-09-20T21:05:39Z | https://github.com/piccolo-orm/piccolo/issues/238 | [
"enhancement"
] | dantownsend | 1 |
iMerica/dj-rest-auth | rest-api | 460 | Login immediately on register when using JWT HTTP only | Hi there,
Is there a way to have a user logged in immediately on register? I have set `ACCOUNT_EMAIL_VERIFICATION = 'optional'` and want the flow to have a user logged in once they register (then verify email at their convinience), but the register view doesn't set the JWT cookies so the user is still required to h... | open | 2022-12-09T12:50:54Z | 2022-12-09T12:50:54Z | https://github.com/iMerica/dj-rest-auth/issues/460 | [] | ainthateasy | 0 |
huggingface/datasets | pandas | 7,473 | Webdataset data format problem | ### Describe the bug
Please see https://huggingface.co/datasets/ejschwartz/idioms/discussions/1
Error code: FileFormatMismatchBetweenSplitsError
All three splits, train, test, and validation, use webdataset. But only the train split has more than one file. How can I force the other two splits to also be interpreted ... | closed | 2025-03-21T17:23:52Z | 2025-03-21T19:19:58Z | https://github.com/huggingface/datasets/issues/7473 | [] | edmcman | 1 |
Kanaries/pygwalker | matplotlib | 571 | [BUG] Param "dark" not work | `dark` does not work in the current version.
It's worked well in older versions. I didn't change my code and just run an old notebook.
I can only click the theme buttons to change the theme, and my choice won't be remembered.
Name: pygwalker
Version: 0.4.8.9
Python 3.9 Jupyter Lab | closed | 2024-06-07T08:50:01Z | 2024-06-07T12:53:03Z | https://github.com/Kanaries/pygwalker/issues/571 | [
"bug"
] | Erimus-Koo | 5 |
strawberry-graphql/strawberry | fastapi | 3,552 | export-schema does not include ENUM descriptions | <!--- Provide a general summary of the changes you want in the title above. -->
allow `strawberry export-schema` to use, say, first line of docstring (or full docstring) as a comment and store it as part of the `schema.graphql` file - for entities and for attributes.
<!--- This template is entirely optional and ... | closed | 2024-06-28T16:24:49Z | 2025-03-20T15:56:46Z | https://github.com/strawberry-graphql/strawberry/issues/3552 | [] | Casyfill | 1 |
HumanSignal/labelImg | deep-learning | 187 | Verify Image button has no icon | "Verify Image" button has no icon in the windows binaries v1.5.2
| closed | 2017-10-30T14:39:19Z | 2017-11-01T14:50:43Z | https://github.com/HumanSignal/labelImg/issues/187 | [] | jensdenbraber | 3 |
gunthercox/ChatterBot | machine-learning | 1,446 | Cannot view the data in actual postgresql | @gunthercox I have connected my chatterbot with postgresql. And it had trained the data that I have specified in the file. So after training, it had created the db **"jer"**.
Here's my code:
**bot = ChatBot(
"Terminal",
storage_adapter="chatterbot.storage.SQLStorageAdapter",
trainer='chatterbot.trainer... | closed | 2018-10-08T05:04:36Z | 2019-08-06T20:45:17Z | https://github.com/gunthercox/ChatterBot/issues/1446 | [] | Jereemi | 6 |
streamlit/streamlit | data-visualization | 10,747 | Add support for Jupyter widgets / ipywidgets | ### Checklist
- [x] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar feature requests.
- [x] I added a descriptive title and summary to this issue.
### Summary
Jupyter Widgets are [interactive browser controls](https://github.com/jupyter-widgets/ipywidgets/blob/main/do... | open | 2025-03-12T16:22:36Z | 2025-03-18T10:31:37Z | https://github.com/streamlit/streamlit/issues/10747 | [
"type:enhancement",
"feature:custom-components",
"type:possible-component"
] | lukasmasuch | 1 |
capitalone/DataProfiler | pandas | 1,156 | ModuleNotFoundError: No module named 'numpy.lib.histograms' | **General Information:**
- OS: Sonoma 14.5
- Python version: 3.9.10
- Library version: 0.12.0
**Describe the bug:**
When attempting to setup a Python virtual environment, I run `make setup` per this [Contribution](https://github.com/capitalone/DataProfiler/blob/main/.github/CONTRIBUTING.md) guideline. When th... | open | 2024-07-06T21:13:06Z | 2024-09-10T16:15:50Z | https://github.com/capitalone/DataProfiler/issues/1156 | [
"Bug"
] | alexjdean | 2 |
CorentinJ/Real-Time-Voice-Cloning | deep-learning | 357 | class ZoneoutLSTMCell(tf.nn.rnn_cell.RNNCell): AttributeError: module 'tensorflow.python.ops.nn' has no attribute 'rnn_cell' | class ZoneoutLSTMCell(tf.nn.rnn_cell.RNNCell):
AttributeError: module 'tensorflow.python.ops.nn' has no attribute 'rnn_cell' | closed | 2020-06-08T07:15:27Z | 2020-07-04T15:11:37Z | https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/357 | [] | wumingzhibei | 1 |
tensorlayer/TensorLayer | tensorflow | 900 | TensorLayer 2.0 | # NETWORK API REFACTORING - TO DO LIST
## [Design Docs](https://github.com/luomai/tensorlayer2-design/issues/7)
## [Refactoring Codes](https://github.com/zsdonghao/tensorlayer2)
Dear Contributors,
@DEKHTIARJonathan @akaraspt @luomai @lgarithm @JingqingZ @fangde etal.
As we discussed previously, TensorLayer... | closed | 2018-12-04T07:57:15Z | 2019-05-13T15:29:32Z | https://github.com/tensorlayer/TensorLayer/issues/900 | [
"help_wanted",
"discussion",
"refactoring"
] | zsdonghao | 5 |
zappa/Zappa | flask | 727 | [Migrated] Zappa Deploy FileExistsError | Originally from: https://github.com/Miserlou/Zappa/issues/1839 by [enotuniq](https://github.com/enotuniq)
I am very new to Zappa and AWS. I successfully installed zappa and managed to go through zappa init. However, when I try to deploy it with zappa deploy, I keep getting this error below.
I cleared the temp direc... | closed | 2021-02-20T12:41:16Z | 2024-04-13T18:14:40Z | https://github.com/zappa/Zappa/issues/727 | [
"no-activity",
"auto-closed"
] | jneves | 2 |
Lightning-AI/pytorch-lightning | pytorch | 19,940 | Custom batch selection for logging | ### Description & Motivation
Need to be able to select the same batch in every logging cycle. For generation pipelines similar to stable diffusion it is very hard to gauge the performance over training if we continue to choose random batches.
### Pitch
User should have selective ability to choose the batch to log wh... | open | 2024-06-04T10:29:40Z | 2024-06-08T11:03:18Z | https://github.com/Lightning-AI/pytorch-lightning/issues/19940 | [
"feature",
"needs triage"
] | bhosalems | 3 |
twopirllc/pandas-ta | pandas | 38 | VWAP indicator is calculating wrong vwap values for past days in dataframe | @twopirllc Thanks for creating this wonderful python module. I'm extensively using this module for my algos.
I found an issue with VWAP indicator when I ran it with my backtesting data. As per definition, VWAP should be calculated on daily data(Intraday).
Since, we pass series data, which contains past dates da... | closed | 2020-04-25T13:25:37Z | 2021-02-07T14:46:33Z | https://github.com/twopirllc/pandas-ta/issues/38 | [
"bug",
"enhancement"
] | codesutras | 11 |
Evil0ctal/Douyin_TikTok_Download_API | api | 338 | Reversing tiktok API. | I have question. Which endpoint I must reverse for find endpoint which used in your code?
Now this endpoint is not working, and you are not responding to issues, if I knew how to find a new endpoint, I would make a pull request.
How i can find the same endpoint but working? | closed | 2024-03-23T13:25:24Z | 2024-03-25T22:29:30Z | https://github.com/Evil0ctal/Douyin_TikTok_Download_API/issues/338 | [
"enhancement"
] | sheldygg | 10 |
gevent/gevent | asyncio | 2,026 | Why does gevent affect the asyncio usage of child thread? | * gevent version: 20.10.2
* Python version: cPython 3.9
* Operating System: macOS 14.3.1(M3)
### Description:
I use gevent patch for my program, but in the program, I need to execute asyncio related code in sub threads
When multiple sub threads execute the same coroutine, it triggers "RuntimeError: This event lo... | open | 2024-04-03T09:26:16Z | 2024-06-10T12:03:55Z | https://github.com/gevent/gevent/issues/2026 | [] | ssppest | 1 |
jwkvam/celluloid | matplotlib | 12 | Edges of plot disappear after first loop | I am using celluloid to plot a function over 17 years and i love it so far, it works great!
I have one small problem though, the edges of my plot disappear after the first loop. I have attached images of how this looks.
First loop:
 the view stays the same size although the window becomes bigger. After I move the cursor it becomes fullsize. It is weird as this only happens with pudb, not with other terminal programs ( I use ubuntu and i3 wm).
 and found no similar bug report.
### Bug
From [this comment](https://github.com/roboflow/supervision/issues/1038#issuecomment-2018147877), I understand supervision doesn't change channel order, an... | closed | 2024-07-22T23:13:29Z | 2024-08-06T07:24:25Z | https://github.com/roboflow/supervision/issues/1395 | [
"bug"
] | robmarkcole | 9 |
WZMIAOMIAO/deep-learning-for-image-processing | pytorch | 15 | VGGmodel structure | Hi, I am using the VGG model. I find the dense layers have 4096 neural cells online, but your code writes 2048 cells. | closed | 2020-04-01T10:46:46Z | 2020-04-01T13:06:13Z | https://github.com/WZMIAOMIAO/deep-learning-for-image-processing/issues/15 | [] | hobbitlzy | 2 |
darrenburns/posting | rest-api | 133 | Bearer Token Auth type support | I want to propose a Bearer Token auth type to `Auth` menu. Like Postman does:
<img width="1082" alt="Screenshot 2567-11-13 at 10 54 05" src="https://github.com/user-attachments/assets/3bf21341-8420-4c2c-9a27-1c7059484c54">
Currently, I work around this by manually setting the `Authorization` header in the' Heade... | closed | 2024-11-13T03:57:20Z | 2024-11-16T17:28:22Z | https://github.com/darrenburns/posting/issues/133 | [] | wingyplus | 0 |
nschloe/tikzplotlib | matplotlib | 298 | Table row sep argument not included in tikzpicture | The `row sep` is not included in the tikz picture.
How I save my figure:
```python
matplotlib2tikz.save(out, figure=fig, textsize=8, extra_axis_parameters=extra_axis_param, float_format="{:.5f}", table_row_sep=r"\\")
```
Results in:
```latex
\addplot [semithick, color0]
table{%
4.00000 0.00000\\5.00000 0.0... | closed | 2019-05-09T12:36:13Z | 2019-10-13T12:00:31Z | https://github.com/nschloe/tikzplotlib/issues/298 | [] | GillesC | 1 |
Zeyi-Lin/HivisionIDPhotos | machine-learning | 140 | API服务是否还需要 upload接口 | {StatusCode: 404, ReasonPhrase: 'Not Found', Version: 1.1, Content: System.Net.Http.HttpConnectionResponseContent, Headers:
{
Date: Tue, 17 Sep 2024 07:20:55 GMT
Server: uvicorn
Content-Length: 22
Content-Type: application/json
}}
直接调用/idphoto报错 404 | closed | 2024-09-17T07:22:04Z | 2024-09-17T07:58:03Z | https://github.com/Zeyi-Lin/HivisionIDPhotos/issues/140 | [] | liantanqing | 0 |
modoboa/modoboa | django | 3,038 | imap_migration generates traceback | # Impacted versions
* OS Type: Ubuntu
* OS Version: 22.04 LTS
* Database Type: MySQL
* Database version: 8
* Modoboa: 2.1.2
* installer used: Yes
* Webserver: Nginx
# Steps to reproduce
- have offlineimap installed and configured for a domain
- I double checked: all migrations are applied successfully
-... | closed | 2023-08-03T19:45:19Z | 2023-08-29T14:53:10Z | https://github.com/modoboa/modoboa/issues/3038 | [] | dorsax | 1 |
allure-framework/allure-python | pytest | 783 | allure 和 pytest.mark 不应该混淆 | [//]: # (
. Note: for support questions, please use Stackoverflow or Gitter**.
. This repository's issues are reserved for feature requests and bug reports.
.
. In case of any problems with Allure Jenkins plugin** please use the following repository
. to create an issue: https://github.com/jenkinsci/allure-plugi... | open | 2023-12-20T12:48:35Z | 2023-12-20T12:48:35Z | https://github.com/allure-framework/allure-python/issues/783 | [] | yanghuizhi | 0 |
onnx/onnx | machine-learning | 6,589 | TypeError: unsupported operand type(s) for //: 'NoneType' and 'int' | # Bug Report
### Describe the bug
I am trying to convert Nvidia NeMo's FilterbankFeaturesTA class to ONNX. Here is my code -
```
from nemo.collections.asr.parts.preprocessing.features import (
FilterbankFeatures,
FilterbankFeaturesTA,
make_seq_mask_like,
)
_model = FilterbankFeaturesTA(
... | closed | 2024-12-19T16:24:34Z | 2025-01-14T20:51:24Z | https://github.com/onnx/onnx/issues/6589 | [
"bug",
"topic: converters"
] | kabyanil | 1 |
LibreTranslate/LibreTranslate | api | 699 | How to achieve concurrency? | Multiple threads have been opened, and when concurrent, the result is empty. | closed | 2024-10-21T01:26:04Z | 2024-10-21T01:44:02Z | https://github.com/LibreTranslate/LibreTranslate/issues/699 | [
"possible bug"
] | junceo | 1 |
arogozhnikov/einops | tensorflow | 320 | [BUG] Basic code from documentation does not work | I tried both the codes described below from the [official docs](https://einops.rocks/api/repeat/) and it does not seem to work
```
# change it to RGB format by repeating in each channel
>>> repeat(image, 'h w -> h w c', c=3).shape
(30, 40, 3)
# repeat image 2 times along height (vertical axis)
>>> repeat(imag... | closed | 2024-05-11T09:35:25Z | 2024-09-15T14:39:12Z | https://github.com/arogozhnikov/einops/issues/320 | [] | vignesh99 | 1 |
onnx/onnx | machine-learning | 6,708 | Error when testing latest ONNX commit on ORT | # Ask a Question
### Question
<!-- Explain your question here. -->
It seems there are updates about `onnx::OpSchema` after 1.17 which would cause ORT build failure.
Is this expected?
```c++
...
/onnxruntime/onnxruntime/core/graph/contrib_ops/contrib_defs.cc: In function ‘void onnxruntime::contrib::RegisterContrib... | open | 2025-02-14T21:47:52Z | 2025-02-15T15:50:19Z | https://github.com/onnx/onnx/issues/6708 | [
"question"
] | yf711 | 1 |
dpgaspar/Flask-AppBuilder | flask | 1,451 | [Minor issue] [App Icon rendering] Using the macro navbar_block | Hello Team,
Thank you for this amazing Framework. Just to notify a minor issue that can be solved quicly (sorry for not using the usual issue template....)
The code inside the macro navbar_block have some missing html attributes compared to the navbar.html file
This is related to the app_icon rendering.
**... | open | 2020-08-17T15:03:14Z | 2020-08-26T07:17:55Z | https://github.com/dpgaspar/Flask-AppBuilder/issues/1451 | [
"bug",
"mvc"
] | pasqwal | 2 |
tflearn/tflearn | tensorflow | 806 | Why is tflearn.data_utils.shuffle() not used in all CIFAR-10 Examples? | In the **covnet_cifar10.py** and **network_in_network.py** examples the CIFAR-10 data is shuffled after its loaded using the `tflearn.data_utils.shuffle()` function:
`from tflearn.datasets import cifar10`
`(X, Y), (X_test, Y_test) = cifar10.load_data()`
`X, Y = shuffle(X, Y)`
However, in the **residual_network... | open | 2017-06-22T16:39:56Z | 2017-06-26T03:21:19Z | https://github.com/tflearn/tflearn/issues/806 | [] | rhammell | 1 |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 17