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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
ets-labs/python-dependency-injector | asyncio | 582 | Options pattern | Hello,
I'm a happy user of your package, it's awesome. I come from the .NET stack and find it very useful in Python.
I don't know if it is available or not in the package, but I miss a couple of things that I used a lot in .NET applications.
The first one is the possibility of loading configuration from a .js... | open | 2022-04-22T17:06:53Z | 2022-04-22T17:38:35Z | https://github.com/ets-labs/python-dependency-injector/issues/582 | [] | panicoenlaxbox | 1 |
kymatio/kymatio | numpy | 416 | Documentation is outdated | We should revise the whole documentation as well as examples.
- [x] `make html` is currently broken.
- [x] Examples run with the new backend.
- [ ] Documentation is consistent with the code.
- [ ] No links or references are broken.
- [ ] Automatic deployment on the website from the code (see #350).
- [x] Guidel... | closed | 2019-07-23T14:15:18Z | 2020-01-24T04:59:56Z | https://github.com/kymatio/kymatio/issues/416 | [
"enhancement",
"help wanted",
"high priority",
"doc"
] | edouardoyallon | 0 |
abhiTronix/vidgear | dash | 280 | [Proposal]: Add support for GStreamer pipeline in WriteGear's Non-Compression mode | <!--- Add a brief but descriptive title for your issue above -->
## Detailed Description
<!--- Provide a detailed description of the change or addition you are proposing -->
Add support for GStreamer pipeline as input string in WriteGear API's Non-Compression mode.
### Context
<!--- Why is this change im... | closed | 2022-02-07T16:51:09Z | 2022-02-10T16:25:32Z | https://github.com/abhiTronix/vidgear/issues/280 | [
"ENHANCEMENT :zap:",
"SOLVED :checkered_flag:",
"PROPOSAL :envelope_with_arrow:"
] | abhiTronix | 1 |
awesto/django-shop | django | 678 | dumpdata in sqlite. | I want dumpdata from sqlite. Data was loaded with DJANGO_SHOP_TUTORIAL=polymorphic
./dumpdata.sh
CommandError: Unable to serialize database: Value must be of type <enum 'CustomerState'>
| closed | 2017-11-02T04:23:07Z | 2017-11-02T15:36:15Z | https://github.com/awesto/django-shop/issues/678 | [] | inzem77 | 0 |
PokeAPI/pokeapi | api | 339 | Performance issues | Hi, I'm getting really slow response times on the API.
It seems to be really random, it takes between 200ms and sometimes over 60 seconds, for an average of about 3 seconds I would say.
I am aware that it is recommended to cache / host the data locally and I'm doing it for the most part but the only endpoint that I'm... | closed | 2018-05-29T20:45:17Z | 2022-11-12T20:13:10Z | https://github.com/PokeAPI/pokeapi/issues/339 | [] | hugo-dlb | 7 |
jumpserver/jumpserver | django | 14,972 | [Question] 无效的 Elasticsearch 配置 AWS OpenSearch | ### 产品版本
v3.10.17
### 版本类型
- [x] 社区版
- [ ] 企业版
- [ ] 企业试用版
### 安装方式
- [ ] 在线安装 (一键命令安装)
- [ ] 离线包安装
- [ ] All-in-One
- [ ] 1Panel
- [x] Kubernetes
- [ ] 源码安装
### 环境信息
配置的aws opensearch
### 🤔 问题描述
{"detail":"无效的 Elasticsearch 配置","code":"invalid_elasticsearch"}
<img width="1244" alt="Image" src="https://gith... | open | 2025-03-06T03:59:12Z | 2025-03-14T02:08:53Z | https://github.com/jumpserver/jumpserver/issues/14972 | [
"⏳ Pending feedback",
"🤔 Question"
] | BigbigY | 2 |
encode/apistar | api | 152 | Schema object type should handle variable set of fields | Given a possible JSON like the following:
```
{
"id": 'random-uuid-value',
"name": "Foo",
"extra_fields": {
"random_field_1": "random_value_1",
"random_field_2": "random_value_2"
}
}
```
We should be able to use the Schema support to define it something like:
```
class JsonBody(schema.Obje... | closed | 2017-05-15T15:05:57Z | 2018-03-19T13:58:11Z | https://github.com/encode/apistar/issues/152 | [] | kinabalu | 4 |
matterport/Mask_RCNN | tensorflow | 3,049 | Training time varies randomly without changing parameters | I am training a Keras Tensorflow ResNet50 model in my Nvidia RTX4090 GPU. I am using Python 3.10, TF 2.10 (I am using Windows), Keras 2.10, CUDA 12.5, CuDNN 8.9 and PyCharm as my interpreter. The model usually takes around 2 minutes per epoch. However, I have observed that sometimes, without changing any hiperparameter... | open | 2024-08-17T09:38:18Z | 2024-08-17T09:38:18Z | https://github.com/matterport/Mask_RCNN/issues/3049 | [] | Becerril42 | 0 |
pytest-dev/pytest-cov | pytest | 418 | How to programmatically disable coverage? | I'd like to be able to programmatically disable coverage tests based on some runtime condition. In particular, on Setuptools, when running tests against PyPy, enabling coverage is prohibitively expensive (~3x run time). I'd like to be able to enable coverage tests by default, but when PyPy is detected (probably in conf... | open | 2020-07-02T21:25:24Z | 2020-07-12T16:08:37Z | https://github.com/pytest-dev/pytest-cov/issues/418 | [] | jaraco | 4 |
joke2k/django-environ | django | 432 | hello, so here's a code | ```
# env read
env = environ.Env()
env.read_env(str(BASE_DIR / ".env"))
```
```
ALLOWED_HOSTS = env.list(
"DJANGO_ALLOWED_HOSTS",
default=["*"],
)
```
in .env file
`DJANGO_ALLOWED_HOSTS="127.0.0.1","localhost"`
with error
```
DisallowedHost at /
Invalid HTTP_HOST header: '127.0.0.1:8000'... | closed | 2023-01-08T07:29:39Z | 2023-01-24T02:27:04Z | https://github.com/joke2k/django-environ/issues/432 | [] | bal-sm | 1 |
axnsan12/drf-yasg | django | 870 | swagger_serializer_method does not work with partialmethod | # Bug Report
When attempting to use the `swagger_serializer_method` on a partial object generated with [`functool.partialmethod`](https://docs.python.org/3.10/library/functools.html?highlight=partial#functools.partialmethod) the `_swagger_serializer` is not kept in the final class method.
This prevents from gener... | open | 2023-10-17T10:05:36Z | 2025-03-07T12:09:07Z | https://github.com/axnsan12/drf-yasg/issues/870 | [
"triage"
] | sevdog | 0 |
microsoft/unilm | nlp | 980 | HTML tags used by MarkupLM | I am preprocessing HTML data for MarkupLM, could you please share or point out to a comprehensive list of HTML tags ( < div >, < h1 >, < h2 >, < span >, < li >, < a >, etc . ) that the model is capable of processing, so that I could filter the rest.
Best regards. | open | 2023-01-12T13:49:14Z | 2024-02-02T03:37:22Z | https://github.com/microsoft/unilm/issues/980 | [] | alejandrojcastaneira | 1 |
davidsandberg/facenet | computer-vision | 298 | ResourceExhaustedError | when i run the code
CUDA_VISIBLE_DEVICES=1 python src/train_softmax.py --logs_base_dir ~/logs/facenet/ --models_base_dir ~/models/facenet/ --data_dir ~/data/casia-align --image_size 160 --model_def models.inception_resnet_v1 --lfw_dir ~/data/lfw_mtcnnpy_160 --optimizer RMSPROP --learning_rate -1 --max_nrof_epochs 80 -... | closed | 2017-05-30T23:59:34Z | 2017-07-11T11:50:49Z | https://github.com/davidsandberg/facenet/issues/298 | [] | luckyboysmith | 9 |
wkentaro/labelme | computer-vision | 1,025 | How to describe the label | I want to add a description to the label | closed | 2022-05-25T11:58:18Z | 2022-06-25T04:17:41Z | https://github.com/wkentaro/labelme/issues/1025 | [] | lihangyang | 0 |
matplotlib/cheatsheets | matplotlib | 66 | Has GitHub Pages been activated for this repo? | The cheatsheets that are automatically built should be available [here](https://matplotlib.github.io/cheatsheets/cheatsheets.pdf), but I am getting a `404`. If GH Pages has not been activated for the repo, that could be the cause. There may also be a problem with the project pages and having a custom domain for the org... | closed | 2021-08-13T07:25:14Z | 2021-08-24T17:32:43Z | https://github.com/matplotlib/cheatsheets/issues/66 | [] | jimustafa | 4 |
plotly/dash | dash | 2,668 | Using relayoutData as input causes callback to be triggered on initial load even if prevent_initial_call=True | **Bug description**
Hello there, I am working on a dash app in which user changes to the relayoutData of a visual e.g. changing the zoom level should trigger a callback function and I want this callback to not be run on initial_load. However, it seems that using relayoutData as an input for my callback function result... | open | 2023-10-20T13:09:51Z | 2024-08-13T19:41:27Z | https://github.com/plotly/dash/issues/2668 | [
"bug",
"P3"
] | MisterSweety | 2 |
allenai/allennlp | data-science | 5,402 | Does Allennlp have support for LayoutLMv2 Transoformer? | [LayoutLMv2](https://huggingface.co/transformers/model_doc/layoutlmv2.html) is a visual-rich document understanding model in hugging face.
Is it compatible with Allennlp?
If not, please give me a direction in Allennlp design style. I would like to contribute. | closed | 2021-09-08T20:46:29Z | 2021-09-21T14:05:21Z | https://github.com/allenai/allennlp/issues/5402 | [
"question"
] | 12seetharaman | 4 |
graphql-python/graphene-sqlalchemy | sqlalchemy | 181 | 2nd example broken in docs | With this example here:
To create a GraphQL schema for it you simply have to write the following:
I had to add "import graphene" for this to not break. | closed | 2018-12-24T07:06:29Z | 2023-02-25T06:58:29Z | https://github.com/graphql-python/graphene-sqlalchemy/issues/181 | [
"bug"
] | jason-fer | 2 |
scrapy/scrapy | web-scraping | 5,878 | Scrapy docs: 'make htmlview' does not work | ### Description
`Path.resolve()` returns the `PosixPath` _class_ so it is not possible to concatenate it with a string.
```
webbrowser.open('file://' + Path('build/html/index.html').resolve())
```
### Steps to Reproduce
```
cd docs/
make html
make htmlview
```
**Expected behavior:**
`webbrows... | closed | 2023-03-28T03:22:04Z | 2023-03-29T08:06:09Z | https://github.com/scrapy/scrapy/issues/5878 | [
"bug",
"good first issue"
] | jxlil | 1 |
matterport/Mask_RCNN | tensorflow | 2,424 | Saving each masked region as separate png file | I know how to save the whole image along with mask visualization. But if I want to save each masked region of an image as separate png file, how to do it? | open | 2020-11-16T13:15:12Z | 2020-11-16T13:15:12Z | https://github.com/matterport/Mask_RCNN/issues/2424 | [] | preetom-saha-arko | 0 |
Evil0ctal/Douyin_TikTok_Download_API | web-scraping | 157 | [Feature request] 访问频繁403的问题 | **您的功能请求是否与问题相关? 如有,请描述。**
最近发现访问抖音api太频繁403错误,有思路吗,代理ip似乎作用不大
| closed | 2023-02-19T00:42:14Z | 2023-02-19T20:30:59Z | https://github.com/Evil0ctal/Douyin_TikTok_Download_API/issues/157 | [
"enhancement"
] | jw-star | 3 |
ivy-llc/ivy | numpy | 28,094 | Fix Frontend Failing Test: paddle - comparison_ops.torch.equal | To-do List: https://github.com/unifyai/ivy/issues/27500
| closed | 2024-01-28T10:58:45Z | 2024-01-29T13:07:38Z | https://github.com/ivy-llc/ivy/issues/28094 | [
"Sub Task"
] | Sai-Suraj-27 | 0 |
pytest-dev/pytest-xdist | pytest | 880 | xdist vs --last-failed at test-session-start banner | i noticed, that using `xdist` causes `--lf` banner do not show up. when calling my tests with `--lf` and without `-n` i can see eg:
```
============================= test session starts ==============================
platform linux -- Python 3.6.9, pytest-7.0.1, pluggy-1.0.0
cachedir: (...)
rootdir: (...)
plugin... | open | 2023-02-15T11:02:56Z | 2023-02-20T14:06:51Z | https://github.com/pytest-dev/pytest-xdist/issues/880 | [
"bug"
] | mulawamichal | 0 |
sanic-org/sanic | asyncio | 2,192 | Websocket handler ignores user exceptions | When a websocket handler throws an exception, the websocket is silently closed. Nothing is printed to the log.
Expected behavior is to print the exception to the log, as it is done for the normal HTTP request handlers.
Probably there should also be some translation to websocket error codes, if that is possible (I... | closed | 2021-07-10T22:47:30Z | 2021-12-28T06:56:09Z | https://github.com/sanic-org/sanic/issues/2192 | [
"needs investigation"
] | aha79 | 2 |
babysor/MockingBird | deep-learning | 292 | 纯小白,虚心求教几个问题 | 1.工具箱打开的音频文件应该选择什么?是任意音频还是别的?
2.训练了50k左右,polt图一直都是一条横线,并未呈现对角线趋势。
3.目录中wav里面生成的音频声音听起来类似无线电信号很差的那种感觉,但可以勉强辨别内容。
4.工具箱生成的声音则是完全一个音节从头到尾一直念,而且完全无法辨别,机械音严重
5.我拿来训练的素材大概有800条短句音频,都是纯单人人声的,是数量不够还是音频质量不行呢?
虚心求教,谢谢 | closed | 2021-12-25T00:25:04Z | 2022-01-03T12:19:40Z | https://github.com/babysor/MockingBird/issues/292 | [] | anyfdj | 2 |
tiangolo/uvicorn-gunicorn-fastapi-docker | pydantic | 99 | Base Image Dockerfile available ? | Is Dockerfile of image: tiangolo/uvicorn-gunicorn:python3.8 available? | closed | 2021-07-24T03:31:08Z | 2024-08-25T03:43:43Z | https://github.com/tiangolo/uvicorn-gunicorn-fastapi-docker/issues/99 | [] | anic1618 | 1 |
comfyanonymous/ComfyUI | pytorch | 6,649 | ComfyUI needs Nvidia GPU even specifying ROCm | ### Expected Behavior
Can run ComfyUI on Linux using StabilityMatrix interface for managing installations with an AMD GPU
### Actual Behavior
Updating to the latest one in StabilityMatrix UI now has caused all versions of the installation to not run because now it requires Nvidia GPU, even though I specified ROCm du... | open | 2025-01-30T16:19:37Z | 2025-03-24T19:09:00Z | https://github.com/comfyanonymous/ComfyUI/issues/6649 | [
"Potential Bug"
] | GregTheHun | 8 |
axnsan12/drf-yasg | django | 389 | Migrate away from abandoned coreapi/coreschema dependency | Hi there,
I've just noticed that this library depends on the `coreapi` which has been deprecated. What is the strategy going forward to work around this?
As per the `coreapi` github page:
```
DEPRECATION NOTICE: As of djangorestframework 3.9, the plan is to phase out CoreAPI in favor of OpenAPI as the default... | open | 2019-06-20T04:21:11Z | 2025-03-07T12:16:21Z | https://github.com/axnsan12/drf-yasg/issues/389 | [
"dependencies",
"triage"
] | ghost | 15 |
Anjok07/ultimatevocalremovergui | pytorch | 1,147 | ParameterError: "Audio buffer is not finite everywhere" | Last Error Received:
Process: VR Architecture
If this error persists, please contact the developers with the error details.
Raw Error Details:
ParameterError: "Audio buffer is not finite everywhere"
Traceback Error: "
File "UVR.py", line 6638, in process_start
File "separate.py", line 1066, in sepera... | open | 2024-02-04T10:02:57Z | 2024-02-04T10:02:57Z | https://github.com/Anjok07/ultimatevocalremovergui/issues/1147 | [] | Shambioz | 0 |
onnx/onnx | machine-learning | 6,094 | ONNX is broken when built with ONNX_USE_LITE_PROTO=OFF (using protobuf-24.4): File already exists in database: onnx/onnx-ml.proto | Failures are like:
1. https://github.com/onnx/optimizer/issues/38
2. https://github.com/pyg-team/pytorch_geometric/issues/9220
This appears tot be a long-standing problem, at least since 2021.
I just verified that building with ONNX_USE_LITE_PROTO=ON fixes the problem.
ONNX_USE_LITE_PROTO downloads prototbuf... | open | 2024-04-20T19:05:05Z | 2024-11-25T00:29:12Z | https://github.com/onnx/onnx/issues/6094 | [
"bug",
"topic: build",
"contributions welcome"
] | yurivict | 6 |
CorentinJ/Real-Time-Voice-Cloning | pytorch | 487 | Mixed precision training? | Pytorch 1.6 has native support for automatic mixed precision (AMP) training: https://pytorch.org/blog/pytorch-1.6-released/
Should we take advantage of this? In particular I think the larger batches would be nice for encoder and synthesizer training. | closed | 2020-08-12T21:00:44Z | 2021-11-15T07:02:37Z | https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/487 | [
"enhancement"
] | ghost | 6 |
PokeAPI/pokeapi | graphql | 754 | Hisuian Pokémon not in National Pokédex | <!--
Thanks for contributing to the PokéAPI project. To make sure we're effective, please check the following:
- Make sure your issue hasn't already been submitted on the issues tab. (It has search functionality!)
- If your issue is one of outdated API data, please note that we get our data from [veekun](https://g... | closed | 2022-09-25T13:22:58Z | 2022-09-26T07:32:54Z | https://github.com/PokeAPI/pokeapi/issues/754 | [] | simonorono | 1 |
pytest-dev/pytest-randomly | pytest | 647 | `-p no:randomly` causing tests to fail under Python 3.8 and 3.9 | ### Python Version
3.9.20
### pytest Version
8.3.2
### Package Version
3.15.0
### Description
As you can see in the following table, having `pytest-randomly` installed and using `-p no:randomly` results in failed tests but only under Python 3.8 and 3.9:
| | Python 3.8 / 3.9 | Python 3.10 / 3.11 / 3.12 |
|-----... | closed | 2024-09-14T09:35:09Z | 2024-10-25T15:45:13Z | https://github.com/pytest-dev/pytest-randomly/issues/647 | [] | alexandrul | 4 |
pytest-dev/pytest-django | pytest | 211 | How to test a custom decorator | Is it possible to test a custom decorator with pytest / pytest-django?
(If I can get pointed in the right direction, I'll gladly open a pull request to add to the docs)
| closed | 2015-02-25T04:27:29Z | 2015-03-29T08:53:11Z | https://github.com/pytest-dev/pytest-django/issues/211 | [] | g3rd | 2 |
vaexio/vaex | data-science | 1,247 | [BUG-REPORT] calculate mean and then increase memory | **Description**
The data I currently use is about 4GB, and what I want to do is use the minimum amount of memory.
I used the following code to calculate the average for each variable using vaex.
```
columns = ["a","b","c"]
mean_ = x.mean(columns)
```
When the above code is executed, memory is increased compared ... | closed | 2021-03-10T09:21:59Z | 2021-06-04T11:36:21Z | https://github.com/vaexio/vaex/issues/1247 | [] | sungreong | 2 |
mljar/mljar-supervised | scikit-learn | 552 | _calculate_permutation_scores() missing 1 required positional argument: 'max_samples'[URGENT] | I am getting this error while fitting Xgboost in Explain mode

| open | 2022-07-06T06:41:33Z | 2022-07-19T04:17:20Z | https://github.com/mljar/mljar-supervised/issues/552 | [
"bug",
"help wanted"
] | minakshimathpal | 1 |
widgetti/solara | flask | 772 | Accessing the localStorage of a browser | Does solara provide access to (read/write/modify) the browsers "localStorage" ?
Thanks | open | 2024-09-04T22:47:56Z | 2024-11-06T02:29:09Z | https://github.com/widgetti/solara/issues/772 | [] | JovanVeljanoski | 2 |
huggingface/transformers | pytorch | 36,410 | Conflicting Keras 3 mitigations | ### System Info
- `transformers` version: 4.49.0
- Platform: Linux-6.13.4-zen1-1-zen-x86_64-with-glibc2.41
- Python version: 3.13.2
- Huggingface_hub version: 0.29.1
- Safetensors version: 0.5.2
- Accelerate version: 1.4.0
- Accelerate config: not found
- DeepSpeed version: not installed
- PyTorch version (GPU?): 2.6... | closed | 2025-02-26T05:40:32Z | 2025-02-26T14:38:42Z | https://github.com/huggingface/transformers/issues/36410 | [
"bug"
] | mistersmee | 2 |
gee-community/geemap | streamlit | 1,831 | 135 segmentation - Exception during adding raster / shape file to Map | <!-- Please search existing issues to avoid creating duplicates. -->
### Environment Information
I use Google Colab (TPU)
### Description
Hello,
I tried to run step 135 of the tutorial - https://geemap.org/notebooks/135_segmentation on google colab.
The segmentation worked fine, but the steps of adding t... | closed | 2023-11-13T21:03:56Z | 2023-11-24T12:44:45Z | https://github.com/gee-community/geemap/issues/1831 | [
"bug"
] | FaranIdo | 4 |
apify/crawlee-python | web-scraping | 698 | Add a guide for deployment to AWS lambda | - just so that we do not forget, we have code from @tlinhart - thanks!
- https://crawlee.dev/python/docs/deployment | open | 2024-11-15T10:43:29Z | 2024-11-18T10:51:24Z | https://github.com/apify/crawlee-python/issues/698 | [
"documentation",
"t-tooling"
] | janbuchar | 2 |
apify/crawlee-python | automation | 509 | Templates should contain a `main.py` file used from `__main__.py` | This shall be more ergonomic and consistent with apify/actor-templates | closed | 2024-09-10T12:20:54Z | 2024-09-12T13:14:36Z | https://github.com/apify/crawlee-python/issues/509 | [
"enhancement",
"t-tooling"
] | janbuchar | 0 |
coqui-ai/TTS | deep-learning | 2,762 | [Bug] Tortoise-TTS doesn't work, maybe is unable to load config.json properly for the model | ### Describe the bug
Running under ubuntu 22, nvidia a5000, everything was properly installed, original tortoise implementation working from the box(weird lol) and is separated using conda. a relatively clean ubuntu installation.
### To Reproduce
run in python:
from TTS.api import TTS
tts = TTS("tts_models/e... | closed | 2023-07-10T22:13:35Z | 2023-07-24T09:28:55Z | https://github.com/coqui-ai/TTS/issues/2762 | [
"bug"
] | SanguineSatan | 3 |
Farama-Foundation/Gymnasium | api | 1,101 | [Bug Report] Missing requirement | ### Describe the bug
Hi,
I recently tried using Gymnasium and run the example:
```
import gymnasium as gym
env = gym.make("LunarLander-v3", render_mode="human")
observation, info = env.reset(seed=42)
for _ in range(1000):
action = env.action_space.sample() # this is where you would insert your policy
... | closed | 2024-06-29T19:38:28Z | 2024-06-29T19:40:02Z | https://github.com/Farama-Foundation/Gymnasium/issues/1101 | [
"bug"
] | deep-sci | 1 |
piskvorky/gensim | machine-learning | 3,422 | Gensim LdaMulticore can't work on cloud function | #### Problem description
I want to use gensim LDA module on cloud function, but it time out and show "/layers/google.python.pip/pip/lib/python3.8/site-packages/past/builtins/misc.py:45: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses".
B... | closed | 2023-01-06T10:07:11Z | 2023-01-10T08:56:55Z | https://github.com/piskvorky/gensim/issues/3422 | [] | tinac5519 | 2 |
sinaptik-ai/pandas-ai | pandas | 1,074 | "enforce_privacy": True seems not work? | ### System Info
OS version: win11
Python version: 3.10
The current version of pandasai being used: v2.0.23
### 🐛 Describe the bug
According to the doc:
` "enforce_privacy: whether to enforce privacy. Defaults to False. If set to True, PandasAI will not send any data to the LLM, but only the metadata. By defaul... | closed | 2024-03-29T16:01:57Z | 2024-04-02T15:54:22Z | https://github.com/sinaptik-ai/pandas-ai/issues/1074 | [
"bug"
] | gDanzel | 1 |
unit8co/darts | data-science | 2,139 | question: training the model to predict a single future step | **Is your feature request related to a current problem? Please describe.**
A clear and concise description of what the problem is.
Hi, i have a question, I was wondering how we would specify the training data or pass the data into model.fit() if we want to provide a sequence to predict a single step thats further o... | closed | 2023-12-31T01:20:05Z | 2024-02-29T14:02:14Z | https://github.com/unit8co/darts/issues/2139 | [
"triage"
] | zhoujs93 | 3 |
tflearn/tflearn | tensorflow | 561 | dynamic Rnn output | Hi, I am having an issue with dynamic rnn when having multiple stages. If I explained more considering following network configuration,
net = tflearn.input_data(shape=[None, time_step, 42],name='input')
net=tflearn.bidirectional_rnn(net,BasicLSTMCell(64),BasicLSTMCell(64),return_seq=False,dynamic=True)
net = tflea... | open | 2017-01-13T09:14:38Z | 2017-01-13T09:14:38Z | https://github.com/tflearn/tflearn/issues/561 | [] | Rithmax | 0 |
iterative/dvc | data-science | 10,589 | repro: strange runs caching | # Bug Report
<!--
## Issue name
Issue names must follow the pattern `command: description` where the command is the dvc command that you are trying to run. The description should describe the consequence of the bug.
Example: `repro: doesn't detect input changes`
-->
## Description
<!--
A clear and concise descript... | closed | 2024-10-17T17:41:07Z | 2024-10-18T18:48:26Z | https://github.com/iterative/dvc/issues/10589 | [
"awaiting response",
"triage",
"A: run-cache"
] | ermolaev94 | 4 |
mirumee/ariadne | graphql | 63 | "snapshottest" is missing from requirements-dev | closed | 2018-11-19T19:20:35Z | 2018-11-20T10:48:29Z | https://github.com/mirumee/ariadne/issues/63 | [
"bug",
"help wanted"
] | rafalp | 0 | |
deepfakes/faceswap | deep-learning | 634 | The program has not been changed,but i cannot train the model at the beginning,on ubuntu1604. | **### ISSURE 1:**
According to the requirements.txt, some package can be installed, and the environment is:
cuda 9.0
cudnn 7.0.5
tensorflow-gpu 1.12
python 3.6
python faceswap.py train -A ~/faceswap/data/trump -B ~/faceswap/data/cage -m ~/faceswap/models/
Traceback (most recent call last):
File "faceswap.p... | closed | 2019-02-28T01:41:26Z | 2019-02-28T10:42:12Z | https://github.com/deepfakes/faceswap/issues/634 | [] | changyunke | 4 |
deepspeedai/DeepSpeed | deep-learning | 5,801 | How to silence warning when import deepseed without change the source code? | 
I just don't want to print the warning and infos. | closed | 2024-07-25T07:21:48Z | 2024-08-29T18:11:17Z | https://github.com/deepspeedai/DeepSpeed/issues/5801 | [
"enhancement"
] | sean-wade | 2 |
frol/flask-restplus-server-example | rest-api | 69 | Nested path for PATCH operations ? | imagine I have a profile linked to my user and I want to expose only one route (/users/) to patch the twos, is it actually possible ?
Seems like the actual implementation isn't compatible ? is it ?
I created two tuples and merged them with :
PATH_CHOICES = USER_CHOICES (as /%s) + PROFILE_CHOICES (as /profil... | open | 2017-09-20T17:26:18Z | 2017-12-19T20:11:37Z | https://github.com/frol/flask-restplus-server-example/issues/69 | [
"enhancement",
"help wanted"
] | askz | 2 |
uxlfoundation/scikit-learn-intelex | scikit-learn | 1,712 | n_iters_ in SVR is always saved as 10,000 | **Describe the bug**
The n_iter_ that is saved seems to be constant 10000
**To Reproduce**
import numpy as np
from sklearnex import patch_sklearn
patch_sklearn()
from sklearn.svm import SVR
svr = SVR()
X = np.random.randn(100, 5)
y = np.mean(X, axis=1)
svr.fit(X, y)
print('svr.n_iter_: ', svr.n_iter_)
... | open | 2024-02-14T11:01:11Z | 2024-02-15T20:10:01Z | https://github.com/uxlfoundation/scikit-learn-intelex/issues/1712 | [
"bug"
] | caspimoshe | 3 |
keras-team/keras | python | 20,273 | Error: ValueError: Cannot get result() since the metric has not yet been built during model.fit() | ### 1. **Title:**
**Error: ValueError: Cannot get result() since the metric has not yet been built during model.fit()**
### 2. **Description:**
## Summary
I encountered a `ValueError: Cannot get result() since the metric has not yet been built` when trying to train my model using `model.fit()`. This happens in th... | closed | 2024-09-20T02:47:20Z | 2024-10-02T06:27:00Z | https://github.com/keras-team/keras/issues/20273 | [
"stat:awaiting response from contributor",
"type:Bug"
] | rohitcodism | 6 |
google/seq2seq | tensorflow | 227 | what is number of units in attention parameters? | Is it the size of the vector that we multiply the encoder input. | open | 2017-05-18T11:18:08Z | 2017-05-18T11:18:08Z | https://github.com/google/seq2seq/issues/227 | [] | shamanez | 0 |
iperov/DeepFaceLab | deep-learning | 5,596 | DFL merged to MP4 issue | Hi,
When a try to merge to MP4 I got this text in red:
Pipe:end of file
16GB RAM, 64GB pagefile, RTX 3060Ti 8GB
How can I fox this?
THX for help!
[16] Bitrate of output file in MB/s :
16
ffmpeg version 4.2.1 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 9.1.1 (GCC) 20190807
configurat... | open | 2022-12-09T13:08:42Z | 2023-07-01T10:27:11Z | https://github.com/iperov/DeepFaceLab/issues/5596 | [] | RazoR2k2 | 3 |
sktime/sktime | data-science | 7,937 | [DOC] for estimators documented in two modules across versions of `sktime`, changing between versions of the docs leads to 404 | #### Describe the issue linked to the documentation
`ExpandingWindowSplitter` used to be under `sktime.forecasting` but has been moved to `sktime.split`. However the documentation for old versions of the package is still up under `forecasting`. When you try to access the latest version of the code from the `forecastin... | open | 2025-03-03T18:17:28Z | 2025-03-03T18:27:33Z | https://github.com/sktime/sktime/issues/7937 | [
"good first issue",
"documentation"
] | gbilleyPeco | 1 |
noirbizarre/flask-restplus | flask | 376 | abort function can not support unicode error message | when I abort unicode error message as below:
`
abort(400, u'没有找到有该包装材料需求的任务!')
`
will got below exception:
`
site-packages\\flask_r
estplus\\errors.py", line 32, in abort\n kwargs['message'] = str(message)\nUnicodeEncodeError: 'a
scii' codec can't encode characters in position 0-14: ordinal not in range(... | open | 2018-01-05T01:01:33Z | 2018-01-05T01:01:33Z | https://github.com/noirbizarre/flask-restplus/issues/376 | [] | maplye | 0 |
SALib/SALib | numpy | 610 | How to handle dependant variables? | How to handle parameters that are dependent on each other, such as sand, silt, and clay fractions where the sum must equal 1, and their bounds are [0,1]? | open | 2024-03-15T08:16:02Z | 2024-03-26T01:11:35Z | https://github.com/SALib/SALib/issues/610 | [
"question"
] | Daniel-Trung-Nguyen | 1 |
qubvel-org/segmentation_models.pytorch | computer-vision | 54 | How to handle the multispectral image (NOT RGB image)? | I have multispectral image dataset (each image has eight channels) and want to feed them into the pretrained unet. In this case, how to modify the network so that the initialization of the first layer from the pretrained weight can be ignored. Otherwise, there will have error for the first layer's initialization due to... | closed | 2019-09-05T22:36:40Z | 2019-12-03T20:18:49Z | https://github.com/qubvel-org/segmentation_models.pytorch/issues/54 | [] | yifaliu | 5 |
dpgaspar/Flask-AppBuilder | rest-api | 1,646 | Using Appbuilder with my custom html | This is the forms.py
class ListItems(Form):
display = RadioField(Label="hellp", choices=[('value', 'description'), ('value_two', 'whatever')])
This is the List_items.html
{% extends "appbuilder/base.html" %}
{% block content %}
<h3>{{param1}}</h3>
<form method="post">
{{form.display}}
<inp... | closed | 2021-05-30T03:26:12Z | 2022-04-17T16:24:32Z | https://github.com/dpgaspar/Flask-AppBuilder/issues/1646 | [
"stale"
] | pintest2000 | 1 |
Esri/arcgis-python-api | jupyter | 2,223 | export_to_html does not include the render from smart_mapping | **Describe the bug**
map.export_to_html does not include the render from smart_mapping
**To Reproduce**
Steps to reproduce the behavior:
```python
m = gis.map("New York")
m.content.add(poi_layer)
renderer_manager = m.content.renderer(0)
smart_mapping_manager = renderer_manager.smart_mapping()
smart_mapping_manager.h... | closed | 2025-02-15T06:50:26Z | 2025-02-19T03:19:23Z | https://github.com/Esri/arcgis-python-api/issues/2223 | [
"As-Designed"
] | wilschoo | 4 |
AutoGPTQ/AutoGPTQ | nlp | 633 | [BUG] GPTQ Kernels dont work with PEFT | ### **Expected Behavior**
Converging loss curves for all AutoGPTQ Quantized Linear Kernels
### **Description**
#### CUDA, EXLLAMA, MARLIN do not work
The loss curves for Cuda/Exllama kernels do not converge and the Marlin loss goes to zero mid-training.
<img src="https://github.com/AutoGPTQ/AutoGPTQ/assets... | open | 2024-04-05T08:44:51Z | 2024-04-23T19:14:28Z | https://github.com/AutoGPTQ/AutoGPTQ/issues/633 | [
"bug"
] | achew010 | 0 |
pytorch/vision | computer-vision | 8,051 | CPU unit tests are failing in vision nightly builds | ### 🐛 Describe the bug
HUD: https://hud.pytorch.org/hud/pytorch/vision/nightly/1?per_page=50&name_filter=tests%20%2F%20unittests
Looks like the same issue across platforms:
```
2023-10-16T11:57:47.9045908Z [31mFAILED[0m test/test_utils.py::[1mtest_draw_boxes[0m - AssertionError: Tensor-likes are not equal!
... | closed | 2023-10-17T20:41:16Z | 2023-10-18T17:16:45Z | https://github.com/pytorch/vision/issues/8051 | [
"dependency issue"
] | izaitsevfb | 5 |
iterative/dvc | data-science | 10,097 | Delete datasets that have been pulled locally so that sensitive data sets can be cleaned up easily | In an open-source project I am working on: [Automatic Classifiers for Peace](https://gitlab.com/automatic-classifiers-for-peace/acfp) we have used dvc to manage shared data in the project.
This shared data can contain sensitive information and I would like a simple way (hopefully using dvc) to remove all the data s... | closed | 2023-11-16T11:11:53Z | 2023-12-01T13:57:47Z | https://github.com/iterative/dvc/issues/10097 | [] | benjamincerigo | 2 |
hbldh/bleak | asyncio | 1,461 | First Read of a Secure Characteristic After Pairing Wrongfully Updates Other Secure Characteristics | * bleak version: 0.21.1
* Python version: 3.12.0
* Operating System: Windows 10
* BlueZ version (`bluetoothctl -v`) in case of Linux:
### Description
I have multiple secure characteristics in different services that require authentication (pairing) to read. Upon connecting to my device for the first time and p... | open | 2023-11-17T21:45:59Z | 2024-05-01T00:00:04Z | https://github.com/hbldh/bleak/issues/1461 | [
"Backend: WinRT",
"more info required"
] | mdiehl23 | 1 |
python-gino/gino | asyncio | 279 | TupleLoader callable only once | * GINO version: 0.7.4
* Python version: 3.6
* asyncpg version: 0.16.0
* aiocontextvars version: 0.1.2
* PostgreSQL version: 10.3
### Description
Hi, are the loaders supposed to be used only once? Because in the `TupleLoader`, the `loaders` attribute is a `generator` and therefore on the second (, third, etc) ... | closed | 2018-07-26T10:26:32Z | 2018-07-26T11:48:21Z | https://github.com/python-gino/gino/issues/279 | [
"bug"
] | p4l1ly | 2 |
qubvel-org/segmentation_models.pytorch | computer-vision | 371 | Testing on a Single Image | Hi @qubvel!
I have been using SMP for image segmentation on MRI images of the human brain. I used the UnetPlusPlus model to train and that worked perfectly. Further, I was also able to test the same on the validation dataset. But what I want to do, is to test on a single image and to further visualize the image.
**... | closed | 2021-03-24T07:52:50Z | 2022-03-02T01:58:44Z | https://github.com/qubvel-org/segmentation_models.pytorch/issues/371 | [
"Stale"
] | Prabhav55221 | 4 |
adbar/trafilatura | web-scraping | 240 | Use a different delimiter for user agent setting | Hi! First of all, thank you for your amazing work. This is a great library!
I was trying to have a list of multiple user strings in order to rotate between them. However, user strings can actually contain the character `,` such as the user string: "`Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.1... | closed | 2022-09-03T17:26:00Z | 2022-09-05T14:47:35Z | https://github.com/adbar/trafilatura/issues/240 | [] | k-sareen | 2 |
MaartenGr/BERTopic | nlp | 1,412 | TypeError: 'numpy.float64' object cannot be interpreted as an integer | Hey! I had the problem mentioned in this [thread](https://github.com/MaartenGr/BERTopic/issues/1411), but after the update the problem was solved. Another one appeared, I get this error:
```
TypeError Traceback (most recent call last)
[/usr/local/lib/python3.10/dist-packages/bertopi... | open | 2023-07-17T19:50:48Z | 2024-01-30T13:25:52Z | https://github.com/MaartenGr/BERTopic/issues/1412 | [] | Cezary-Kuik | 19 |
microsoft/MMdnn | tensorflow | 116 | Has CNTK TO IR been available? | I need convert a CNTK model to Caffe model, so I try to convert CNTK to IR first. But when I run
" python -m mmdnn.conversion._script.convertToIR --srcFramework cntk --network ... --dstPath ...", there is an error:
Cntk Parser has not supported operator [Convolution2D] with name [Block2107].
Layer: <cntk.ops.f... | closed | 2018-03-19T12:28:28Z | 2018-03-22T06:44:41Z | https://github.com/microsoft/MMdnn/issues/116 | [] | xbgydxlq | 3 |
biolab/orange3 | data-visualization | 6,657 | Documentation for Table.from_list | <!--
This is an issue template. Please fill in the relevant details in the
sections below.
Wrap code and verbatim terminal window output into triple backticks, see:
https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code
If you're raising an issue about an add-on (e.g. installed via
... | closed | 2023-11-27T13:08:41Z | 2023-11-27T13:21:44Z | https://github.com/biolab/orange3/issues/6657 | [] | dhilst | 0 |
assafelovic/gpt-researcher | automation | 1,293 | FEATURE REQUEST: Build Open-WebUI tool / integration | **Is your feature request related to a problem? Please describe.**
Open-WebUI is evolving incredibly rapidly and immensely popular. There are attempts to build deep research tools but these are buggy.
**Describe the solution you'd like**
It seems relatively easy to build a tool in Open-WebUI using the GPTR PIP library... | open | 2025-03-23T11:15:59Z | 2025-03-23T11:15:59Z | https://github.com/assafelovic/gpt-researcher/issues/1293 | [] | ga-it | 0 |
tox-dev/tox | automation | 2,710 | `tox p` does not limit the number of parallel jobs by default | ## Issue
`tox p` does not appear to limit the number of parallel jobs it runs. When I run `tox p` inside its own source tree, my system's load average jumps to 29 and my desktop becomes hard to use. (I have 8 logical CPUs on this laptop.)
## Environment
Provide at least:
- OS: Ubuntu 21.10
- `pip list` o... | closed | 2022-12-14T10:20:05Z | 2022-12-14T13:59:16Z | https://github.com/tox-dev/tox/issues/2710 | [] | mgedmin | 1 |
FlareSolverr/FlareSolverr | api | 1,449 | Flaresolverr not working after upgrading to 21 from 17 | ### 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 | 2025-02-21T22:45:16Z | 2025-02-22T04:11:48Z | https://github.com/FlareSolverr/FlareSolverr/issues/1449 | [
"duplicate"
] | krumpirko8888 | 0 |
microsoft/nni | pytorch | 5,404 | Wrong happend in yolox pruning | **Describe the issue**:
load yolox model:
```
name = "yolox-s"
exp = get_exp(None, name)
model = exp.get_model()
model.to(device)
```
config_list:
```
config_list = [{
'sparsity': 0.5,
'op_types':['Conv2d'],
}]
```
compress:
```
pruner = L1NormPruner(model, config_list)
_, mask... | open | 2023-02-27T09:48:11Z | 2023-08-03T12:52:27Z | https://github.com/microsoft/nni/issues/5404 | [] | Sugar929 | 3 |
frol/flask-restplus-server-example | rest-api | 137 | How Can I Disable OAuth2 Module? | hi everyone, i want provide some public API , ex: only some query API, i don't need OAuth2 , how can i do? | closed | 2019-07-25T07:43:39Z | 2019-07-31T03:16:07Z | https://github.com/frol/flask-restplus-server-example/issues/137 | [
"question",
"auth"
] | kingkisskill | 2 |
streamlit/streamlit | python | 10,043 | st.file_uploder **Error : "AxiosError: Request failed with status code 400"** | ### Checklist
- [X] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar issues.
- [X] I added a very descriptive title to this issue.
- [X] I have provided sufficient information below to help reproduce this issue.
### Summary
**Isuse:**
We are encountering an issue wi... | closed | 2024-12-18T10:07:02Z | 2024-12-18T12:53:43Z | https://github.com/streamlit/streamlit/issues/10043 | [
"type:enhancement",
"feature:st.file_uploader",
"status:duplicate"
] | bhargavanubavam | 3 |
encode/uvicorn | asyncio | 1,317 | OSError occurs when workers > 1 | ### Checklist
- [X] The bug is reproducible against the latest release or `master`.
- [X] There are no similar issues or pull requests to fix it yet.
### Describe the bug
This bug outputs an error similar to [#529](https://github.com/encode/uvicorn/issues/529) but occurs on different parameters of uvicorn. It occurs... | closed | 2022-01-10T16:34:32Z | 2022-06-22T08:04:44Z | https://github.com/encode/uvicorn/issues/1317 | [
"bug",
"help wanted",
"windows"
] | mnghiap | 4 |
OpenInterpreter/open-interpreter | python | 951 | Continuous Chat | ### Is your feature request related to a problem? Please describe.
When i hit the context window limit, i get an error, saying ive gone over the token limit.
### Describe the solution you'd like
I would like to see different modes for continuing the chat, without having to restart, one could be, summarizing the chat... | closed | 2024-01-20T07:07:57Z | 2024-03-20T22:43:21Z | https://github.com/OpenInterpreter/open-interpreter/issues/951 | [
"Enhancement"
] | JamesClarke7283 | 1 |
nvbn/thefuck | python | 971 | First call fails with "nothing found", second succeeds (same command) | <!-- If you have any issue with The Fuck, sorry about that, but we will do what we
can to fix that. Actually, maybe we already have, so first thing to do is to
update The Fuck and see if the bug is still there. -->
<!-- If it is (sorry again), check if the problem has not already been reported and
if not, just op... | closed | 2019-10-10T16:05:36Z | 2021-08-08T12:22:48Z | https://github.com/nvbn/thefuck/issues/971 | [] | riley-martine | 1 |
xonsh/xonsh | data-science | 5,105 | Move to ruff from flake8/isort | 1. Move to https://github.com/charliermarsh/ruff
2. Add xonsh to "Ruff is extremely actively developed and used in major open-source projects like:"
## For community
⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment**
| closed | 2023-03-25T19:49:23Z | 2023-04-21T02:52:01Z | https://github.com/xonsh/xonsh/issues/5105 | [
"development"
] | anki-code | 0 |
httpie/cli | python | 576 | httpie refuses to trust a self-signed certificate | I don't entirely understand the discussion for issue #480 but I think the root cause may be the same for this issue. I need httpie to trust a self-signed certificate. Technically it is a self-signed intermediate certificate authority, but I can use one of the actual server certificates from that authority and get the s... | open | 2017-04-25T16:30:25Z | 2025-01-19T03:10:24Z | https://github.com/httpie/cli/issues/576 | [] | sensibleish | 13 |
pydantic/pydantic-ai | pydantic | 913 | PydanticAI Roadmap | People having been asking for a while for a roadmap for PydanticAI, here goes.
For the most part, I'll drink the GitHub cool ade and add the issues that represent our ordered priorities using the new sub-issue feature.
In terms of timeline, I'm terrible at predicting how long things will take, so I'm not going to dar... | open | 2025-02-12T20:33:19Z | 2025-03-13T10:44:35Z | https://github.com/pydantic/pydantic-ai/issues/913 | [
"meta"
] | samuelcolvin | 6 |
Anjok07/ultimatevocalremovergui | pytorch | 761 | error in uvr5 | Last Error Received:
Process: MDX-Net
If this error persists, please contact the developers with the error details.
Raw Error Details:
ValueError: "Input signal length=0 is too small to resample from 48000->44100"
Traceback Error: "
File "UVR.py", line 4719, in process_start
File "separate.py", line ... | open | 2023-08-24T18:21:31Z | 2023-09-14T14:00:57Z | https://github.com/Anjok07/ultimatevocalremovergui/issues/761 | [] | notzouhair | 1 |
biolab/orange3 | scikit-learn | 6,184 | No text mining button in Orange program in order to import documents. | <!--
Thanks for taking the time to report a bug!
If you're raising an issue about an add-on (i.e., installed via Options > Add-ons), raise an issue in the relevant add-on's issue tracker instead. See: https://github.com/biolab?q=orange3
To fix the bug, we need to be able to reproduce it. Please answer the following... | closed | 2022-10-26T17:21:43Z | 2023-01-10T10:53:27Z | https://github.com/biolab/orange3/issues/6184 | [
"bug report"
] | oliviadelucci | 2 |
tortoise/tortoise-orm | asyncio | 1,260 | Keyset pagination? | Is this type of comparison possible with tortoise query builder?
`("price", "id") < ($1, $2)` | open | 2022-09-21T16:41:14Z | 2022-09-21T16:41:14Z | https://github.com/tortoise/tortoise-orm/issues/1260 | [] | shivangrathore | 0 |
KaiyangZhou/deep-person-reid | computer-vision | 373 | I change the config loss to triplet loss,but it occurs a error | ** The following layers are discarded due to unmatched keys or layer size: ['classifier.weight', 'classifier.bias']
Model complexity: params=2,193,616 flops=978,878,352
Building triplet-engine for image-reid
=> Start training
* Only train ['classifier'] (epoch: 1/10)
Traceback (most recent call last):
File "scr... | closed | 2020-09-11T03:35:21Z | 2020-09-14T09:35:59Z | https://github.com/KaiyangZhou/deep-person-reid/issues/373 | [] | zhangting1994 | 4 |
Ehco1996/django-sspanel | django | 56 | 默认加密协议更改问题 | 更改线路加密以及协议后,新注册的用户协议无法变更,配置文件已修改默认协议字段。 | closed | 2017-12-28T13:39:16Z | 2017-12-28T13:45:53Z | https://github.com/Ehco1996/django-sspanel/issues/56 | [] | yokiy0828 | 0 |
dropbox/PyHive | sqlalchemy | 263 | Is there a straight way to get metadata of a Hive table | I means not only the column - type - comment information, but also the other attributes of a Hive table, like LOCATION, OUTPUTFORMAT, TBLPROPERTIES, PARTITIONED BY and so on.
Thanks a lot. | open | 2019-01-09T03:08:52Z | 2019-03-05T13:14:30Z | https://github.com/dropbox/PyHive/issues/263 | [] | tinylambda | 2 |
lepture/authlib | django | 94 | Typo in 'flask.client.oauth.RemoteApp' token property | Hi - I'm _pretty_ sure I found a bug while debugging #81.
The `flask.client.oauth.RemoteApp.token` property setter and getter are tying to access a different path:
https://github.com/lepture/authlib/blob/617b1178aae8c2c1050ee8078e1d04e6907efebd/authlib/flask/client/oauth.py#L189-L205
Notice the `attr` being diff... | closed | 2018-10-05T00:10:57Z | 2018-10-07T09:54:36Z | https://github.com/lepture/authlib/issues/94 | [] | pawelad | 0 |
tfranzel/drf-spectacular | rest-api | 444 | Behaviour regarding ENUM_NAME_OVERRIDES | I was wondering for ENUM_NAME_OVERRIDES, I am overriding two enums names that point to two distinct enums, but have the same number of elements. For example, they may both be 0, 1, 2 and 0, 1, 2, although defined separately. It seems in the API spec, only the second of the two are showing up, and all references to eith... | closed | 2021-06-29T22:18:04Z | 2021-07-04T13:12:26Z | https://github.com/tfranzel/drf-spectacular/issues/444 | [] | li-darren | 0 |
davidsandberg/facenet | tensorflow | 352 | No module named 'facenet' | I try to run Validate on LFW in windows, but failed until I reaching 4th step in [Validate on LFW docment](https://github.com/davidsandberg/facenet/wiki/Validate-on-lfw) .
My steps are as follows,
1. Install dependencies (TensorFlow 1.1.0, Python 3.5),
2. Download the LFW dataset
3. Setenv
 and [discussions](https://github.com/orgs/ultralytics/discussions) and found no similar questions.
### Question
Hello Ultralytics team,
I’m encountering an issue when saving my custom tra... | open | 2025-02-16T15:10:30Z | 2025-02-16T22:54:02Z | https://github.com/ultralytics/ultralytics/issues/19268 | [
"question",
"detect"
] | Rahma-art | 8 |
Gozargah/Marzban | api | 1,672 | API bug in methods "reset" | After resetting the user's traffic usage via methods "Reset user data usage", "Reset users data usage" and "Reset admin usage", his status changes to active regardless of his current status.
This is unpredictable behavior because the documentation does not say so, and also if a user has a disabled status, then resetti... | closed | 2025-02-20T20:35:01Z | 2025-02-23T10:51:37Z | https://github.com/Gozargah/Marzban/issues/1672 | [] | P1nk-L0rD | 3 |
OWASP/Nettacker | automation | 275 | Error running maltego transforms | The steps give in maltego usage in the documentation is followed but the command:
`canari create-profile nettacker_transforms -w {ABSOLUTE PATH OF DIRECTORY}/OWASP-Nettacker/lib/transactions/maltego/nettacker_transforms/src`
Giving this error:
```
Loading Canari configuration file '/home/am4n/.canari/canari.conf'... | closed | 2020-05-21T04:44:28Z | 2021-09-09T20:58:30Z | https://github.com/OWASP/Nettacker/issues/275 | [] | aman566 | 1 |
sinaptik-ai/pandas-ai | pandas | 1,495 | Why do I encounter the following error message when using an Agent for machine learning predictions, as shown in the image? | 
| closed | 2024-12-30T08:22:57Z | 2024-12-31T09:33:54Z | https://github.com/sinaptik-ai/pandas-ai/issues/1495 | [] | Alan-zhong | 3 |
supabase/supabase-py | fastapi | 967 | Cannot insert a Decimal | # Bug report
<!--
⚠️ We receive a lot of bug reports which have already been solved or discussed. If you are looking for help, please try these first:
- Docs: https://docs.supabase.com
- Discussions: https://github.com/supabase/supabase/discussions
- Discord: https://discord.supabase.com
Before opening a... | closed | 2024-10-16T21:00:03Z | 2024-10-20T23:34:56Z | https://github.com/supabase/supabase-py/issues/967 | [
"bug"
] | rdong8 | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.