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 | 146 | Change name of version variable to make it follow PEP8 | According to the PEP8, ```VERSION``` should be changed to ```__version__```. | closed | 2016-12-04T11:15:18Z | 2016-12-04T11:26:38Z | https://github.com/ets-labs/python-dependency-injector/issues/146 | [
"enhancement",
"docs"
] | rmk135 | 0 |
python-restx/flask-restx | flask | 340 | Would like to have major versions pinned of important packages to avoid breaking changes | **Is your feature request related to a problem? Please describe.**
The problem is that we had version 0.3.0 of this library for our Python microservices and it suddenly broke without any changes. This has been fixed in the version 0.4.0 release, but it would be better if we could adhere to SW best practices (semantic ... | open | 2021-06-15T13:55:34Z | 2021-06-15T13:55:34Z | https://github.com/python-restx/flask-restx/issues/340 | [
"enhancement"
] | gro1m | 0 |
ymcui/Chinese-LLaMA-Alpaca | nlp | 172 | 🔥能否提供训练自定义数据的教程和代码 | * 感谢作者的分享,可以看到从原始的llama训练得到支持中文的模型,其过程还是比较复杂的,希望可以出个详细的训练教程。
* 此外更希望提供一个教程,可以在你的中文模型基础上,针对某个领域的数据(如医疗、法律等)进行训练,从而得到在这个领域更专业的“专属”模型
| closed | 2023-04-18T03:27:21Z | 2023-05-10T00:52:45Z | https://github.com/ymcui/Chinese-LLaMA-Alpaca/issues/172 | [] | yfq512 | 6 |
PaddlePaddle/PaddleHub | nlp | 1,569 | 安装paddle-hub报错 | Traceback (most recent call last):
File "/usr/local/python3.7.0/bin/hub", line 5, in <module>
from paddlehub.commands.utils import execute
File "/usr/local/python3.7.0/lib/python3.7/site-packages/paddlehub/__init__.py", line 35, in <module>
from paddlehub.utils.paddlex import download, ResourceNotFoundE... | open | 2021-08-12T11:19:03Z | 2021-08-13T02:55:26Z | https://github.com/PaddlePaddle/PaddleHub/issues/1569 | [
"installation"
] | huangcao008 | 1 |
nvbn/thefuck | python | 728 | `fuck` should suggest specific heroku apps when there are multiple | Here's an example of current behavior, as of https://github.com/nvbn/thefuck/commit/8fb5ddefb60c59f8bd90a72698c1a384f1433c5e:
```
$ heroku pg
▸ Multiple apps in git remotes
▸ Usage: --remote heroku-dev
▸ or: --app myapp-dev
▸ Your local git repository has more than 1 app referenced in git remote... | closed | 2017-11-06T23:27:41Z | 2017-11-09T23:42:24Z | https://github.com/nvbn/thefuck/issues/728 | [] | josephfrazier | 0 |
scikit-learn/scikit-learn | python | 30,921 | Persistent UserWarning about KMeans Memory Leak on Windows Despite Applying Suggested Fixes | ### Describe the bug
Issue Description
When running code involving GaussianMixture (or KMeans), a UserWarning about a known memory leak on Windows with MKL is raised, even after implementing the suggested workaround (OMP_NUM_THREADS=1 or 2). The warning persists across multiple environments and configurations, indicat... | open | 2025-03-01T19:34:29Z | 2025-03-04T16:07:02Z | https://github.com/scikit-learn/scikit-learn/issues/30921 | [
"Bug",
"Needs Info"
] | rahimHub | 1 |
graphdeco-inria/gaussian-splatting | computer-vision | 540 | A perhaps great, perhaps stupid idea: more than one ideas to extract mesh from GS. | 1. add regulirization items, force: a) algin points to surface, b)flatten every point。 (refer: SuGaR https://arxiv.org/abs/2311.12775)
2. learn a mapping fucction, mesh = f_gs_to_mesh(gs_points_convergent, [cameras_in_trainset, target_images_in_trainset])
on this direction, I suppose we can learn t... | open | 2023-12-11T06:44:19Z | 2024-01-08T10:48:00Z | https://github.com/graphdeco-inria/gaussian-splatting/issues/540 | [] | yuedajiong | 2 |
aio-libs-abandoned/aioredis-py | asyncio | 571 | Mixins return different types of asyncio objects | It has come to my attention that the redis mixins do not all return the same type of asyncio objects. Take the following code example:
```python
import aioredis
redis = await aioredis.create_redis_pool(('localhost', 6379), loop=asyncio.get_running_loop())
fut1 = asyncio.create_task(redis.set('thing', 'hi'))
fut2... | closed | 2019-04-09T01:27:22Z | 2021-03-18T23:55:31Z | https://github.com/aio-libs-abandoned/aioredis-py/issues/571 | [
"resolved-via-latest"
] | cheeseandcereal | 0 |
RobertCraigie/prisma-client-py | pydantic | 273 | Add support for PyPy | - [ ] Run tests using PyPy
- [ ] Add PyPi classifiers mentioning support | open | 2022-02-05T17:33:37Z | 2022-02-05T17:36:32Z | https://github.com/RobertCraigie/prisma-client-py/issues/273 | [
"kind/improvement",
"level/intermediate",
"priority/high",
"topic: interpreter"
] | RobertCraigie | 0 |
tensorly/tensorly | numpy | 264 | Normalization in CP algorithms | #### Describe the bug
In tensorly 0.5.1 installed from the Anaconda channel, non-negative PARAFAC with normalization returns NaNs as a result when run on GPU using PyTorch 1.8.1 as the backend. Non-negative PARAFAC without normalization flag works fine on GPU.
#### Steps or Code to Reproduce
```python
import ... | open | 2021-04-29T04:04:43Z | 2022-07-11T13:55:38Z | https://github.com/tensorly/tensorly/issues/264 | [] | rusillini | 8 |
2noise/ChatTTS | python | 771 | RuntimeError: CUDA error: CUBLAS_STATUS_ALLOC_FAILED when calling `cublasCreate(handle)` | 一开始没有用GPU,从这里解决了,
> https://github.com/jianchang512/ChatTTS-ui/issues/35
我的CUDA是11.x,所以按照操作:
> pip uninstall -y torch torchaudio
> 如果cuda是11.x 执行这个
> pip install torch torchaudio --index-url https://download.pytorch.org/whl/cu118
> 如果是 12.x 执行这个
> pip install torch torchaudio --index-url https://download.pytor... | closed | 2024-10-07T06:22:30Z | 2024-10-09T15:07:01Z | https://github.com/2noise/ChatTTS/issues/771 | [
"wontfix"
] | benojan | 2 |
aleju/imgaug | deep-learning | 76 | StochasticParameter should support __radd__, __rpow__ etc. | Currently only `__add__,` `__pow__` etc. are supported, which means expressions where the first operand is a number (such as `3/ia.Normal(0,1)`) don't work. This is especially a problem for expressions such as `2**ia.Uniform(-1,1)`. These can only be written as `ia.Deterministic(2)**ia.Uniform(-1,1)`, which is much les... | closed | 2017-11-15T12:09:32Z | 2021-03-18T20:27:14Z | https://github.com/aleju/imgaug/issues/76 | [] | isarandi | 1 |
tox-dev/tox | automation | 2,442 | Use external package builder with --installpkg | Hey,
When using `tox==4.0.0b2` with one of our projects that has an [external package env](https://github.com/snowflakedb/snowflake-sqlalchemy/blob/5d17bfb3dbfb1a9b29d1156c1da538ecf61847e9/tox.ini#L25) it appears as we cannot supply a wheel file through `--installpkg` if we have already built one.
```console
$ t... | closed | 2022-06-17T17:45:45Z | 2023-06-17T01:18:12Z | https://github.com/tox-dev/tox/issues/2442 | [
"bug:normal",
"help:wanted",
"tox4"
] | sfc-gh-mkeller | 14 |
JaidedAI/EasyOCR | deep-learning | 830 | ModuleNotFoundError: No module named 'easyocr/DBNet' | Hi everyone :)
First I want to thank you for this great library! Great job! :)
I wanted to try the new detector DBNet, but I currently get an error:
```
import easyocr
reader = easyocr.Reader(["en"], detect_network="dbnet18")
```
witch is producing following Exception:
```
Traceback (most recent ca... | closed | 2022-08-25T08:14:53Z | 2022-09-05T06:57:10Z | https://github.com/JaidedAI/EasyOCR/issues/830 | [] | gizmo84 | 8 |
tradingstrategy-ai/web3-ethereum-defi | pytest | 15 | Get revert reason of any tx and especially for failed trades | Uniswap trade analyzer should be able to tell why the trade failed
- Too much slippage
- Some internal Uniswap error
- (There should be no other reasons if the tokens are not scam tokens)
As a bonus, trade analyzer should able to tell if the trade was reverted because of slippage. Though not sure how we can pick ... | closed | 2022-03-21T07:43:29Z | 2022-03-25T23:03:17Z | https://github.com/tradingstrategy-ai/web3-ethereum-defi/issues/15 | [
"priority: P2"
] | miohtama | 3 |
explosion/spaCy | data-science | 13,343 | Sharding Warning | When i run a deployed GPT 3.5 model from Azure, i get this warning,
"UserWarning: Task supports sharding, but model does not provide context length. Data won't be sharded, prompt might exceed the model's context length. Set context length in your config"
What is the way to set the context_length as i am not able to... | closed | 2024-02-22T04:33:38Z | 2024-02-22T20:54:37Z | https://github.com/explosion/spaCy/issues/13343 | [
"feat/llm"
] | AbinashSankaran | 1 |
google-deepmind/sonnet | tensorflow | 232 | Is there a convenient way to print output shape of every layer? | closed | 2022-02-19T12:53:04Z | 2022-02-20T08:05:34Z | https://github.com/google-deepmind/sonnet/issues/232 | [] | RlChen0 | 2 | |
opengeos/streamlit-geospatial | streamlit | 124 | Earth Engine Authenticate | I am cloning the repository and try to host this on streamlit app and everything works fine except the Earth Engine authentication
<img width="398" alt="image" src="https://github.com/giswqs/geemap-streamlit/assets/120152624/0785e120-ffe7-4ad5-b452-9c8c4ed03712">
The screen always stuck and here even if I have inclu... | closed | 2023-08-03T06:02:26Z | 2024-01-29T13:16:19Z | https://github.com/opengeos/streamlit-geospatial/issues/124 | [] | keanteng | 1 |
koxudaxi/datamodel-code-generator | fastapi | 1,952 | Support scientific notation (YeX) | **Describe the bug**
Scientific notation in json converts to str in model:
```python
class Model(BaseModel):
hello: str
```
**To Reproduce**
Example json:
```json
{
"hello": 1e-9
}
```
Used commandline:
```
$ datamodel-codegen --input-file-type json --input gen/test-meta.json --output gen... | open | 2024-05-09T14:30:06Z | 2024-05-09T14:30:06Z | https://github.com/koxudaxi/datamodel-code-generator/issues/1952 | [] | swelborn | 0 |
tflearn/tflearn | data-science | 969 | SequenceGenerator has inconsistent interface between fit() and generate() | Hi, I'm trying to generate sequences from input word sequences (not character sequences). I use TF's VocabularyProcessor to produce a word -> integer mapping.
SequenceGenerator.fit() expects one-hot encoded inputs, so I initially apply my vocabulary to the input sequence and then one-hot encode that to generate the in... | open | 2017-12-01T04:57:03Z | 2017-12-01T04:57:03Z | https://github.com/tflearn/tflearn/issues/969 | [] | simra | 0 |
ploomber/ploomber | jupyter | 219 | Create pkg with utility functions for sample projects | See functions in parametrized/nb.md | closed | 2020-08-11T06:06:44Z | 2020-08-12T01:32:56Z | https://github.com/ploomber/ploomber/issues/219 | [] | edublancas | 1 |
flairNLP/flair | pytorch | 2,890 | Loading a model creates warning; its annoying. | In version `flair == 0.11.3` and `huggingface_hub == 0.8.1` loading a HuggingFace model creates a warning. To reproduce:
```
>>> from flair.models import MultiTagger
>>> models = ["flair/chunk-english"]
>>> MultiTagger.load(models)
/home/ubuntu/.local/lib/python3.9/site-packages/huggingface_hub/file_download.py:56... | closed | 2022-08-06T12:50:50Z | 2022-08-06T16:25:40Z | https://github.com/flairNLP/flair/issues/2890 | [] | tbachlechner | 4 |
holoviz/panel | jupyter | 7,264 | Bokeh: BokehJS was loaded multiple times but one version failed to initialize. | Hi team, thanks for your hard work. If possible, can we put a high priority on this fix? It's quite damaging to user experience.
#### ALL software version info
(this library, plus any other relevant software, e.g. bokeh, python, notebook, OS, browser, etc should be added within the dropdown below.)
<details>
... | closed | 2024-09-12T16:03:33Z | 2024-09-13T17:34:46Z | https://github.com/holoviz/panel/issues/7264 | [] | tomascsantos | 4 |
xzkostyan/clickhouse-sqlalchemy | sqlalchemy | 106 | Is it possible to make a join across tables from different schemas(databases)? | I'm new at your dialect (and orm as well)
let's say there are two tables from two databases
`first_db_uri = 'clickhouse://default:@localhost/test_1'`
`second_db_uri = 'clickhouse://default:@localhost/test_2'`
as it's said two separated engines need to be created:
`first_engine = create_engine(first_db_uri)`
`... | closed | 2020-10-21T09:09:52Z | 2020-12-14T18:31:36Z | https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/106 | [] | justtoreply | 3 |
ymcui/Chinese-LLaMA-Alpaca | nlp | 475 | Tokenizer在编码时,会加上空字符的token 29871 | ### 详细描述问题
我在使用tokenizer的时候发现如下令人迷惑的点。
```
from transformers import LlamaTokenizer
tokenizer = LlamaTokenizer.from_pretrained('models/chinese-llama-7b/')
>>> tokenizer.encode('\n', add_special_tokens=False)
[29871, 13]
>>> tokenizer.decode([13])
'\n'
>>> tokenizer.decode([29871])
''
>>> tokenizer.decode([2... | closed | 2023-05-31T08:29:03Z | 2023-05-31T09:03:19Z | https://github.com/ymcui/Chinese-LLaMA-Alpaca/issues/475 | [] | chenhk-chn | 5 |
aleju/imgaug | machine-learning | 704 | bad return order of augment | bad return order of augment | open | 2020-07-29T12:09:51Z | 2020-09-18T03:42:35Z | https://github.com/aleju/imgaug/issues/704 | [] | vanpersie32 | 1 |
roboflow/supervision | pytorch | 1,190 | the update of supervision | closed | 2024-05-13T03:47:03Z | 2024-05-13T10:43:23Z | https://github.com/roboflow/supervision/issues/1190 | [
"question"
] | OliverLam7725 | 3 | |
pyqtgraph/pyqtgraph | numpy | 2,695 | 100x Increased speed for ´getArrayRegion()´ | As I explained in the [discussion](https://github.com/pyqtgraph/pyqtgraph/discussions/2690) I recently opened and self-answered, I found a way to obtain the ROI array region ~100x faster.
The `getArrayRegion()` method is quite slow. for small ROI sizes, it's not noticeable. As you increase the size of the ROI, it be... | open | 2023-04-17T08:11:20Z | 2023-04-17T09:14:06Z | https://github.com/pyqtgraph/pyqtgraph/issues/2695 | [] | ghylander | 0 |
MilesCranmer/PySR | scikit-learn | 666 | AttributeError: module 'pysr' has no attribute 'Problem' | ### Discussed in https://github.com/MilesCranmer/PySR/discussions/665
<div type='discussions-op-text'>
<sup>Originally posted by **wkharold** July 10, 2024</sup>
I'm just getting started with PySR. Walking through the Toy Examples with Code. When I do
```python
from pysr import *
```
I get the error in the ... | closed | 2024-07-11T01:41:11Z | 2024-07-15T14:38:05Z | https://github.com/MilesCranmer/PySR/issues/666 | [] | MilesCranmer | 1 |
huggingface/datasets | nlp | 7,444 | Excessive warnings when resuming an IterableDataset+buffered shuffle+DDP. | ### Describe the bug
I have a large dataset that I shared into 1024 shards and save on the disk during pre-processing. During training, I load the dataset using load_from_disk() and convert it into an iterable dataset, shuffle it and split the shards to different DDP nodes using the recommended method.
However, when ... | open | 2025-03-11T16:34:39Z | 2025-03-11T16:36:01Z | https://github.com/huggingface/datasets/issues/7444 | [] | dhruvdcoder | 0 |
predict-idlab/plotly-resampler | plotly | 270 | [BUG] Hover data does not match the displayed resampled point in scatter plot | **Describe the bug** :crayon:
When using `register_plotly_resampler`, hover data specified through `hover_data` argument to `px.scatter` sometimes shows up with incorrect values when hovering over a point with the mouse. The correct value is displayed when not using `register_plotly_resampler`.
**Reproducing the b... | closed | 2023-11-08T11:35:07Z | 2023-11-20T13:12:02Z | https://github.com/predict-idlab/plotly-resampler/issues/270 | [
"bug"
] | aasmune | 1 |
KevinMusgrave/pytorch-metric-learning | computer-vision | 27 | How to use a miner with CrossBatchMemory? | Hi,
I was interested in combining the `MaximumLossMiner` with the `CrossBatchMemory`, but cant seem to get it to work, here is what I try:
```python
import torch
from pytorch_metric_learning.losses import CrossBatchMemory, NTXentLoss
from pytorch_metric_learning.miners import MaximumLossMiner
batch_size = 1... | closed | 2020-03-20T04:17:11Z | 2020-03-23T21:38:53Z | https://github.com/KevinMusgrave/pytorch-metric-learning/issues/27 | [
"bug"
] | JohnGiorgi | 5 |
onnx/onnx | scikit-learn | 5,870 | If it is not continuous inference, the running speed will be slower, how to improve? | following code is used to test the onnx inferance speed with GPU
the first time is very long, which is reasonable, the first 10 times is continuouse infer, the speed is normal, ~10ms
but the last 10 times, when put a interval (2s) between each inference, the speed becomes lower, ~100ms, seems need some time to in... | closed | 2024-01-20T10:11:55Z | 2024-01-22T18:21:27Z | https://github.com/onnx/onnx/issues/5870 | [
"question"
] | hurri2000 | 1 |
apache/airflow | automation | 47,576 | AIP-38 | Merge Backfill and Trigger Dag Run modals | ### Body
Problem:
- Create backfill is too hidden away, missing dag run conf and ultimately, is just a version of triggering a run
Solution:
- Add an option to toggle between a regular dag run trigger or a backfill trigger in the same modal. Kind of like how we have materialize asset and create asset event in the sam... | open | 2025-03-10T15:40:03Z | 2025-03-10T15:40:14Z | https://github.com/apache/airflow/issues/47576 | [
"area:UI",
"area:backfill"
] | bbovenzi | 0 |
pydantic/pydantic | pydantic | 10,494 | (🐞) false positive serialize error with union of `list`s | ### Initial Checks
- [X] I confirm that I'm using Pydantic V2
### Description
```
pydantic_core._pydantic_core.PydanticSerializationError: Pydantic serializer warnings:
PydanticSerializationUnexpectedValue: Expected `bool` but got `int` with value `2` - serialized value may not be as expected
PydanticSerializ... | closed | 2024-09-26T03:01:25Z | 2024-11-15T13:02:11Z | https://github.com/pydantic/pydantic/issues/10494 | [
"bug V2"
] | KotlinIsland | 11 |
aleju/imgaug | deep-learning | 64 | Rotation by 90 degrees results in a black border | Running ``` iaa.Affine(rotate=90)``` results in a black border for a square image.

| closed | 2017-09-22T08:59:23Z | 2017-09-22T20:10:37Z | https://github.com/aleju/imgaug/issues/64 | [] | BAILOOL | 1 |
microsoft/hummingbird | scikit-learn | 702 | PyTorch SGDClassifier `predict` result does not match Sklearn model | # Bug report
When I convert a `SGDClassifier` model initialised with loss function `modified huber`, found:
```python3
import numpy as np
from sklearn.linear_model import SGDClassifier
import hummingbird.ml
# prepare data
np.random.seed(0)
train_x = np.random.rand(200, 50)
train_y = np.random.randint(10, s... | closed | 2023-05-15T14:23:08Z | 2023-05-15T23:02:08Z | https://github.com/microsoft/hummingbird/issues/702 | [] | ytwei3 | 0 |
jupyter-incubator/sparkmagic | jupyter | 503 | Unable to start Spark or PySpark kernels - No module named winkerberos | On creating a new notebook with either Spark or PySpark kernels on a CentOS 7 machine, this error appears and kernel never starts,
```[I 11:16:51.162 NotebookApp] Kernel started: 82b4f257-29f9-46bb-82db-4057701ff819
/export/apps/python/2.7/bin/python: No module named winkerberos
[I 11:16:54.163 NotebookApp] KernelRe... | open | 2019-01-19T11:21:25Z | 2020-06-01T21:12:09Z | https://github.com/jupyter-incubator/sparkmagic/issues/503 | [
"kind:bug",
"awaiting-submitter-response"
] | Nithanaroy | 9 |
cvat-ai/cvat | tensorflow | 8,707 | how to set a shorchut key for AI interactor? | ### Actions before raising this issue
- [X] I searched the existing issues and did not find anything similar.
- [X] I read/searched [the docs](https://docs.cvat.ai/docs/)
### Is your feature request related to a problem? Please describe.
_No response_
### Describe the solution you'd like
The AI interactor is very ... | closed | 2024-11-15T07:58:36Z | 2024-11-18T08:25:36Z | https://github.com/cvat-ai/cvat/issues/8707 | [
"enhancement"
] | ywangwxd | 1 |
pallets/flask | python | 4,428 | Flask 2 binds to default host address when --host=0.0.0.0 is used | ## Description
Flask ignores the parameter --host when it is equal to "0.0.0.0" and version is 2.0.x, binding to its host address.
## How to reproduce
Given the following server
```python3
from flask import Flask
# Create the http server
app = Flask(__name__)
@app.route("/")
def hello():
retur... | closed | 2022-01-21T19:00:34Z | 2022-02-05T00:03:37Z | https://github.com/pallets/flask/issues/4428 | [] | diegofps | 2 |
wkentaro/labelme | deep-learning | 529 | json_to_dataset.py | when i use json_to_dataset.py home/xxx.json, it can't work, and it will go wrong
[33m[WARNING][0m This script is aimed to demonstrate how to convert theJSON file to a single image dataset, and not to handlemultiple JSON files to generate a real-use dataset. ([1mjson_to_dataset.py[0m:16)
Traceback (most recent c... | closed | 2019-12-27T15:45:11Z | 2022-09-05T03:00:09Z | https://github.com/wkentaro/labelme/issues/529 | [] | qvduoduo1997 | 7 |
fastapi/sqlmodel | sqlalchemy | 383 | Not able to read data via relationship back-populates | ### First Check
- [X] I added a very descriptive title to this issue.
- [X] I used the GitHub search to find a similar issue and didn't find it.
- [X] I searched the SQLModel documentation, with the integrated search.
- [X] I already searched in Google "How to X in SQLModel" and didn't find any information.
- [X] I al... | open | 2022-07-21T20:10:49Z | 2022-07-25T20:40:13Z | https://github.com/fastapi/sqlmodel/issues/383 | [
"question"
] | syncopatedGlitch | 3 |
babysor/MockingBird | pytorch | 849 | pip install -r requirements.txt 出错 | 做到 pip install -r requirements.txt 这个步骤出错,前面都正常,在 anaconda 里完成的
Preparing metadata (pyproject.toml) ... error
error: subprocess-exited-with-error
× Preparing metadata (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> [275 lines of output]
...
TypeError: CCompiler_spawn() got an une... | open | 2023-03-13T14:31:21Z | 2023-05-25T11:24:06Z | https://github.com/babysor/MockingBird/issues/849 | [] | erelief | 6 |
PaddlePaddle/PaddleNLP | nlp | 9,908 | [Bug]: 训练后评估阶段报错 | ### 软件环境
```Markdown
- paddlepaddle:
- paddlepaddle-gpu: 3.0.0rc1
- paddlenlp: 3.0.0b3
```
### 重复问题
- [x] I have searched the existing issues
### 错误描述
```Markdown
自己构造的数据:
python doccano.py --negative_ratio 5 --doccano_file ./data/doccano_ext.jsonl --task_type ext --save_dir ./data --splits 0.8 0.1 0.1 --schema_la... | open | 2025-02-19T23:07:52Z | 2025-03-17T08:35:11Z | https://github.com/PaddlePaddle/PaddleNLP/issues/9908 | [
"bug"
] | jqtian123 | 1 |
yt-dlp/yt-dlp | python | 12,266 | Fixing Reverse Playlist Download Start Issue in YouTube-DL Options | ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [x] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [x] I'm asking a question and **not** reporting a bug or requesting a feature
- [x] I've looked through the [README](https://github.com/yt-dlp/yt-dlp#re... | closed | 2025-02-03T10:35:08Z | 2025-02-08T04:07:50Z | https://github.com/yt-dlp/yt-dlp/issues/12266 | [
"question"
] | MammadTavakoli | 2 |
PokeAPI/pokeapi | graphql | 505 | Update Pokémon Dream World sprites | The sprites of *Pokémon Dream World* in the repo are very outdated. You can find an updated database in **Bulbapedia**:
[Pokémon Dream World](https://archives.bulbagarden.net/wiki/Category:Pok%C3%A9mon_Dream_World_artwork)
[Pokémon Dream World Items](https://archives.bulbagarden.net/wiki/Category:Pok%C3%A9mon_Dream_W... | open | 2020-06-29T22:36:07Z | 2020-07-06T16:19:34Z | https://github.com/PokeAPI/pokeapi/issues/505 | [] | LateusBetelgeuse | 6 |
huggingface/transformers | tensorflow | 36,683 | AttributeError: 'Gemma3Config' object has no attribute 'vocab_size' | ### System Info
v4.50.0.dev0
### Who can help?
@ArthurZucker
@LysandreJik
@xenova
### Information
- [ ] The official example scripts
- [ ] My own modified scripts
### Tasks
- [ ] An officially supported task in the `examples` folder (such as GLUE/SQuAD, ...)
- [ ] My own task or dataset (give details below)
... | closed | 2025-03-12T18:11:39Z | 2025-03-22T12:08:48Z | https://github.com/huggingface/transformers/issues/36683 | [
"bug"
] | jumelet | 16 |
neuml/txtai | nlp | 23 | Add batch indexing for transformer indices | Currently, sentence-transformer based indices are indexing documents one at a time. Calls to sentence-transformers should be batched together to decrease indexing time. | closed | 2020-09-10T21:28:43Z | 2021-05-13T15:03:09Z | https://github.com/neuml/txtai/issues/23 | [] | davidmezzetti | 0 |
Lightning-AI/pytorch-lightning | machine-learning | 20,027 | [Fabric Lightning] Named barriers | ### Description & Motivation
To prevent ranks losing alignment due to user error -- it would be beneficial to have named barriers with lightning allowing nodes to move forward only if same barrier name is met.
### Pitch
For example:
```
if fabric.global_rank == 0:
fabric.barrier("rank_0")
else:
fa... | open | 2024-06-28T11:14:00Z | 2024-06-28T12:25:44Z | https://github.com/Lightning-AI/pytorch-lightning/issues/20027 | [
"feature",
"help wanted",
"distributed"
] | tesslerc | 1 |
huggingface/datasets | pandas | 7,306 | Creating new dataset from list loses information. (Audio Information Lost - either Datatype or Values). | ### Describe the bug
When creating a dataset from a list of datapoints, information is lost of the individual items.
Specifically, when creating a dataset from a list of datapoints (from another dataset). Either the datatype is lost or the values are lost. See examples below.
-> What is the best way to create... | open | 2024-12-05T09:07:53Z | 2024-12-05T09:09:38Z | https://github.com/huggingface/datasets/issues/7306 | [] | ai-nikolai | 0 |
onnx/onnx | pytorch | 5,868 | A way to convert NCHW -> NHWC model in onnx | # Ask a Question
### Question
Is there a way to change the input memory format from NCHW to NWHC in onnx? I have a pytorch model, and used `x.to(memory_format=torch.channels_last)` for inputs and the model itself during training. However, when converting to onnx, the shape is back to 1,3,256,256.
I'm using this c... | open | 2024-01-19T16:09:32Z | 2025-01-25T06:42:28Z | https://github.com/onnx/onnx/issues/5868 | [
"question",
"stale"
] | nathanjacobiOXOS | 1 |
nvbn/thefuck | python | 638 | When pushing to or pulling from a git repository that needs merging, open mergetool. | Feature request :)
Often I push or pull from a git repository and get the error that it needs merging. Typing fuck currently just prompts me to enter my credentials again, then gives me the same error. | open | 2017-04-28T05:00:15Z | 2017-04-28T05:00:15Z | https://github.com/nvbn/thefuck/issues/638 | [] | copycatchiller | 0 |
plotly/plotly.py | plotly | 4,465 | go.Histogram2dContour does not normalize when using shared coloraxis and coloring='fill' | Setup:
`plotly==5.18.0`
Bug:
When adding two `go.Histogram2dContour` to a subplot, the colorscale is not normalized, when using a shared coloraxis and setting `coloring='fill'`.
It works when setting `coloring='heatmap'`.
Dataframes used:
```
df_a = pd.DataFrame({
'a':[0,0,1,1],
'b':[0,1,0,1],
... | open | 2023-12-17T16:49:59Z | 2024-08-12T13:41:14Z | https://github.com/plotly/plotly.py/issues/4465 | [
"bug",
"sev-2",
"P3"
] | PhilippHa3 | 1 |
predict-idlab/plotly-resampler | data-visualization | 249 | [BUG] FigureResampler, FigureWidgetResampler, and register_plotly_resampler do not work for box traces | My original figure is about 20MB, I try the three methods in dash callback to return the figure to web frontend, but it seems the figure is not compressed
code as the following:
@callback(
Output("dd-figure-container", "children"),
Input("demo-dropdown", "value"),
State("sessionStore", "data"),
)
... | closed | 2023-07-26T02:52:14Z | 2023-07-28T08:21:40Z | https://github.com/predict-idlab/plotly-resampler/issues/249 | [
"bug"
] | joshua-xia | 4 |
marshmallow-code/flask-smorest | rest-api | 157 | TypeError: use_args() got an unexpected keyword argument 'location' | The error is very similar to #117 so I'm wondering if there's something outdated on my side. Anyway, this is the trace for one of the failing tests:
```
self = <tests.test_pagination.TestPagination object at 0x803b8c750>, app = <Flask 'API Test'>, schemas = Model(DocSchema=<class 'tests.conftest.schemas.<locals>.DocS... | closed | 2020-06-07T21:13:18Z | 2020-06-07T21:19:56Z | https://github.com/marshmallow-code/flask-smorest/issues/157 | [] | mekanix | 1 |
microsoft/qlib | machine-learning | 952 | is it possible to add inheritance graph or UML to Qlib docs? | ## 📖 Documentation
<!-- Please specify whether it's tutorial part or API reference part, and describe it.-->
Hi, for the API document, is it possible to add inheritance graph or UML to the docs? There will be very helpful if one wants to write additional Ops or other classes.
Thanks! | closed | 2022-03-05T14:01:38Z | 2022-06-14T09:02:03Z | https://github.com/microsoft/qlib/issues/952 | [
"stale"
] | wan9c9 | 4 |
ranaroussi/yfinance | pandas | 1,463 | Add retry in yf.download to avoid random data not found | **Describe the problem**
we typically save all tickers in a list and then download in yf
`python
tickers=pd.read_excel('tickers.xlsx').to_list()
stock_data_close = pd.DataFrame(yf.download(tickers, start=start_date, end=end_date)['Adj Close'])
stock_data_open = pd.DataFrame(yf.download(tickers, start=start_date,... | closed | 2023-03-24T02:35:40Z | 2023-09-09T17:28:48Z | https://github.com/ranaroussi/yfinance/issues/1463 | [
"enhancement",
"Yahoo spam"
] | XJTLUmedia | 6 |
junyanz/pytorch-CycleGAN-and-pix2pix | computer-vision | 1,068 | How to add loss function only for G_A | Hi~ I'm confused about is G_A and G_B using same loss function? If it is, why can we get two different generator.
Besides, How can I add a loss function only for G_A, I just did not find similar question in Issues. | closed | 2020-06-12T11:57:04Z | 2020-06-13T00:46:17Z | https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/1068 | [] | Iarkii | 2 |
kizniche/Mycodo | automation | 768 | Fantastic project, but I'm stuck.... Need help, or is it a bug? | ### How does one select multiple inputs for the Math:Redundancy feature?
### Versions:
- Mycodo Version: 8.4.0
- Raspberry Pi Version: 3B
- Raspbian OS Version: Raspbian GNU/Linux 10 (buster)
### Reproducibility
New fresh install of Mycodo
Setup 2 DHT sensors or 2 DS18B20 sensors
Try to add 2 of these ... | closed | 2020-05-03T19:17:50Z | 2020-05-05T10:04:11Z | https://github.com/kizniche/Mycodo/issues/768 | [] | matthall69 | 5 |
huggingface/text-generation-inference | nlp | 2,185 | Phi-3 mini 128k produces gibberish if context >4k tokens | ### System Info
GPU: RTX4090
Run 2.1.0 with docker like:
`docker run -it --rm --gpus all --ipc=host -p 8080:80 -v /home/jp/.cache/data:/data ghcr.io/huggingface/text-generation-inference:2.1.0 --model-id microsoft/Phi-3-mini-128k-instruct --max-batch-prefill-tokens=8192 --max-total-tokens=8192 --max-input-tokens... | open | 2024-07-04T08:37:20Z | 2025-01-29T14:59:13Z | https://github.com/huggingface/text-generation-inference/issues/2185 | [] | jphme | 5 |
huggingface/datasets | tensorflow | 6,865 | Example on Semantic segmentation contains bug | ### Describe the bug
https://huggingface.co/docs/datasets/en/semantic_segmentation shows wrong example with torchvision transforms.
Specifically, as one can see in screenshot below, the object boundaries have weird colors.
<img width="689" alt="image" src="https://github.com/huggingface/datasets/assets/4803565/59... | open | 2024-05-03T09:40:12Z | 2024-05-03T09:40:12Z | https://github.com/huggingface/datasets/issues/6865 | [] | ducha-aiki | 0 |
scrapy/scrapy | web-scraping | 6,643 | Add support for async HTTP cache storages | https://stackoverflow.com/questions/79396472/how-to-extend-scrapy-with-custom-http-cache-which-needs-to-perform-asynchronous
It should be relatively easy to make it possible to have `HTTPCACHE_STORAGE` storages whose methods are asynchronous, because they are used only in `scrapy.downloadermiddlewares.httpcache.HttpCa... | open | 2025-01-31T15:03:52Z | 2025-02-11T20:18:29Z | https://github.com/scrapy/scrapy/issues/6643 | [
"enhancement",
"asyncio"
] | wRAR | 0 |
deepspeedai/DeepSpeed | deep-learning | 6,576 | no-torch CI test failure | The Nightly CI for https://github.com/microsoft/DeepSpeed/actions/runs/11062306053 failed.
| closed | 2024-09-27T00:25:51Z | 2024-09-27T20:32:50Z | https://github.com/deepspeedai/DeepSpeed/issues/6576 | [
"ci-failure"
] | github-actions[bot] | 0 |
quokkaproject/quokka | flask | 211 | In hopes of getting myself rid of #204 Im doing a complete reinstall now getting "ImportError: No module named PyRSS2Gen" | In hopes of getting myself rid of #204 Im doing a complete reinstall now getting "ImportError: No module named PyRSS2Gen"
But I have the module installed. Can I get a hand thanks.
Traceback (most recent call last):
File "./wsgi.py", line 8, in <module>
application = DispatcherMiddleware(create_app(), {
File "... | closed | 2015-06-02T19:23:03Z | 2015-07-16T02:56:10Z | https://github.com/quokkaproject/quokka/issues/211 | [] | eurabilis | 11 |
iperov/DeepFaceLab | machine-learning | 5,284 | GPU->CPU Memcpy failed | Extracting faces...
Caching GPU kernels...
Running on GeForce RTX 2060
1%|5 | 61/8453 [00:22<52:35, 2.66it/s]2021-03-01 00:16:03.405765: F tensorflow/core/common_runtime/gpu/gpu_util.cc:291] GPU->CPU Memcpy failed
GeForce RTX 2060 does... | open | 2021-02-28T17:12:12Z | 2023-06-08T22:30:39Z | https://github.com/iperov/DeepFaceLab/issues/5284 | [] | MyY2T2 | 1 |
plotly/dash | dash | 3,126 | How to create a Loading component triggered by an external component | Hello,
I want to create a Loading component in a specific location of my page which is triggered by the content in another Div which is not wrapped by the Loading component. Is it possible? | closed | 2025-01-19T19:04:14Z | 2025-01-23T20:25:19Z | https://github.com/plotly/dash/issues/3126 | [] | marfago | 2 |
jina-ai/serve | machine-learning | 6,073 | How to set GET method? | 
This is default POST method, But how can I set it's a GET method? | closed | 2023-10-07T07:52:48Z | 2024-06-30T09:09:22Z | https://github.com/jina-ai/serve/issues/6073 | [] | xuhaoguang | 11 |
pydantic/pydantic-settings | pydantic | 142 | ImportError: python-dotenv is not installed, run `pip install pydantic[dotenv]` | ### Initial Checks
- [X] I confirm that I'm using Pydantic V2
### Description
Is command ```pip install pydantic[dotenv]``` depricated?
I used BaseSetting, and just follow this hint ```ImportError: python-dotenv is not installed, run `pip install pydantic[dotenv]```, and then got
```WARNING: pydantic 2.1.1 d... | closed | 2023-08-16T09:35:45Z | 2023-08-19T15:57:04Z | https://github.com/pydantic/pydantic-settings/issues/142 | [
"unconfirmed"
] | horw | 2 |
microsoft/qlib | machine-learning | 1,289 | 请问能把处理器分个类吗? | 您好,请问能把内置的如下处理器分个类吗:哪些是共享处理器,哪些是学习处理器,哪些是推理处理器?
并指出哪些是处理特征的哪些是处理标签的?
DropnaProcessor: processor that drops N/A features.
DropnaLabel: processor that drops N/A labels.
TanhProcess: processor that uses tanh to process noise data. 用于特征还是标签?
ProcessInf: processor that handles infinity values, it will be replaced by th... | closed | 2022-09-13T09:03:03Z | 2023-01-01T03:06:50Z | https://github.com/microsoft/qlib/issues/1289 | [
"question",
"stale"
] | quantcn | 7 |
JaidedAI/EasyOCR | machine-learning | 910 | get low accuracy on icdar2013 recognition test set. | Hi, it's an great project.
But i found the default recognition english model test on ICD13 get poor acc.
{"totalWords": 1095, "detWords": 1095, "crwN": 768.0, "crwupN": 805.0, "ted": 911.0, "tedL": 197.8682213211625, "crw": 0.7013698630136986, "tedup": 739.0, "tedupL": 167.13990935535054, "crwup": 0.7351598173515982... | open | 2022-12-20T09:14:56Z | 2022-12-20T09:14:56Z | https://github.com/JaidedAI/EasyOCR/issues/910 | [] | zhangsiqiGit | 0 |
tfranzel/drf-spectacular | rest-api | 1,346 | Can't define only part of example data? | I have a Building serializer that nests a UtilityBill serializer. In the UtiltyBillSerializer, I want to provide some reasonable example data for a `bill_start_date` and `bill_end_date` to suggest what a real bill would have for the start and then end of a month.
I see this is possible with the the `extend_schema_se... | closed | 2024-12-06T21:20:38Z | 2024-12-09T04:57:05Z | https://github.com/tfranzel/drf-spectacular/issues/1346 | [] | danielmcquillen | 6 |
autogluon/autogluon | scikit-learn | 4,622 | GPU Not Used Despite Configuration – Add Clarifying Log Message | When attempting to use AutoGluon with a specific GPU, I observed that the GPU is sometimes not utilized as expected. Instead, a message appears indicating that no GPUs are available, despite them being properly configured and detected by the system.
For example, when running `predictor.fit(train_data=data, presets='... | closed | 2024-11-07T11:29:08Z | 2024-11-07T13:32:23Z | https://github.com/autogluon/autogluon/issues/4622 | [
"bug: unconfirmed",
"Needs Triage"
] | celestinoxp | 0 |
biolab/orange3 | data-visualization | 5,993 | Create Instance: Enable nan | <!--
Thanks for taking the time to submit a feature request!
For the best chance at our team considering your request, please answer the following questions to the best of your ability.
-->
**What's your use case?**
<!-- In other words, what's your pain point? -->
<!-- Is your request related to a problem, or ... | closed | 2022-05-25T11:27:04Z | 2022-06-10T10:33:30Z | https://github.com/biolab/orange3/issues/5993 | [
"meal"
] | ajdapretnar | 0 |
litestar-org/litestar | pydantic | 3,887 | Bug: 405: Method Not Allowed when using Websockets with Litestar and Nginx Unit | ### Description
I believe there may be an issue with how Litestar handles Websocket connections incoming from a client app hosted with Nginx Unit.
This problem does not happen with uvicorn, only Nginx Unit.
From my typescript react app I initiate the websocket connection:
```typescript
const ws = ne... | closed | 2024-12-05T18:56:13Z | 2025-03-20T15:55:02Z | https://github.com/litestar-org/litestar/issues/3887 | [
"Upstream"
] | FixFlare | 12 |
microsoft/MMdnn | tensorflow | 218 | Convert Resnet100 from MxNet to Caffe | Platform (like ubuntu 16.04/win10): ubuntu 16.04
Python version: 2.7
Source framework with version (like Tensorflow 1.4.1 with GPU):MxNet 1.2.0
Destination framework with version (like CNTK 2.3 with GPU):
Pre-trained model path (webpath or webdisk path):
Running scripts:
I ran this command to convert... | closed | 2018-05-31T02:01:47Z | 2018-08-07T11:47:31Z | https://github.com/microsoft/MMdnn/issues/218 | [] | 321zhangli123 | 3 |
aiortc/aiortc | asyncio | 1,154 | Streaming video from camera to browser and recording it | I want to stream the video from a local camera to a remote browser using h264 encoding. This I got working.
Now I want to simultanously record this stream as mp4 file.
I create the camera track:
```
cap = cv2.VideoCapture(0)
track = CameraStreamTrack(cap)
```
where CameraStreamTrack is a subclass of MediaStream... | closed | 2024-09-09T15:39:31Z | 2024-10-16T10:54:57Z | https://github.com/aiortc/aiortc/issues/1154 | [] | jochennaumann | 0 |
vaexio/vaex | data-science | 1,511 | [BUG-REPORT] RobustScaler is currenty broken | Thank you for reaching out and helping us improve Vaex!
Before you submit a new Issue, please read through the [documentation](https://docs.vaex.io/en/latest/). Also, make sure you search through the Open and Closed Issues - your problem may already be discussed or addressed.
**Description**
`vaex.ml.RobustScale... | closed | 2021-08-13T09:01:14Z | 2021-10-10T00:01:08Z | https://github.com/vaexio/vaex/issues/1511 | [] | danielgafni | 2 |
python-restx/flask-restx | api | 193 | Why was the changelog removed from the repository and the documentation? | **Ask a question**
Why was the changelog removed from the repository and the documentation?
**Additional context**
Hi, I was looking at trying to move a project from flask_restplus==0.10.1 to restx but had a hard time figuring out what had changed. The docs say that is it mostly compatible with restplus but that i... | open | 2020-08-07T16:17:54Z | 2020-09-02T18:48:40Z | https://github.com/python-restx/flask-restx/issues/193 | [
"question"
] | avilaton | 3 |
PrefectHQ/prefect | data-science | 17,433 | Work queues status "Not Ready" but Worker is "online" | ### Bug summary
When I upgraded self-hosted Prefect from 3.0.2 to 3.2.5 the Work Queues status is stuck in "Not Ready".
The Worker is online and submitting jobs as expected.
### Version info
```Text
Version: 3.2.5
API version: 0.8.4
Python version: 3.9.20
Git commit: 168280f7
Bu... | closed | 2025-03-10T13:49:41Z | 2025-03-11T14:16:34Z | https://github.com/PrefectHQ/prefect/issues/17433 | [
"bug"
] | Pballer | 3 |
microsoft/JARVIS | pytorch | 140 | Is nvidia 4070ti can to run this model? | Is it only the vram that matters? Can 4070ti run Jarvis? Has anyone tried it? | open | 2023-04-13T04:50:08Z | 2023-04-18T06:41:50Z | https://github.com/microsoft/JARVIS/issues/140 | [] | Ryan2009 | 1 |
mlfoundations/open_clip | computer-vision | 575 | Help on strange error: | hello,
I am running the following example from the web:
model, _, transform = open_clip.create_model_and_transforms(
model_name="coca_ViT-L-14",
pretrained="mscoco_finetuned_laion2B-s13B-b90k"
)
im = Image.open("cat.jpg").convert("RGB")
im = transform(im).unsqueeze(0)
with torch.no_grad():
generated = ... | closed | 2023-07-21T01:20:59Z | 2023-09-15T23:24:26Z | https://github.com/mlfoundations/open_clip/issues/575 | [] | shersoni610 | 6 |
netbox-community/netbox | django | 18,990 | Comment/description for image attachments | ### NetBox version
v4.2.5
### Feature type
Data model extension
### Proposed functionality
Other objects support a free-floating comment/description field, however image attachments do not.
We found this upon importing images from RackTables, which does have a comment field for attachments.
### Use case
This wo... | open | 2025-03-24T14:07:39Z | 2025-03-24T14:07:39Z | https://github.com/netbox-community/netbox/issues/18990 | [
"type: feature",
"status: needs triage"
] | tacerus | 0 |
junyanz/pytorch-CycleGAN-and-pix2pix | deep-learning | 1,029 | Template dataset.py | Hello,
I want to implement cycle gans . I have preprocessed my dicom images to get same size and slice thickness and saved them as .mf2 file. After that I extracted the image patches as I want to pass patches as input to my model. I stored the patches as tensors .pt files.
So currently the torch.Size([7, 4, 4, 64... | open | 2020-05-17T17:00:12Z | 2020-05-18T03:23:25Z | https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/1029 | [] | SurbhiKhushu | 1 |
qubvel-org/segmentation_models.pytorch | computer-vision | 535 | TypeError: make_dilated() missing 1 required positional argument: 'dilation_list' | when I use DeepLabV3plus which use vgg16 or Xception as encoder,I met the error :
ypeError Traceback (most recent call last)
<ipython-input-11-0da076f0c3cd> in <module>()
35 classes=3,
36 activation=None,
---> 37 in_channels=3,
38 )
segmentation_models_p... | closed | 2022-01-08T08:07:36Z | 2022-06-27T07:55:28Z | https://github.com/qubvel-org/segmentation_models.pytorch/issues/535 | [] | OneDirection67 | 3 |
iperov/DeepFaceLab | deep-learning | 534 | Training won't start | I have completed Steps 1 to 5 but now I want to start training, run training H64. But It Won't start training. Same Info appears at other trainingsetups.
Running trainer. That's all that happened:
Loading model...
Model first run.
Enable autobackup? (y/n ?:help skip:n) : n
Write preview history? (y/n ?:help s... | closed | 2019-12-28T05:05:54Z | 2020-03-28T05:42:15Z | https://github.com/iperov/DeepFaceLab/issues/534 | [] | Jofloku | 0 |
pywinauto/pywinauto | automation | 396 | pywintypes.error : (0, 'SetCursorPos', 'No error message is available') on using Regex | Hi,
I am using Python 2.7 (64 bit) with pyWinAuto 0.6.3 (64 bit) on Windows 2012 R2 (64 bit) to automate 64-bit application.
I am getting following error when we use regex for title_re.
```
<class 'pywintypes.error'>: (0, 'SetCursorPos', 'No error message is available')
```
Here is my Code snippet:
```python... | closed | 2017-08-01T18:07:16Z | 2018-11-10T08:44:11Z | https://github.com/pywinauto/pywinauto/issues/396 | [
"bug"
] | jagadeesh1983 | 8 |
microsoft/JARVIS | pytorch | 33 | KeyError: 'choices' | I am getting this error when using the cli:
Traceback (most recent call last):
File "awesome_chat.py", line 970, in <module>
cli()
File "awesome_chat.py", line 941, in cli
answer = chat_huggingface(messages)
File "awesome_chat.py", line 850, in chat_huggingface
task_str = parse_task(context,... | closed | 2023-04-05T02:24:42Z | 2023-04-05T20:34:59Z | https://github.com/microsoft/JARVIS/issues/33 | [] | MatthewCaponi | 1 |
cvat-ai/cvat | pytorch | 8,463 | In the server, after modifying the CVAT backend code, how can I make it take effect? | ### Actions before raising this issue
- [X] I searched the existing issues and did not find anything similar.
- [X] I read/searched [the docs](https://docs.cvat.ai/docs/)
### Steps to Reproduce
In the server, after modifying the CVAT backend code, how can I make it take effect?
### Expected Behavior
In the server,... | closed | 2024-09-22T02:53:43Z | 2024-09-24T07:57:36Z | https://github.com/cvat-ai/cvat/issues/8463 | [
"question"
] | zhanghaihangandliuli | 2 |
NVIDIA/pix2pixHD | computer-vision | 225 | Pretrained 1024x512 model | Could you please provide the pretrained model of 1024x512 resolution? | open | 2020-10-04T04:16:07Z | 2020-10-04T04:18:58Z | https://github.com/NVIDIA/pix2pixHD/issues/225 | [] | wang-zm18 | 1 |
miguelgrinberg/Flask-Migrate | flask | 210 | Click+flask Migrate command issue | I'm a beginner in python and flask so this is probably wrong. I managed to get click working with app factory pattern without any global variable or so.
I don't know if this is the right way to do things but it some how works.
The output is blank so I cannot figure out whats going on.
usage:- python clitools.py --co... | closed | 2018-06-09T18:36:00Z | 2019-01-13T22:20:32Z | https://github.com/miguelgrinberg/Flask-Migrate/issues/210 | [
"question",
"auto-closed"
] | afro-coder | 3 |
jupyter-incubator/sparkmagic | jupyter | 818 | Jupyterlab 4.0.2 python 3.10 | **Describe the bug**
%%sql magic function not working
```TypeError: required field "type_ignores" missing from Module```
**To Reproduce**
```
%%sql
show databases;
```
**Expected behavior**
Works similar to python 3.6
**Screenshots**
 why text files should end with an eol. From... | closed | 2014-11-19T07:57:15Z | 2018-04-26T17:51:03Z | https://github.com/postmanlabs/httpbin/issues/168 | [] | jeroen | 5 |
scikit-image/scikit-image | computer-vision | 7,305 | SimpleITK and PIL tests are testing with tifffile | ### Description:
If `plugin=None` (default) and a path ending in `.tif` are passed to `skimage.io.imread` the plugin order is ignored because of these lines https://github.com/scikit-image/scikit-image/blob/f4c1b34ac968d9fda332d7d9a63c83499aaac1f6/skimage/io/_io.py#L54-L56
This looks like unintended behavior at a... | open | 2024-01-22T19:25:42Z | 2024-07-21T02:29:38Z | https://github.com/scikit-image/scikit-image/issues/7305 | [
":sleeping: Dormant",
":bug: Bug"
] | lagru | 1 |
roboflow/supervision | deep-learning | 1,558 | too many values to unpack (expected 5) | ### Search before asking
- [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar bug report.
### Bug
I was using Supervision for an inference of yolov8 model on a sample video data. When I am trying to run the program using the code below, its showing me t... | closed | 2024-09-30T18:40:27Z | 2024-10-01T16:58:16Z | https://github.com/roboflow/supervision/issues/1558 | [
"bug"
] | 0xD4rky | 4 |
tensorpack/tensorpack | tensorflow | 1,208 | FasterRCNN training, optimizer shape error. | Hello all!
First of all thank you for this project.
Brief: I converted my custom dataset into COCO-like. And get optimizer shape error.
Also, every time I start train.py script, the shape is different.
About dataset:
* Images in dataset have same shape.
* Segmentation is missing (Replaced it in json to ... | closed | 2019-05-23T10:58:01Z | 2019-05-23T16:47:01Z | https://github.com/tensorpack/tensorpack/issues/1208 | [
"examples"
] | Red-Eyed | 2 |
wkentaro/labelme | computer-vision | 861 | Add a way to load a predefined list of labels for a project [Feature] | Never mind, I found the --labels command line argument does what I want | closed | 2021-04-28T02:59:57Z | 2022-06-25T04:43:50Z | https://github.com/wkentaro/labelme/issues/861 | [] | hqm | 1 |
feature-engine/feature_engine | scikit-learn | 274 | [Feat]: Log1p transformer | **Is your feature request related to a problem? Please describe.**
When you want to apply a logarithmic transformation and data contains a zero value, calculating `log(1+x)` is more convenient.
**Describe the solution you'd like**
This could be another argument in [LogTransformer](https://github.com/solegalli... | closed | 2021-06-22T21:55:47Z | 2021-07-13T14:02:59Z | https://github.com/feature-engine/feature_engine/issues/274 | [] | TremaMiguel | 7 |
matplotlib/matplotlib | data-visualization | 28,928 | [ENH]: Is there a way to plot a long format data in matplotlib without pivoting the table ? | ### Problem
I am currently reading this book called Hands On Data Analysis using Pandas by Stefie Molin. There are two formats of data, wide and long format data. The author uses matplotlib to plot a wide format data while seaborn package the long format data. I tried searching in the web and it seems to be the cust... | closed | 2024-10-03T07:40:28Z | 2024-10-03T13:41:41Z | https://github.com/matplotlib/matplotlib/issues/28928 | [
"New feature"
] | infinity-void6 | 3 |
apachecn/ailearning | python | 383 | 逻辑回归示例代码中有一处问题 |
## 上升or下降?
在 https://github.com/apachecn/MachineLearning/blob/master/src/py2.x/ML/5.Logistic/logistic.py 里有2个方法:
正常的梯度上升法
https://github.com/apachecn/MachineLearning/blob/f727eda8150e26cea0425b0bb17b0badb67d5b01/src/py2.x/ML/5.Logistic/logistic.py#L54
随机梯度下降
https://github.com/apachecn/MachineLearning/bl... | closed | 2018-05-29T02:41:54Z | 2018-10-07T13:49:23Z | https://github.com/apachecn/ailearning/issues/383 | [] | eromoe | 0 |
taverntesting/tavern | pytest | 297 | How to monitor the individual name ( sub- test case) in a given test case | Here in below example RESTAPI Testing have 3 name/sub-categories i.e POST,GET and GET.
Currently py.test test_test.tavern.yaml -vv says only about RESTAPI Testing PASS or FAIL.
How to monitor the individual name ( sub- test case) level scenarios or what is pytest option display
the each "name" in Test case is p... | closed | 2019-03-04T09:10:14Z | 2019-03-10T10:53:37Z | https://github.com/taverntesting/tavern/issues/297 | [] | prasadkkl | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.