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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
NullArray/AutoSploit | automation | 1,274 | Unhandled Exception (d0a112a6c) | Autosploit version: `3.0`
OS information: `Linux-5.6.0-kali1-amd64-x86_64-with-debian-kali-rolling`
Running context: `autosploit.py`
Error meesage: `No JSON object could be decoded`
Error traceback:
```
Traceback (most recent call):
File "/root/Downloads/AutoSploit-master/autosploit/main.py", line 113, in main
loa... | open | 2020-05-29T16:27:58Z | 2020-05-29T16:27:58Z | https://github.com/NullArray/AutoSploit/issues/1274 | [] | AutosploitReporter | 0 |
marimo-team/marimo | data-science | 3,469 | with mo.md and triple quote f strings I cant get one variable per line of text | ### Describe the bug
I tried to print one variable with value with fstrings, eg `f"{a=}"` per line using `mo.md` and `"""` but either get all on one line, or extra lines in between. See screenshot, my goal is to get one variable printed (with value) per line.
:
... pass
...
>>> obj = MyStr('"abc"')
>>> orjson.loads(obj)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
... | closed | 2023-12-08T15:36:24Z | 2024-02-06T01:51:38Z | https://github.com/ijl/orjson/issues/445 | [] | emontnemery | 7 |
pydata/xarray | pandas | 9,481 | Merging coordinates computes array values | ### What is your issue?
Xarray's default handling of coordinate merging (e.g., as used in arithmetic) computes array values, which is not ideal.
(There is probably an older issue to discuss this, but I couldn't find it with a quick search)
This is easiest to see using Dask:
```python
import xarray
import nump... | open | 2024-09-11T18:39:56Z | 2024-09-12T00:25:50Z | https://github.com/pydata/xarray/issues/9481 | [
"topic-combine",
"topic-lazy array"
] | shoyer | 2 |
NullArray/AutoSploit | automation | 494 | Unhandled Exception (b059fa380) | Autosploit version: `3.0`
OS information: `Linux-4.9.0-8-amd64-x86_64-with-debian-9.6`
Running context: `autosploit.py`
Error meesage: `global name 'Except' is not defined`
Error traceback:
```
Traceback (most recent call):
File "/opt/Autosploit/autosploit/main.py", line 113, in main
loaded_exploits = load_exploit... | closed | 2019-02-19T18:39:21Z | 2019-03-03T03:30:31Z | https://github.com/NullArray/AutoSploit/issues/494 | [] | AutosploitReporter | 0 |
ultralytics/ultralytics | pytorch | 18,686 | Custom Image size training | ### Search before asking
- [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/ultralytics/ultralytics/discussions) and found no similar questions.
### Question
Hello,
I have an dataset of images 1920*480 (1920 is the width and 4... | open | 2025-01-14T18:09:28Z | 2025-01-15T09:04:41Z | https://github.com/ultralytics/ultralytics/issues/18686 | [
"question",
"detect",
"exports"
] | manoj-kumar-p | 5 |
dpgaspar/Flask-AppBuilder | flask | 2,274 | How do I associate automatically generated permissions with the Public role? | Hello,
I have a question regarding permissions associated with the "Public" role.
I've spent a lot of time digging through the documentation as well as the source code, but I couldn't figure out the simplest method to add a CRUD permission like "can list on view" without using the security roles/list UI on the ac... | open | 2024-10-07T17:27:37Z | 2024-10-29T09:42:12Z | https://github.com/dpgaspar/Flask-AppBuilder/issues/2274 | [] | yamen321 | 1 |
aeon-toolkit/aeon | scikit-learn | 2,344 | [DOC] Two preprocessing notebooks | ### Describe the issue linked to the documentation
I seem to have done the same thing twice, so we have preprocessing in transformations and preprocessing in utils. Needs resolving
### Suggest a potential alternative/fix
_No response_ | closed | 2024-11-12T12:44:52Z | 2024-11-15T20:00:11Z | https://github.com/aeon-toolkit/aeon/issues/2344 | [
"documentation"
] | TonyBagnall | 0 |
plotly/dash | data-science | 2,798 | [Feature Request] openssf scorecard | Would be good to get added https://securityscorecards.dev/ to better know where next improvements could happen and when evaluating the risk of using a component like this.
`scorecard --repo=https://github.com/plotly/dash
Starting [Packaging]
Starting [Security-Policy]
Starting [Pinned-Dependencies]
Starting [Si... | closed | 2024-03-16T14:04:22Z | 2024-07-26T13:07:28Z | https://github.com/plotly/dash/issues/2798 | [] | andy778 | 1 |
exaloop/codon | numpy | 316 | Strange bug (?) in for-else-construction | The code
```
p = 5
best = 4
for s in [(1, 2), (1, 3)]:
S = set()
for i, j in [(u, v) for u in s for v in s]:
a = (i+j)%p
S.add(a)
if len(S) >= best:
break
else:
#print(p, s, S, best)
print(p, s, S)
best = len(S)
```
does not behave ... | closed | 2023-04-01T11:02:35Z | 2023-04-12T22:14:01Z | https://github.com/exaloop/codon/issues/316 | [] | ypfmde | 1 |
pandas-dev/pandas | data-science | 60,863 | ENH: give a useful error message when `.query` is used on a dataframe with duplicate column names | ### Feature Type
- [ ] Adding new functionality to pandas
- [x] Changing existing functionality in pandas
- [ ] Removing existing functionality in pandas
### Problem Description
The title says it all. Optimally `.query` would give the same error message as the alternative given in the MWE below.
### Feature Desc... | open | 2025-02-06T11:08:48Z | 2025-02-06T11:08:48Z | https://github.com/pandas-dev/pandas/issues/60863 | [
"Enhancement",
"Needs Triage"
] | Mo-Gul | 0 |
mwouts/itables | jupyter | 112 | Object of type NaTType is not JSON serializable | Pandas dataframes that contain `pd.NaT` cannot be displayed. | closed | 2022-11-10T23:33:14Z | 2022-11-11T01:18:36Z | https://github.com/mwouts/itables/issues/112 | [] | mwouts | 0 |
flaskbb/flaskbb | flask | 335 | FlaskBB as a mailing list | As the title says, I want to have (and help implement if it’s on no one else’s to-do list) mailing list functionality in FlaskBB. Specifically, I am referring to something similar as implemented in Discourse [(see here if want more info)](https://meta.discourse.org/t/replacing-mailing-lists-email-in/13099). The point i... | open | 2017-09-14T10:13:56Z | 2018-04-15T07:47:47Z | https://github.com/flaskbb/flaskbb/issues/335 | [
"feature"
] | shunju | 2 |
sktime/pytorch-forecasting | pandas | 1,315 | TemporalFusionTransformer logging active during prediction by Default | - PyTorch-Forecasting version: 1.0.0
- PyTorch version: 2.0.1+cpu
- Python version: 3.10
- Operating System: Ubuntu
### Expected behavior
I execute the following code to use a trained TemporalFusionTransformer model to make real-time (not batch) predictions. I am serving the model via FastAPI.
### Actu... | closed | 2023-05-26T15:36:15Z | 2023-05-31T00:17:56Z | https://github.com/sktime/pytorch-forecasting/issues/1315 | [] | vilorel | 3 |
streamlit/streamlit | deep-learning | 10,211 | Provide a new dataframe column type to insert Markdown text | ### Checklist
- [x] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar feature requests.
- [x] I added a descriptive title and summary to this issue.
### Summary
I have a nested data to render as data frame, Some columns shall be rendered neatly when I have ability inser... | open | 2025-01-19T06:54:04Z | 2025-01-21T12:45:54Z | https://github.com/streamlit/streamlit/issues/10211 | [
"type:enhancement",
"feature:st.dataframe",
"feature:st.data_editor"
] | bakkiaraj | 1 |
aiortc/aioquic | asyncio | 242 | [Test] Indefinite/infinite stream from server to client | There does not appear to be any means to sustain an indefinite/infinite stream (for example, streaming a live jam session; full-length movie or live event; web radio station) using either datagrams or streams using `aioquic`.
Kindly create tests for indefinite/infinite streams using datagrams and streams (where only... | closed | 2021-11-28T18:51:25Z | 2022-01-01T00:24:18Z | https://github.com/aiortc/aioquic/issues/242 | [] | guest271314 | 6 |
aleju/imgaug | machine-learning | 61 | Checking image shape | https://github.com/aleju/imgaug/blob/32e8aa7935e187492fc98951bce493244211fbdd/imgaug/imgaug.py#L204
is this line correct? should not we rather check for ```len(image.shape) == 2```?
if this is implemented, this code will break line https://github.com/aleju/imgaug/blob/master/imgaug/augmenters/geometric.py#L940
w... | closed | 2017-09-18T11:49:34Z | 2017-10-13T14:02:19Z | https://github.com/aleju/imgaug/issues/61 | [] | arahusky | 2 |
Anjok07/ultimatevocalremovergui | pytorch | 1,077 | Depoendency conflicts | Looks like there's a dependency conflict in the requirements.txt file
ERROR: Cannot install -r requirements.txt (line 12), -r requirements.txt (line 14) and resampy==0.2.2 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested resampy==0.2.2
libros... | open | 2024-01-03T14:41:22Z | 2024-01-03T16:13:27Z | https://github.com/Anjok07/ultimatevocalremovergui/issues/1077 | [] | kronkinatorix | 3 |
allenai/allennlp | nlp | 5,432 | ConfigurationError: srl not in acceptable choices for dataset_reader.type | Get the following error when I run the following code:
```
from allennlp.predictors.predictor import Predictor
download = "https://storage.googleapis.com/allennlp-public-models/bert-base-srl-2020.09.03.tar.gz"
predictor = Predictor.from_path(download)
```
Same is the case for the code below:
```
from al... | closed | 2021-10-06T12:36:47Z | 2021-11-06T22:50:10Z | https://github.com/allenai/allennlp/issues/5432 | [
"stale"
] | vinay1986 | 9 |
plotly/dash-table | plotly | 432 | With fixed rows, columns are as wide as the data and not the headers | In this example, "Date received" is cut-off as "2015-02-01" is shorter than that column name. But in the complaints column, the column width is as wide as the cell's content.

```python
import dash
from d... | open | 2019-05-14T04:36:50Z | 2023-04-27T09:34:57Z | https://github.com/plotly/dash-table/issues/432 | [
"bug"
] | chriddyp | 10 |
erdewit/ib_insync | asyncio | 692 | util.logToFile(path, pylogging.INFO) issues | Hello,
When using the logtofiles feature, the file becomes so large that it leads to problems. It seems that the operating system has limitations.
Additionally, log messages are captured from other standard modules like the request module.
Is it possible to support a rotating file setting, and is there a way t... | open | 2024-02-13T12:23:29Z | 2024-02-13T12:23:29Z | https://github.com/erdewit/ib_insync/issues/692 | [] | kaidaniel82 | 0 |
babysor/MockingBird | pytorch | 642 | fmax 8000,会对模型有什么影响吗 | 想做小样本学习100样本左右,微调 tacotron 的 decoder 部分
<img width="433" alt="image" src="https://user-images.githubusercontent.com/32589854/178209451-0e75d0e2-f941-4030-aecf-4182328886db.png">
#507
想知道fmax8000的话会对语音的相似度有什么影响吗,另外输出的这个 attention 图代表什么呢,横轴是步数,纵轴是attention,比如下面的这些输出该怎么分析呢,横轴代表步数的话为什么不是递增呢,这个图该怎么看呀
万分感谢!!希望可以深入交流
![... | open | 2022-07-11T07:22:39Z | 2022-07-16T11:04:37Z | https://github.com/babysor/MockingBird/issues/642 | [] | SG-XM | 2 |
custom-components/pyscript | jupyter | 509 | Feature Request: Service Closure | The ability to use closure for Triggers and being able to define a range of trigger functions in a loop is very handy. Could you also extend this functionality to @service definitions? Looks like its not possible to create multiple services with
```
all_services = []
for i in range(10):
@service(f"test.service... | closed | 2023-08-08T00:58:32Z | 2023-08-08T03:50:06Z | https://github.com/custom-components/pyscript/issues/509 | [] | rajeee | 2 |
gee-community/geemap | streamlit | 736 | Add a timelapse module | Add a timelapse dedicated to creating timelapse from common satellite imagery, e.g., Landsat, Sentinel, MODIS, ERA5.
References:
- https://github.com/initze/GEE_visualizations/blob/main/geemap_ERA5.ipynb
- https://twitter.com/i_nitze/status/1455975718463184902 | closed | 2021-11-03T19:53:05Z | 2021-11-11T04:10:46Z | https://github.com/gee-community/geemap/issues/736 | [
"Feature Request"
] | giswqs | 1 |
mljar/mercury | jupyter | 426 | Change the order of package installation and secrets provision | closed | 2024-03-07T10:31:16Z | 2024-03-07T10:35:32Z | https://github.com/mljar/mercury/issues/426 | [] | apjanusz | 0 | |
plotly/dash-bio | dash | 164 | Dash Needle Plot: Reset plot viewing window on dataset change | When changing a dataset, the zoom window at the bottom of the plot should also reset to view the entire x axis.

| closed | 2019-02-07T20:55:59Z | 2021-05-04T20:27:45Z | https://github.com/plotly/dash-bio/issues/164 | [
"App QA"
] | jackparmer | 4 |
sloria/TextBlob | nlp | 281 | Sigularize and Lemmatize could use some error handling | I have a some text `text = 'This is some of my long text that goes on ....'`. I want to get all the words `lemmatized` and in their singular form.
As seen in other errors like #274 , this can happen when a word is already in its base or singular form, e.g. `your ---> ymy` and `this ---> thi`, etc.
Ideally:
``... | open | 2019-08-16T13:22:08Z | 2019-08-16T13:22:08Z | https://github.com/sloria/TextBlob/issues/281 | [] | SumNeuron | 0 |
nonebot/nonebot2 | fastapi | 2,503 | Plugin: nonebot-plugin-imagemaster | ### PyPI 项目名
nonebot-plugin-imagemaster
### 插件 import 包名
nonebot_plugin_imagemaster
### 标签
[{"label":"修图","color":"#52d4ea"}]
### 插件配置项
_No Response_
| closed | 2023-12-28T06:52:02Z | 2023-12-29T08:24:40Z | https://github.com/nonebot/nonebot2/issues/2503 | [
"Plugin"
] | phquathi | 9 |
ultralytics/ultralytics | computer-vision | 19,617 | RuntimeError: torch.cat(): expected a non-empty list of Tensors | ### Search before asking
- [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/orgs/ultralytics/discussions) and found no similar questions.
### Question
My kitti_seg.yaml is as follows:
train: /home/imrl-pgt/yolo_ws/src/ultralyt... | open | 2025-03-10T11:51:01Z | 2025-03-11T09:25:34Z | https://github.com/ultralytics/ultralytics/issues/19617 | [
"question",
"segment"
] | gyutae1009 | 2 |
docarray/docarray | fastapi | 1,115 | Proto stack optimization | # Context
TODO when stack mode and the proto are more stable.
`DocumentArrayStack` should optimize the proto serialization. It should store its columns directly stacked so that we don't do the underway step to stack again after the deserialization of the proto.
- [x] implement a `DocumentArrayProtoStack` where we st... | closed | 2023-02-09T13:41:09Z | 2023-03-14T09:33:49Z | https://github.com/docarray/docarray/issues/1115 | [] | samsja | 0 |
Avaiga/taipy | data-visualization | 1,613 | [🐛 BUG] Can't edit tabular data in data node viewer | ### What went wrong? 🤔
I have a Taipy application. I have created a new scenario and want to edit the "demand" data node. In the data node viewer, when I press edit data, the data tab shows a lock sign with hovertext "locked by you" and I can't edit the data:
, and the call hangs. The string in question is taken from Wikipedia and is the result of some vandalism. It can be generated by this
```
text = 'swirley thing w' + 'e' * (884779 - len('swirley thing ... | closed | 2021-10-26T21:56:15Z | 2021-11-26T11:58:19Z | https://github.com/nltk/nltk/issues/2866 | [
"bug",
"tokenizer",
"critical"
] | raffienficiaud | 4 |
unit8co/darts | data-science | 1,981 | Cumulative Sum on Timeseries class | I make frequent use of the TimeSeries.diff() function for forecasting, I was hoping to add the reverse of the function `cumulative sum aka cumsum` to the TimeSeries class in order to provide opposite functionality. I've found this useful in conjunction with baseline models such as NaiveMovingAverage in order to provide... | closed | 2023-09-06T02:27:36Z | 2023-09-14T10:18:50Z | https://github.com/unit8co/darts/issues/1981 | [
"improvement"
] | Eliotdoesprogramming | 2 |
snarfed/granary | rest-api | 103 | render <video>s | we currently only render links and thumbnail/poster images for videos. we should render actual `<video class="u-video">`s!
inspired by microformats/h-entry#5.
example silo copies of http://tantek.com/2016/055/t12/fast-walk-hike-beach-video
* https://brid.gy/post/flickr/39039882@N00/24615676754
* https://brid.... | closed | 2017-03-03T00:16:29Z | 2017-12-09T01:14:24Z | https://github.com/snarfed/granary/issues/103 | [
"now"
] | snarfed | 2 |
KevinMusgrave/pytorch-metric-learning | computer-vision | 41 | Easy Triplet Hard Negative Mining | Add this method to the miners: http://openaccess.thecvf.com/content_WACV_2020/papers/Xuan_Improved_Embeddings_with_Easy_Positive_Triplet_Mining_WACV_2020_paper.pdf | closed | 2020-04-10T19:36:14Z | 2020-12-11T03:54:55Z | https://github.com/KevinMusgrave/pytorch-metric-learning/issues/41 | [
"new algorithm request",
"in progress"
] | KevinMusgrave | 11 |
sammchardy/python-binance | api | 1,324 | Binance api problem | there are a lot of coins on the binance futures market with a different number of symbols in the price after the decimal point, examples: MKR 632.9, LTC 80.32, EOS 0.834, BAT 0.2124, KNC 0.59910, etc. If the price is rounded up to 2 symbols, then only coins with 1 or 2 symbols after the decimal point are correctly ope... | open | 2023-05-13T23:08:12Z | 2023-05-15T05:24:36Z | https://github.com/sammchardy/python-binance/issues/1324 | [] | helpmeet | 1 |
explosion/spaCy | deep-learning | 13,547 | ImportError: cannot import name symnols | <!-- NOTE: For questions or install related issues, please open a Discussion instead. -->
## How to reproduce the behaviour
trying to import `Corpus` or `Example` as shown here: https://spacy.io/usage/training#custom-code-readers-batchers
```python
from spacy.training import Corpus
```
produces import err... | closed | 2024-06-25T12:38:48Z | 2024-07-26T00:02:37Z | https://github.com/explosion/spaCy/issues/13547 | [] | fschlz | 2 |
deeppavlov/DeepPavlov | tensorflow | 1,010 | 'ValueError: not enough values to unpack' in conll2003_reader.py | Hello.
I've got train files from http://files.deeppavlov.ai/deeppavlov_data/conll2003_v2.tar.gz
When I'm trying to read them by "conll2003_reader" I see got the follow error:
> deeppavlov/dataset_readers/conll2003_reader.py in parse_ner_file(self, file_name)
> 84 pos_tags.append(pos)
>... | closed | 2019-09-23T15:03:52Z | 2019-09-26T13:56:31Z | https://github.com/deeppavlov/DeepPavlov/issues/1010 | [] | ldSidious | 5 |
jwkvam/bowtie | jupyter | 64 | creating new components docs needs some editing | to reflect recent changes to the python component api | closed | 2016-12-13T17:25:00Z | 2016-12-14T21:10:09Z | https://github.com/jwkvam/bowtie/issues/64 | [
"documentation"
] | jwkvam | 0 |
koaning/scikit-lego | scikit-learn | 298 | [FEATURE] FairnessWarning | if we have datasets where fairness is an issue, maybe it is naive to assume that folks will read the documentation. raising an explicit fairness warning might be a good idea. it's part of what could have gone better with the load_boston dataset.
@MBrouns agree? | closed | 2020-02-19T23:16:03Z | 2020-05-02T08:46:27Z | https://github.com/koaning/scikit-lego/issues/298 | [
"enhancement",
"good first issue"
] | koaning | 1 |
iperov/DeepFaceLab | machine-learning | 731 | Some issues with reading faces | ## Expected behavior
Reading faces from video.
## Actual behavior
Functions "Video A,B , Images A,b" works, Faces A, B didnt work so MODEL ,SWAPS and MOVIE dont work too
## Steps to reproduce
This code is showing
Traceback (most recent call last):
File "faceswap\faceswap.py", line 8, in <module>
... | open | 2020-04-28T14:28:23Z | 2023-06-08T20:39:01Z | https://github.com/iperov/DeepFaceLab/issues/731 | [] | TheKingLozo | 3 |
pydantic/pydantic | pydantic | 11,344 | Json[T] is very awkward to use | I'm in the unfortunate position where I have to both deserialize from and serialize to a json in json.
Deserializing works very well, however Serializing is very awkward.
I have the following structure where the outer json describes the type of the inner json.
````python
from typing import Literal
from pydantic impor... | closed | 2025-01-25T07:24:02Z | 2025-02-05T14:59:56Z | https://github.com/pydantic/pydantic/issues/11344 | [] | spacemanspiff2007 | 12 |
sammchardy/python-binance | api | 862 | Websocket freezing | Hello!
I noticed that after some time my BinanceSocketManager stalls on the await ms.recv() line. The time it freezes is constantly between 60-65 seconds. After the time it starts working again for a short moment until it freezes again for the same period of time.
I can get rid of the error by removing the line aw... | open | 2021-05-18T08:51:11Z | 2021-06-07T18:09:11Z | https://github.com/sammchardy/python-binance/issues/862 | [] | kokojiji01 | 3 |
httpie/cli | rest-api | 627 | show Garbled message when Content-Type doesn't have charset part | many of website's HTTP header's Content-Type part does not have Charset part, just like:
> Content-Type: text/html
then shows garbled message in terminal/iTerm2 in macOS 10.13 when the html contains Chinese Character which encode with utf8 (which shows OK with curl), but when I change the header like this:
> Cont... | closed | 2017-11-05T15:20:43Z | 2021-09-29T18:22:20Z | https://github.com/httpie/cli/issues/627 | [] | hh-in-zhuzhou | 1 |
roboflow/supervision | tensorflow | 1,333 | How to determine the source coordinates better in computer vision speed estimation | ### Search before asking
- [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar feature requests.
### Question
blog https://blog.roboflow.com/estimate-speed-computer-vision/
:
... | open | 2021-06-01T20:25:53Z | 2021-06-02T00:06:37Z | https://github.com/SciTools/cartopy/issues/1796 | [] | hhsprings | 0 |
OthersideAI/self-operating-computer | automation | 7 | wrong coordinate | I asked it to play Spotify and it guessed the play bottom at x 78% y 46% which is wrong.

maybe for a more detailed guess we can have more gridlines?
something like this maybe
![... | closed | 2023-11-28T11:30:55Z | 2023-12-21T00:49:06Z | https://github.com/OthersideAI/self-operating-computer/issues/7 | [] | daaniyaan | 11 |
assafelovic/gpt-researcher | automation | 489 | pass config.json to GPTResearcher | hi,
i want to pass config.json into GPTResearcher like: researcher = GPTResearcher(query=query, report_type="research_report", config_path='config.json')
but the GPTResearcher uses the default config.why?
the json file is:
{
"SEARCH_RETRIEVER": "serpapi",
"EMBEDDING_PROVIDER": "azureopenai",
"LLM_PROV... | closed | 2024-05-10T17:20:02Z | 2024-05-14T15:58:56Z | https://github.com/assafelovic/gpt-researcher/issues/489 | [] | saeid976 | 1 |
pytest-dev/pytest-qt | pytest | 457 | 3 tests fail | ```
========================================================================================== FAILURES ==========================================================================================
_________________________________________________________________________________ test_logging_fails_ignore _______________... | open | 2022-10-08T03:42:58Z | 2024-12-17T09:36:30Z | https://github.com/pytest-dev/pytest-qt/issues/457 | [] | yurivict | 3 |
tortoise/tortoise-orm | asyncio | 1,919 | (2013, 'Lost connection to MySQL server during query) | my database config is :
TORTOISE_ORM = {
"connections": {
"default": {
"engine": "tortoise.backends.mysql",
"credentials": {
"host": mysql_host,
"port": mysql_port,
"user": mysql_user,
"passwo... | open | 2025-03-07T06:44:19Z | 2025-03-24T19:51:35Z | https://github.com/tortoise/tortoise-orm/issues/1919 | [] | rhmb-ai | 5 |
plotly/dash-table | plotly | 50 | Pressing "Enter" to confirm changes to cell / dataframe does not work in the last row | Normally, pressing "Enter" while editing a cell value triggers the dataframe update and moves the active cell to the cell directly below.
Expected behavior:
Pressing "Enter" while editing a cell in the last row updates the dataframe. Focus remains on the current cell. | closed | 2018-08-22T13:41:38Z | 2018-09-10T17:00:06Z | https://github.com/plotly/dash-table/issues/50 | [] | Marc-Andre-Rivet | 0 |
python-gino/gino | asyncio | 608 | [question] Any advice on factory_boy usage/replacement? | Does anyone have a clue how we can utilize [factory_boy](https://github.com/FactoryBoy/factory_boy) with GINO? Coming from Django I got very used to using factories in pytest tests.
I guess I should override the `_create()` function in the factory model class, but since it is a synchronous function I am having trouble... | closed | 2019-12-07T03:08:21Z | 2019-12-07T18:04:56Z | https://github.com/python-gino/gino/issues/608 | [] | remarkov | 1 |
nolar/kopf | asyncio | 300 | Print statement from example does not show up in logs for me but logging lib works | > <a href="https://github.com/janvdvegt"><img align="left" height="50" src="https://avatars3.githubusercontent.com/u/12046878?v=4"></a> An issue by [janvdvegt](https://github.com/janvdvegt) at _2020-01-26 20:37:09+00:00_
> Original URL: https://github.com/zalando-incubator/kopf/issues/300
>
## Long story... | open | 2020-08-18T20:03:07Z | 2022-02-10T10:48:36Z | https://github.com/nolar/kopf/issues/300 | [
"bug",
"archive"
] | kopf-archiver[bot] | 1 |
microsoft/nni | data-science | 5,329 | Encounter ModuleNotFoundError when run Darts from Example | **Describe the issue**:
Encounter ModuleNotFoundError when run Darts Demo code from Example folders
(/examples/nas/oneshot/darts/search.py)
**Environment**:
- NNI version: 2.10
- Training service: local
- Client OS: Linux
- Python version: 3.10.9
- PyTorch/TensorFlow version: 1.13.1
- CUDA: 11.6
- Is cond... | closed | 2023-01-31T16:21:44Z | 2023-02-17T08:55:12Z | https://github.com/microsoft/nni/issues/5329 | [] | YichaoCode | 6 |
pytorch/vision | machine-learning | 8,628 | Suitable augmentation of Keras in Pytorch | I am reproducing a code (which is in tensorflow/keras) in which the following augmentations are applied.
ImageDataGenerator( zoom_range=0.1, fill_mode='reflect', width_shift_range=0.4, height_shift_range=0.4, rotation_range=90)
Are these augmentations available in Pytorch? I couldn't find them. Any help would be ... | closed | 2024-09-03T19:21:06Z | 2024-09-04T08:53:01Z | https://github.com/pytorch/vision/issues/8628 | [] | jawi289o | 1 |
junyanz/iGAN | computer-vision | 21 | The dataset link is not found | The dataset link is not found. (https://people.eecs.berkeley.edu/~junyanz/projects/gvm/datasets/$FILE.zip)
Would you please give a new URL link? | closed | 2018-04-04T04:03:54Z | 2018-06-16T07:14:19Z | https://github.com/junyanz/iGAN/issues/21 | [] | jichunshen | 1 |
robotframework/robotframework | automation | 5,058 | Elapsed time is not updated when merging results | `rebot` of RF7 produces an incorrect total suite runtime when merging results - compared to RF6.
With some lines of bash, I created a reproducable example where I execute the following steps with both RF6 and 7:
1. Run the suite with `-v FAIL:yes` so that the first test case will FAIL. Test 2 and 3 have a sleep tim... | closed | 2024-02-20T10:52:28Z | 2025-01-28T08:15:53Z | https://github.com/robotframework/robotframework/issues/5058 | [
"bug",
"priority: medium",
"effort: small"
] | simonmeggle | 2 |
scrapy/scrapy | python | 5,796 | ItemLoader instantiated from a base item does not create a new item instead keeps reference to same item | <!--
Thanks for taking an interest in Scrapy!
If you have a question that starts with "How to...", please see the Scrapy Community page: https://scrapy.org/community/.
The GitHub issue tracker's purpose is to deal with bug reports and feature requests for the project itself.
Keep in mind that by filing an iss... | closed | 2023-01-17T19:57:18Z | 2023-01-18T08:45:08Z | https://github.com/scrapy/scrapy/issues/5796 | [] | theumairahmed | 3 |
opengeos/leafmap | jupyter | 180 | add_cog_mosaic fails - does new Titiler version support creating MosaicJSONs? | ### Environment Information
- leafmap version: 0.7.2
- Python version: 3.9
- Operating System: Windows
### Description
I am trying to add a mosaic of COGs to leafmap, using the following code:
```
m.add_cog_mosaic(["https://opendata.digitalglobe.com/events/california-fire-2020/post-event/2020-08-14/p... | closed | 2022-01-14T09:59:52Z | 2022-01-15T00:36:09Z | https://github.com/opengeos/leafmap/issues/180 | [
"bug"
] | robintw | 3 |
JaidedAI/EasyOCR | pytorch | 901 | EasyOCR Links are not reachable. | I am having a problem reaching the direct links for `https://jaided.ai/` | open | 2022-12-06T13:24:29Z | 2022-12-19T01:49:20Z | https://github.com/JaidedAI/EasyOCR/issues/901 | [] | engahmed1190 | 2 |
aio-libs/aiopg | sqlalchemy | 699 | The default read committed isolation level is the wrong choice | Hello,
I have a project where I experienced serialization failures on a statement:
```
select 1 from file where (id, group_id) = (%s, %s) for update
```
resulting in errors like:
```
psycopg2.errors.SerializationFailure: could not serialize access due to concurrent update
```
now, I happen to know t... | closed | 2020-07-16T11:04:21Z | 2020-12-21T06:07:35Z | https://github.com/aio-libs/aiopg/issues/699 | [] | dvarrazzo | 9 |
aio-libs/aiohttp | asyncio | 9,850 | FTP download broken in client >= 3.10.0 | ### Describe the bug
aiohttp versions prior 3.9.5 can download file from FTP via HTTP-proxy. But starting from version 3.10.0, this code throws an exception `aiohttp.client_exceptions.NonHttpUrlClientError: ftp://demo:password@test.rebex.net/readme.txt`
### To Reproduce
```python
async with aiohttp.ClientSessio... | closed | 2024-11-13T07:29:14Z | 2024-11-13T14:22:09Z | https://github.com/aio-libs/aiohttp/issues/9850 | [
"bug"
] | poofeg | 4 |
LibrePhotos/librephotos | django | 881 | Public photo share failed | # 🐛 Bug Report
* [x] 📁 I've Included a ZIP file containing my librephotos `log` files (error log pasted below)
* [x] ❌ I have looked for similar issues (including closed ones)
* [x] 🎬 (If applicable) I've provided pictures or links to videos that clearly demonstrate the issue
## 📝 Description of issue:
Lo... | closed | 2023-06-12T13:32:47Z | 2023-08-02T20:09:58Z | https://github.com/LibrePhotos/librephotos/issues/881 | [
"bug"
] | J4gQBqqR | 2 |
Evil0ctal/Douyin_TikTok_Download_API | api | 340 | /douyin_video_comments/接口怎么了,scraper里没有get_douyin_video_comments方法 | 在启动web_api后调用douyin_video_comments接口,报错,原因是 'Scraper' object has no attribute 'get_douyin_video_comments' | closed | 2024-03-26T08:36:38Z | 2024-04-23T05:02:37Z | https://github.com/Evil0ctal/Douyin_TikTok_Download_API/issues/340 | [
"BUG"
] | Azulsolitan | 2 |
schemathesis/schemathesis | graphql | 2,376 | [BUG] Links being followed on example tests | ### Checklist
- [x] I checked the [FAQ section](https://schemathesis.readthedocs.io/en/stable/faq.html#frequently-asked-questions) of the documentation
- [x] I looked for similar issues in the [issue tracker](https://github.com/schemathesis/schemathesis/issues)
- [x] I am using the latest version of Schemathesis
... | closed | 2024-07-25T17:33:41Z | 2024-08-10T11:07:30Z | https://github.com/schemathesis/schemathesis/issues/2376 | [
"Priority: Medium",
"Type: Bug",
"Specification: OpenAPI",
"Difficulty: Beginner",
"Core: Stateful testing"
] | ravy | 2 |
nteract/papermill | jupyter | 509 | Update C# translator to support dotnet-interactive, include .net-fsharp and .net-powershell kernels | In the most recent preview of .NET's support for Jupyter ([.NET Interactive](https://github.com/dotnet/interactive)), we changed the name of the executable from `dotnet-try` to `dotnet-interactive`, which now supports three .NET languages: C#, F#, and PowerShell: https://devblogs.microsoft.com/dotnet/net-interactive-is... | closed | 2020-05-28T15:46:53Z | 2020-08-19T14:40:16Z | https://github.com/nteract/papermill/issues/509 | [
"enhancement",
"help wanted",
"new-contributor-friendly"
] | jonsequitur | 5 |
sinaptik-ai/pandas-ai | data-science | 595 | Refactor `_format_results` method in `SmartDatalake` to use `ResponseParser` | ### 🚀 The feature
Currently, the `_format_results` method in the `SmartDatalake` class contains both formatting and processing logic for different types of results. To make the code more modular and maintainable, I propose refactoring this method to delegate the formatting and processing of results to a dedicated `Re... | closed | 2023-09-26T17:30:24Z | 2024-06-01T00:21:37Z | https://github.com/sinaptik-ai/pandas-ai/issues/595 | [
"enhancement"
] | gventuri | 1 |
assafelovic/gpt-researcher | automation | 1,108 | Using Fireworks models in the example collab notebook throws an OpenAI API error | **Describe the bug**
This could easily be user error, but I'm trying to run the collab notebook using the Fireworks API rather than the OpenAI API and I'm getting the following error:
```
⚠️ Error in reading JSON, attempting to repair JSON
Error using json_repair: the JSON object must be str, bytes or bytearray, not N... | closed | 2025-02-04T21:14:37Z | 2025-02-09T00:33:20Z | https://github.com/assafelovic/gpt-researcher/issues/1108 | [] | Ajacmac | 5 |
ranaroussi/yfinance | pandas | 1,952 | 401 Client Error: Unauthorized for url: | ### Describe bug
An issue occurs when attempting to fetch stock information using the yfinance library. The request results in a 401 Client Error: Unauthorized.
import yfinance as yf
msft = yf.Ticker("MSFT")
# get all stock info
msft.info
401 Client Error: Unauthorized for url: https://query2.finance.yaho... | closed | 2024-05-29T20:39:17Z | 2025-02-16T18:42:21Z | https://github.com/ranaroussi/yfinance/issues/1952 | [] | KingTurbo | 9 |
reloadware/reloadium | django | 7 | Incompatibility with pydash library | pydash is a library to facilitate the work with data structures.
Reloadium library craches when importing pydash module.
This code: `import pydash`
raises this error when running or debugging:
```
Traceback (most recent call last):
File "C:\Users\ludovic.marce\Documents\Lancaster\auto\bacasable\nested_dic... | closed | 2022-04-27T09:19:15Z | 2022-05-12T16:50:23Z | https://github.com/reloadware/reloadium/issues/7 | [] | Doxxxxxx | 1 |
sqlalchemy/alembic | sqlalchemy | 1,103 | Allow --config to be a Python package or a file relative to that package | Hi.
I'm trying to distribute alembic migration files with my application. I want the user to basically `pip install my_app` then `alembic upgrade head`.
I can put the migration files directory inside the app along with alembic.ini (and modify setup.py and MANIFEST.in accordingly), but then, AFAIU, the user will n... | closed | 2022-10-19T08:59:21Z | 2023-11-06T23:47:59Z | https://github.com/sqlalchemy/alembic/issues/1103 | [
"use case"
] | lafrech | 5 |
roboflow/supervision | machine-learning | 1,366 | Metrics API | This issue aggregates the discussion and near-future plans to introduce metrics to supervision.
The first steps shall be enacted by the core Roboflow team, and then we'll open submissions for specific metrics for the community.
### I propose the following:
* Aim for ease of usage, compact API, sacrificing comple... | closed | 2024-07-16T12:52:52Z | 2024-07-17T12:06:20Z | https://github.com/roboflow/supervision/issues/1366 | [] | LinasKo | 4 |
litestar-org/polyfactory | pydantic | 550 | Enhancement: switch to type-lens | ### Summary
We have a lot of utility functions to help us figure out the various types from models and extract information from them. A lot of this is now included in [type-lens](https://github.com/litestar-org/type-lens), so we should be switching to using that instead.
cc: @peterschutt
### Basic Example
_No re... | open | 2024-05-17T02:25:30Z | 2025-03-20T15:53:16Z | https://github.com/litestar-org/polyfactory/issues/550 | [
"enhancement"
] | guacs | 0 |
hyperspy/hyperspy | data-visualization | 3,121 | Protect `axis` attribute for uniform data axes | #### Describe the bug
Currently, the `axis` attribute of uniform data axes can be changed (after initialization of the axis), though it should be defined by `offset` and `scale` only. Instead, it should be a protected attribute that can be changed only if `offset` and `scale` are changed, but not directly by user inpu... | open | 2023-03-31T09:19:27Z | 2023-03-31T09:19:27Z | https://github.com/hyperspy/hyperspy/issues/3121 | [
"type: bug"
] | jlaehne | 0 |
mljar/mljar-supervised | scikit-learn | 416 | How many tree are in my Random Forest? | In the summary page. I see the report on each classifier. One that I am pay attention most is `RandomForest`
```
Random Forest
n_jobs: -1
criterion: gini
max_features: 0.5
min_samples_split: 20
max_depth: 4
eval_metric_name: logloss
num_class: 13
explain_level: 0
```
My questions
1. Does `mljar` find the o... | closed | 2021-06-23T09:05:34Z | 2023-05-01T13:34:46Z | https://github.com/mljar/mljar-supervised/issues/416 | [] | elcolie | 5 |
sigmavirus24/github3.py | rest-api | 806 | Refactor Documentation for 1.0 | Let's make our documentation more than just API reference for the library.
- Let's have some narrative documentation to teach people how to explore the library and understand how to use it.
- Let's separate out the API reference documentation
- Let's improve our examples
- Let's improve our release notes | closed | 2018-03-22T02:54:02Z | 2021-11-01T01:08:43Z | https://github.com/sigmavirus24/github3.py/issues/806 | [] | sigmavirus24 | 1 |
pytorch/pytorch | numpy | 149,522 | DISABLED test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cuda_float16 (__main__.TestForeachCUDA) | Platforms: linux, slow
This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cuda_float16&suite=TestForeachCUDA&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorc... | open | 2025-03-19T15:43:21Z | 2025-03-19T15:43:26Z | https://github.com/pytorch/pytorch/issues/149522 | [
"triaged",
"module: flaky-tests",
"skipped",
"module: mta"
] | pytorch-bot[bot] | 1 |
kennethreitz/responder | graphql | 575 | GraphQL: Update Python dependencies | Any ideas how to verify updates to those?
- GH-573
- GH-574
It will probably be a manual procedure until there are software tests covering some of the details? Those won't be enough, will they?
https://github.com/kennethreitz/responder/blob/a698eaaab37e5a90f44681950474d2e4259bd9d3/tests/test_graphql.py#L6-L38... | open | 2024-10-31T06:27:41Z | 2024-10-31T06:27:41Z | https://github.com/kennethreitz/responder/issues/575 | [] | amotl | 0 |
pydantic/logfire | pydantic | 853 | Can this be used locally? | ### Question
Neither the description nor the documentation really make it clear from the start if this can be used purely locally but then authentication is required with logfire.pydantic.dev
So, if this cannot be used completely stand-alone please point this out to save people who do not want to register with some ... | open | 2025-02-10T10:21:40Z | 2025-02-14T16:51:57Z | https://github.com/pydantic/logfire/issues/853 | [
"Question"
] | johann-petrak | 1 |
serengil/deepface | deep-learning | 782 | DeepFace: Enforce Detection | Hi serengil,
I have passport-like images (i.e portrait image with face) and am processing them. However, as some of the images are low-res, I encounter the exception error where the model is not able to detect a face. As such, I added enforce_detection=False.
However, I realized that adding that flag and vectoriz... | closed | 2023-06-22T06:59:12Z | 2023-06-22T08:10:43Z | https://github.com/serengil/deepface/issues/782 | [
"question"
] | jsnleong | 1 |
psf/requests | python | 6,314 | RequestsDependencyWarning | Windows 11 (Professional); Pycharm 2022.3
Getting dependency warning in both Python 3.10 (latest) and Python 3.11 (latest). The code produces the desired results as well as a dependency warning is generated.
[python code]
<import requests
quote = requests.get(url="https://api.kanye.rest")
quote.raise_for_status()... | closed | 2022-12-21T21:06:52Z | 2022-12-21T21:11:39Z | https://github.com/psf/requests/issues/6314 | [] | thetechnodino | 1 |
deepfakes/faceswap | machine-learning | 1,139 | Lot of errors when no space left on device | **Describe the bug**
part of the log:
```shell
File "/Users/lzw/.conda/envs/faceswap/lib/python3.8/logging/__init__.py", line 1065, in flush
self.stream.flush()
OSError: [Errno 28] No space left on device
Call stack:
File "/Users/lzw/.conda/envs/faceswap/lib/python3.8/threading.py", line 890, in _bootstrap
... | closed | 2021-03-30T11:41:59Z | 2021-03-30T13:43:42Z | https://github.com/deepfakes/faceswap/issues/1139 | [] | lzwjava | 2 |
Esri/arcgis-python-api | jupyter | 1,272 | No _as_array function when calling from_table on a dbf file | **Describe the bug**
to_table throwing error when calling `from_table` on a `.dbf` file in arcgis pro 2.9.2.
function seems to be updated internally from `_as_array` to `_as_narray`.
Additional error when not passing a field argument as well as .da.SearchCursor doesn't expect a `None` value for the `field_names`... | closed | 2022-06-08T18:55:34Z | 2022-06-23T13:27:41Z | https://github.com/Esri/arcgis-python-api/issues/1272 | [
"bug"
] | cody-scott | 2 |
autokey/autokey | automation | 203 | Update PyPi to latest version | ## Classification:
Enhancement?
## Reproducibility:
Always
## Summary
PyPi is currently at 0.93.10 which is severely outdated.
## Steps to Reproduce (if applicable)
pip3 (or pip-3.x in FreeBSD) install autokey
## Expected Results
Latest version 0.95.4 should install
## Actual Results
Ou... | closed | 2018-10-29T21:15:51Z | 2018-10-30T21:57:34Z | https://github.com/autokey/autokey/issues/203 | [] | y2kbadbug | 1 |
xlwings/xlwings | automation | 1,640 | add 'vector' as a cross-platform format for plots in pictures.add | Translate to `svg` on Windows and `eps` on macOS. | closed | 2021-07-01T10:25:12Z | 2021-07-06T08:31:24Z | https://github.com/xlwings/xlwings/issues/1640 | [
"enhancement"
] | fzumstein | 0 |
deepspeedai/DeepSpeed | pytorch | 7,038 | [REQUEST] activation checkpoint API should have parity with Pytorch, keywords arguments not supported | **Is your feature request related to a problem? Please describe.**
`deepspeed.checkpointing.checkpoint` does not support keyword arguments. However `torch.utils.checkpoint.checkpoint` does support it, this makes it impossible to apply `deepspeed.checkpointing.checkpoint` as a direct replacement.
```python
from functo... | open | 2025-02-15T00:04:18Z | 2025-02-15T00:04:18Z | https://github.com/deepspeedai/DeepSpeed/issues/7038 | [
"enhancement"
] | AndreasMadsen | 0 |
jupyterlab/jupyter-ai | jupyter | 718 | /help not working due changes in `_format_help_message` | <!-- Welcome! Thank you for contributing. These HTML comments will not render in the issue.
Before creating a new issue:
* Search for relevant issues
* Follow the issue reporting guidelines:
https://jupyterlab.readthedocs.io/en/latest/getting_started/issue.html
-->
## Description
/help command throws error... | closed | 2024-04-06T08:49:48Z | 2024-04-12T16:24:24Z | https://github.com/jupyterlab/jupyter-ai/issues/718 | [
"bug"
] | michaelchia | 0 |
521xueweihan/HelloGitHub | python | 1,925 | java | ## 项目推荐
- 项目地址:仅收录 GitHub 的开源项目,请填写 GitHub 的项目地址
- 类别:请从中选择(C、C#、C++、CSS、Go、Java、JS、Kotlin、Objective-C、PHP、Python、Ruby、Swift、其它、书籍、机器学习)
- 项目后续更新计划:
- 项目描述:
- 必写:这是个什么项目、能用来干什么、有什么特点或解决了什么痛点
- 可选:适用于什么场景、能够让初学者学到什么
- 描述长度(不包含示例代码): 10 - 256 个字符
- 推荐理由:令人眼前一亮的点是什么?解决了什么痛点?
- 示例代码:(可选)长度:1-20 行
... | closed | 2021-10-14T08:50:22Z | 2021-10-14T08:50:36Z | https://github.com/521xueweihan/HelloGitHub/issues/1925 | [
"恶意issue"
] | panTTT | 1 |
vitalik/django-ninja | rest-api | 1,323 | default 422 validation schema in swagger [fastapi] |
I would like to see the default error diagram as fastapi
<img width="1345" alt="Screenshot 2024-10-21 at 12 36 07" src="https://github.com/user-attachments/assets/53caafaa-4ea0-485c-98fd-66d677ff4b7a">
| open | 2024-10-21T07:36:26Z | 2025-01-22T20:11:55Z | https://github.com/vitalik/django-ninja/issues/1323 | [] | begyy | 2 |
nicodv/kmodes | scikit-learn | 102 | Question about k-prototypes ordinal variables | How can I apply ordinal variable in kprototypes??
For example, I have categorical income level variable from 1 to 7.
The higher value means the higher income.
The difference between income level 1 and 2 differs from the difference between income level 1 and 7.
So, I want to apply the order difference.
+ I ha... | closed | 2019-01-29T16:08:29Z | 2019-02-04T21:49:03Z | https://github.com/nicodv/kmodes/issues/102 | [
"question"
] | jiyelee14 | 2 |
glumpy/glumpy | numpy | 15 | Standard transforms | ### Implement standard transforms
Implement & document standard transforms
- [x] Polar
- [x] Translate
- [x] Rotate
- [x] Linear scale
- [x] Log scale
- [x] Power scale
- [x] Perspective
- [x] Orthographic
- [x] PVM (Projection, View, Model)
- [x] Trackball
- [x] PanZoom
| closed | 2015-01-02T20:00:30Z | 2015-01-17T18:16:44Z | https://github.com/glumpy/glumpy/issues/15 | [
"1.0 Release"
] | rougier | 0 |
Significant-Gravitas/AutoGPT | python | 8,677 | Condition Block should support strings - It currently only supports numbers | For example "text" == "text"
<img src="https://uploads.linear.app/a47946b5-12cd-4b3d-8822-df04c855879f/f81d72d6-5ff9-4356-8bfa-a7ed4e7c2184/93334572-7717-4260-9880-7bf40eb683a1?signature=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwYXRoIjoiL2E0Nzk0NmI1LTEyY2QtNGIzZC04ODIyLWRmMDRjODU1ODc5Zi9mODFkNzJkNi01ZmY5LTQzNTYtOGJmYS1... | closed | 2024-11-17T15:35:26Z | 2024-12-10T17:51:39Z | https://github.com/Significant-Gravitas/AutoGPT/issues/8677 | [] | Torantulino | 1 |
kymatio/kymatio | numpy | 457 | Separate testing of CPU tensor errors in torch_skcuda backend | Right now, these tests are sprinkled in among the rest. Would be more straightforward to have them in separate tests to check them once and for all. | open | 2019-11-28T03:39:54Z | 2020-03-03T17:00:32Z | https://github.com/kymatio/kymatio/issues/457 | [] | janden | 1 |
Anjok07/ultimatevocalremovergui | pytorch | 1,574 | error in converting file | Last Error Received:
Process: Ensemble Mode
If this error persists, please contact the developers with the error details.
Raw Error Details:
ModelLoadingError: "Invalid checksum for file C:\Users\my pc\AppData\Local\Programs\Ultimate Vocal Remover\models\Demucs_Models\v3_v4_repo\955717e8-8726e21a.th, expect... | open | 2024-10-01T08:57:22Z | 2024-10-01T08:57:22Z | https://github.com/Anjok07/ultimatevocalremovergui/issues/1574 | [] | Ricky4270 | 0 |
babysor/MockingBird | pytorch | 418 | synthesizer跑到到1500步就出错,有高手知道是怎么回事吗 | 下面是日志:
{| Epoch: 143/910 (10/11) | Loss: 0.3434 | 1.1 steps/s | Step: 1k | }{| Epoch: 143/910 (11/11) | Loss: 0.3442 | 1.1 steps/s | Step: 1k | }
{| Epoch: 144/910 (11/11) | Loss: 0.3435 | 1.1 steps/s | Step: 1k | }
{| Epoch: 145/910 (2/11) | Loss: 0.3433 | 1.1 steps/s | Step: 1k | }Traceback (most recent call last)... | open | 2022-03-03T00:30:44Z | 2022-03-06T01:30:44Z | https://github.com/babysor/MockingBird/issues/418 | [] | lijielijie | 7 |
521xueweihan/HelloGitHub | python | 2,753 | 【项目推荐】搜集全网最全的1000+Telegram群组项目 | ## 推荐项目
<!-- 这里是 HelloGitHub 月刊推荐项目的入口,欢迎自荐和推荐开源项目,唯一要求:请按照下面的提示介绍项目。-->
<!-- 点击上方 “Preview” 立刻查看提交的内容 -->
<!--仅收录 GitHub 上的开源项目,请填写 GitHub 的项目地址-->
- 项目地址:https://github.com/itgoyo/TelegramGroup
<!--请从中选择(C、C#、C++、CSS、Go、Java、JS、Kotlin、Objective-C、PHP、Python、Ruby、Rust、Swift、其它、书籍、机器学习)-->
- 类别:其他
... | closed | 2024-05-24T03:27:48Z | 2024-05-24T06:40:40Z | https://github.com/521xueweihan/HelloGitHub/issues/2753 | [] | itgoyo | 0 |
blacklanternsecurity/bbot | automation | 2,305 | Possibility to add -rate (rate limiting) in ffuz | **Description**
Which feature would you like to see added to BBOT? What are its use cases?
Hello,
ffuz has the following option :
`-rate Rate of requests per second (default: 0)`
It is possible in nuclei through bbot to add a rate limit, I think it may be usefull to add a rate limit into ffuz too.
I... | closed | 2025-02-24T14:44:52Z | 2025-02-24T19:32:47Z | https://github.com/blacklanternsecurity/bbot/issues/2305 | [
"enhancement"
] | 4FunAndProfit | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.