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
ResidentMario/geoplot
matplotlib
225
Morphological tesselation gallery example
This would be a really neat example for the gallery. For background see this tweet: https://twitter.com/ResidentMario/status/1266789805762977792
closed
2020-05-31T01:57:41Z
2022-02-27T03:18:27Z
https://github.com/ResidentMario/geoplot/issues/225
[ "enhancement" ]
ResidentMario
0
ipython/ipython
data-science
14,234
Secure coding warning
When I run the ipython command in macOS Terminal, I get the following warning message immediately: ``` In [1]: 2023-11-02 03:53:11.250 Python[25917:5218283] WARNING: Secure coding is not enabled for restorable state! Enable secure coding by implementing NSApplicationDelegate.applicationSupportsSecureRestorableState...
open
2023-11-02T01:07:49Z
2023-12-22T19:26:24Z
https://github.com/ipython/ipython/issues/14234
[]
apaksoy
4
pyg-team/pytorch_geometric
pytorch
9,165
torch_geometric InMemoryDataset doesn't load data
### 🐛 Describe the bug Here I have the dataset definition: ``` class MolecularShiftsDataset(InMemoryDataset): def __init__( self, dataset: pd.DataFrame, encoding: str, sdf: SDMolSupplier, name: str = "NMR_FF", root="data/graph_datasets/", edge_at...
closed
2024-04-08T13:05:12Z
2024-04-23T10:17:43Z
https://github.com/pyg-team/pytorch_geometric/issues/9165
[ "bug" ]
zarkoivkovicc
2
smarie/python-pytest-cases
pytest
216
Improve the `current_cases` fixture: when a case depends on a parametrized fixture, add the fixture parameters
In the `current_cases` fixture, the entries for cases currently contain the id, case function, and a dict of parameters. I am not sure that this dict of parameters would contain fixture parameters if the case requires a fixture. We should at least add a unit test, and make sure they work :)
open
2021-06-05T09:02:06Z
2021-06-05T09:02:06Z
https://github.com/smarie/python-pytest-cases/issues/216
[ "enhancement" ]
smarie
0
plotly/dash
data-visualization
2,478
[BUG] dcc.Link firing twice with multipage app
**Describe your context** I have a multipage app where I want to keep the same header for all pages and update the page content with links. Furthermore, page content can also be multi-page content, with a sidebar with links which update the page sub-content. Updating single page content works fine, but when I have a...
closed
2023-03-28T13:29:15Z
2023-03-28T19:05:11Z
https://github.com/plotly/dash/issues/2478
[]
WWakker
1
rougier/from-python-to-numpy
numpy
9
Quick references chapter
* [x] Data type * [x] Creation * [x] Indexing * [x] Reshaping * [x] Broadcasting
closed
2016-12-12T13:52:40Z
2016-12-20T13:41:31Z
https://github.com/rougier/from-python-to-numpy/issues/9
[ "Done", "Needs review" ]
rougier
0
custom-components/pyscript
jupyter
25
import file in pyscript directory
I've tried several different methods of importing another file in the pyscript directory. ``` pyscript/ test.py followme.py ``` In `test.py` I have: ``` import followme from . import followme from .followme import follow_me ``` I even tried making it a package: ``` pyscript/ test.py ...
closed
2020-09-25T14:01:39Z
2020-10-01T12:15:15Z
https://github.com/custom-components/pyscript/issues/25
[]
dlashua
15
unit8co/darts
data-science
2,204
[BUG] window_transform on TimeSeries with hierarchy
**Describe the bug** window_transform on TimeSeries with hierarchy raises ```python ValueError: The keys of the hierarchy must be time series components ``` **To Reproduce** ```python from darts import TimeSeries, concatenate from darts.datasets import AustralianTourismDataset # Temp tourism_series = Aust...
closed
2024-02-02T19:02:50Z
2024-02-24T12:37:31Z
https://github.com/unit8co/darts/issues/2204
[ "bug" ]
novablinkicelance
0
tflearn/tflearn
data-science
479
Using fit with mini batch
I find tflearn very very useful. Thanks! I am using a very large dataset in hdf5 format and I am encountering a very very low training speed on the GPU. I assume this is due to the I/O operations since does not happen when I am not using HDF5. I would like to ask if the training could be performed with mini batch...
open
2016-11-23T11:59:30Z
2016-12-20T15:13:14Z
https://github.com/tflearn/tflearn/issues/479
[]
ghost
2
s3rius/FastAPI-template
asyncio
167
Using Mysql as the db is not working
when selecting the mysql database, the installation breaks in this line: ```• Installing mypy (1.3.0) • Installing mysqlclient (2.1.1): Failed ChefBuildError Backend subprocess exited when trying to invoke get_requires_for_build_wheel /bin/sh: mysql_config: command not found /bin/sh: mariadb_c...
open
2023-05-30T06:11:54Z
2023-05-30T07:47:29Z
https://github.com/s3rius/FastAPI-template/issues/167
[]
ramoseh
1
jadore801120/attention-is-all-you-need-pytorch
nlp
35
What command can continue running program?
Hi,thanks for your sharing. My program has broken down。 What command can continue running program at GPU? CUDA_VISIBLE_DEVICES=3 python train.py -data data/multi30k.atok.low.pt -save_model trained -save_mode best -proj_share_weight
closed
2017-11-22T10:44:20Z
2019-12-08T11:54:42Z
https://github.com/jadore801120/attention-is-all-you-need-pytorch/issues/35
[]
cong1
1
statsmodels/statsmodels
data-science
9,217
mixed effects model with nested random effects by statsmodels.formula.api.negativebinomial
mixed effects model with nested random effects The nested random effects specified after inputting the parameters do not take effect. my_formula2=‘y~a+b'’ **_statsmodels.formula.api.negativebinomial(my_formula2, data=data, groups=data["lei"] )_** statsmodels/base/model.py:130: ValueWarning: unknown ...
open
2024-04-18T09:22:11Z
2024-04-18T09:22:11Z
https://github.com/statsmodels/statsmodels/issues/9217
[]
mabaoweireadingene
0
Farama-Foundation/Gymnasium
api
651
[Bug Report] NormalizeReward wrapper only uses variance (doesn't use mean)
### Describe the bug ![image](https://github.com/Farama-Foundation/Gymnasium/assets/26421036/b7bfe727-339c-4623-8a39-a35dd3fe982a) docstring says it uses the mean but it doesn't. constrastively, this is how NormalizeObservation is implemented: ![image](https://github.com/Farama-Foundation/Gymnasium/assets/2642...
closed
2023-08-03T19:45:26Z
2024-03-21T19:29:32Z
https://github.com/Farama-Foundation/Gymnasium/issues/651
[ "bug" ]
verbiiyo
2
microsoft/Bringing-Old-Photos-Back-to-Life
pytorch
55
how to run code with CPU?
First of all, thank you for project. I was able to install on windows, but because my gpu doesnt have vram for large resolution images, (2-8MPx scanned archive photos), and cuda out of memory always, decided to try with pytorch for cpu. I have Ryzen 1700 CPU, and know that cpu mode is much slower, but have patience and...
closed
2020-11-24T18:09:11Z
2021-02-04T05:22:49Z
https://github.com/microsoft/Bringing-Old-Photos-Back-to-Life/issues/55
[]
milancelanmi
8
benlubas/molten-nvim
jupyter
19
[Feature Request] output_keep_open option
I'm using the `molten_output_virt_lines` option and I think I'd be nice if we could sort of "always show" the output cells, using the virtual lines, similar to an actual Jupyter Notebook. It'd allow, for instance, comparisons between different cell outputs. I'm not really aware of an alternative within the neovim ecosy...
closed
2023-10-27T17:42:05Z
2023-11-17T11:32:19Z
https://github.com/benlubas/molten-nvim/issues/19
[ "enhancement", "WIP" ]
igorlfs
3
laughingman7743/PyAthena
sqlalchemy
366
Add pd.Timestamp to formatters
Love the library! I may be doing this incorrectly, but in the `_DEFAULT_FORMATTERS`, I do not see `pd.Timestamp` (pandas) as a formatter. So if I run something like this... ```python import pyathena import pandas as pd import sqlalchemy as sa conn = pyathena.connect('...') meta = sa.Meta(schema='schema') tab...
closed
2022-08-18T03:16:19Z
2022-08-19T15:17:05Z
https://github.com/laughingman7743/PyAthena/issues/366
[]
reesehopkins
2
marimo-team/marimo
data-visualization
3,580
Marimo very slow to start
### Describe the bug I mostly code in WSL2 running Ubuntu. Lately, opening marimo notebooks is painfully slow. I have tried to enable debug logging etc but it doesn't show me much. I have shown the result of running uv tool run but I get similar results from running marimo directly from a virtual environment. Similar...
closed
2025-01-27T13:13:20Z
2025-01-27T20:27:55Z
https://github.com/marimo-team/marimo/issues/3580
[ "bug" ]
jholland79
1
influxdata/influxdb-client-python
jupyter
634
README.rst is not rendered correctly on GitHub
### Specifications * Client Version: * InfluxDB Version: * Platform: ### Code sample to reproduce problem ```python ``` ### Expected behavior Links to v1 client library in readme no longer linked to valid web page ### Actual behavior Links to v1 client library in readme no longer linked to valid web page ...
closed
2024-01-22T01:04:59Z
2024-02-29T08:29:48Z
https://github.com/influxdata/influxdb-client-python/issues/634
[ "bug" ]
twrasmussen
3
babysor/MockingBird
deep-learning
396
ouput无法正常生成音频
![image](https://user-images.githubusercontent.com/2409053/154928531-c09de751-516e-4f20-8962-ae87c10e526e.png) 我下载了 readme.md 中的 magicdata 数据集,但是随机了几个源, synthesizer使用ceshi 依然无法转换成正常的音频
open
2022-02-21T09:41:01Z
2022-02-21T09:41:01Z
https://github.com/babysor/MockingBird/issues/396
[]
gongchangyou
0
tflearn/tflearn
data-science
493
module 'tensorflow' has no attribute 'contrib' using tensorflow 0.12.0rc0.
``` Traceback (most recent call last): File "tensorflow.py", line 1, in <module> import tflearn File "/usr/lib/python3.5/site-packages/tflearn/__init__.py", line 4, in <module> from . import config File "/usr/lib/python3.5/site-packages/tflearn/config.py", line 3, in <module> import tensorflow ...
closed
2016-12-04T01:58:36Z
2016-12-04T02:05:05Z
https://github.com/tflearn/tflearn/issues/493
[]
jadenyjw
0
cvat-ai/cvat
computer-vision
8,569
Deleted frames come back after re-opening the job
### 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 Server Version: v2.16.3 Cloud Storage: Azure Blob Storage (seems that's irrelevant because the issue happens with local st...
closed
2024-10-20T08:49:40Z
2025-01-21T15:37:54Z
https://github.com/cvat-ai/cvat/issues/8569
[ "bug" ]
bely66
2
xinntao/Real-ESRGAN
pytorch
830
Ror
open
2024-07-23T14:45:10Z
2024-07-23T14:45:10Z
https://github.com/xinntao/Real-ESRGAN/issues/830
[]
oreo825
0
widgetti/solara
jupyter
490
Opening localhost shows a blank page
I have only started using solara for experimenting purpose and I have created a very basic app and named it main.py. Hoever when I do a solara run main.py it redirects me to my localhost site but unfortunately the page remains blank. However when I'm running the same code in my jupyter notebook the app works perfec...
open
2024-01-30T16:41:48Z
2024-08-20T09:11:22Z
https://github.com/widgetti/solara/issues/490
[ "needs more info" ]
russ-sk
4
pydantic/pydantic-settings
pydantic
419
Regression of case sensitive environment variable support
As of `v2.5.0` case sensitive environment variables no longer function properly: ```python import os from pydantic import BaseModel from pydantic_settings import BaseSettings, SettingsConfigDict class NestedSettings(BaseModel): A: str b: int class Settings(BaseSettings): not_nested: str ...
closed
2024-09-23T18:06:41Z
2024-09-23T21:02:26Z
https://github.com/pydantic/pydantic-settings/issues/419
[ "duplicate" ]
slingshotvfx
7
pallets/flask
python
5,116
A Mojo compatible version of Flask
Hi all! In case you haven't heard about it, a company called Modular is developing a superset for Python which adds types, low level stuff, and other awesome features. The name of this superset is [Mojo](https://www.modular.com/mojo). I think a version of the Flask framework with strong types would benefit developer...
closed
2023-05-05T06:08:42Z
2023-05-20T00:05:27Z
https://github.com/pallets/flask/issues/5116
[]
WilliamNT
0
mwaskom/seaborn
data-science
3,673
How to customize Palette in so.plot
The following is my code, I want to customize the COLOR_PALETTE, how should I modify the following two code and thank you in advance! import seaborn.objects as so import seaborn as sns from seaborn import axes_style,plotting_context so.Plot.config.theme.update(plotting_context('paper',font_scale=1.4)|axes_style("...
closed
2024-04-09T07:48:39Z
2024-04-09T13:45:01Z
https://github.com/mwaskom/seaborn/issues/3673
[]
z626093820
1
httpie/http-prompt
api
176
Support Tab completion for files when in prompt mode?
Hello, Thanks for the great tool! I could not find any documentation about whether tab completion for files is supported, and I similarly was unable to get it to work once I have entered prompt mode. I am mainly thinking about the use case where I want to change between environments using `exec`. It would be r...
open
2020-10-09T15:35:21Z
2020-10-09T15:35:21Z
https://github.com/httpie/http-prompt/issues/176
[]
CrispyDrone
0
junyanz/pytorch-CycleGAN-and-pix2pix
deep-learning
1,430
Why no ReflectionPad2d in the two downsampling layers of ResNetGenerator?
Why do the 2nd and 3rd Conv2d layers use normal zero padding while all the other Conv2d layers including the ResnetBlocks use ReflectionPad2d? ``` n_downsampling = 2 for i in range(n_downsampling): # add downsampling layers mult = 2 ** i model += [nn.Conv2d(ngf * mult, ngf * mult...
closed
2022-06-05T02:28:52Z
2022-06-07T19:50:53Z
https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/1430
[]
j314erre
2
thp/urlwatch
automation
223
Windows - complete confusion on install, PermissionError on urlwatch --edit
Hello, trying to get this working based on directions provided. I don't think the directions are sufficient to get this working for most people. I'm running Windows 10 Pro, 64-bit Anaconda 5.1.0 w/ Python 3. In accord with the directions provided, I installed the dependencies requested using `pip install minidb ....
closed
2018-04-08T03:02:27Z
2019-01-27T11:10:51Z
https://github.com/thp/urlwatch/issues/223
[]
joseortiz3
8
yt-dlp/yt-dlp
python
11,982
CLI options should override config file, but don't
### 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 reporting a bug unrelated to a specific site - [X] I've verified that I have **updated yt-dlp to nightly or master** ([update instruction...
closed
2025-01-03T04:16:50Z
2025-01-05T23:25:19Z
https://github.com/yt-dlp/yt-dlp/issues/11982
[ "incomplete" ]
tsjnachos117
4
google/seq2seq
tensorflow
180
Couldn't open CUDA library libcupti.so.8.0.
I have got error with such message: > I tensorflow/core/common_runtime/gpu/pool_allocator.cc:247] PoolAllocator: After 8735 get requests, put_count=8686 evicted_count=1000 eviction_rate=0.115128 and unsatisfied allocation rate=0.13154 > I tensorflow/core/common_runtime/gpu/pool_allocator.cc:259] Raising pool_size_l...
closed
2017-04-19T17:19:48Z
2019-02-22T05:32:21Z
https://github.com/google/seq2seq/issues/180
[]
smolendawid
2
coqui-ai/TTS
python
3,147
[Bug] which version of transformets does TTS support
### Describe the bug It keeps downloading different version of transformers on doing pip install TTS. It is never ending. ### To Reproduce pip install TTS ### Expected behavior It should have installed TTS ### Logs ```shell pip install TTS Collecting TTS Using cached TTS-0.14.3-cp38-cp38-manylinux1_x86_64...
closed
2023-11-06T15:41:56Z
2024-12-15T15:26:58Z
https://github.com/coqui-ai/TTS/issues/3147
[ "bug" ]
pk1762012
4
flairNLP/flair
pytorch
3,324
Help us improve docstrings for the upcoming Flair 0.13 release!
This issue tracks the progress of releasing the next version of Flair, i.e. Flair 0.13. Planned release is **16.10.23**. One major new documentation feature are **publicly available API docs**, generated from the docstrings in the code. A preview of the API docs can be found here: https://flairnlp.github.io/flair/ma...
closed
2023-10-02T12:48:59Z
2025-03-11T05:25:21Z
https://github.com/flairNLP/flair/issues/3324
[]
alanakbik
1
pallets/quart
asyncio
123
Basic auth implementation
Hello, I've been trying to implement a basic auth decorator in Quart, both based on [your suggestion on SO](https://stackoverflow.com/questions/65147521/basic-auth-for-quart-python) and the documentation of how basic auth works, so that it will actually request basic auth credentials in the browser. What I have is s...
closed
2021-04-08T17:20:12Z
2022-07-05T01:58:55Z
https://github.com/pallets/quart/issues/123
[]
FranciscoSilveira
4
encode/apistar
api
272
Complex object validation
HI all, As far as I see, using the current typesystem, it is not possible to implement more complex object validation. Given this : ` class MyObject(typesystem.Object): properties = { 'a': typesystem.string(), 'b': typesystem.string(), 'c': typesystem.string(), } ` I would l...
closed
2017-09-06T10:48:01Z
2018-04-20T09:22:41Z
https://github.com/encode/apistar/issues/272
[]
romaintha
6
chezou/tabula-py
pandas
67
org.apache.pdfbox.pdmodel.font.PDSimpleFont toUnicode
closed
2017-11-08T06:36:58Z
2017-11-08T06:50:24Z
https://github.com/chezou/tabula-py/issues/67
[]
shafikhaan
0
Gerapy/Gerapy
django
99
ip illegal check: docker-for-mac/docker-for-windows support `host.docker.internal`, but Gerapy say it illegal
![snipaste_2019-02-28_17-24-17](https://user-images.githubusercontent.com/9427454/53555895-cc891f00-3b7d-11e9-9d40-f73641051532.png)
closed
2019-02-28T09:18:47Z
2019-11-23T14:34:52Z
https://github.com/Gerapy/Gerapy/issues/99
[]
Danceiny
2
milesmcc/shynet
django
47
Error 500 when sending mail
Hello, I'm using Shynet with docker compose on Ubuntu 20.04 and I have an error when I try to send the verification email. The browser show me a "Server Error (500)" message. [Here](https://notarobot.xyz/zerobin/?9fc7d8a58ad4a17c#AzTkF6aGnbDZAdXup1Fp8gJNwFZXhiYHFrjPNtZWnJos) are the logs. Thanks for your help !
closed
2020-06-15T09:41:35Z
2020-06-16T17:38:24Z
https://github.com/milesmcc/shynet/issues/47
[ "invalid", "question" ]
notarobot63
5
xzkostyan/clickhouse-sqlalchemy
sqlalchemy
200
Clickhouse Integration Table Engines
Currently I want to build a model using [RabbitMQ Engine ](https://clickhouse.com/docs/en/engines/table-engines/integrations/rabbitmq/) However I see that its not implemented here. so while I can survive using raw queries for this model; the problem is the models, I would then define some models outside of the python c...
open
2022-09-15T11:57:50Z
2022-09-15T15:58:44Z
https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/200
[]
AEzzatA
1
freqtrade/freqtrade
python
10,999
Change the behavior of missing leverage tiers in backtesting from an error to a warning
<!-- Note: this section will not show up in the issue. Have you search for this feature before requesting it? It's highly likely that a similar request was already filed. --> ## Describe your environment * Operating system: _windows___ * Python Version: __Python 3.10.11___ (`python -V`) * CCXT version: __4.4....
closed
2024-11-27T04:01:43Z
2024-11-27T05:17:33Z
https://github.com/freqtrade/freqtrade/issues/10999
[ "Question" ]
14790897
1
nl8590687/ASRT_SpeechRecognition
tensorflow
16
Bug,请问楼主,报错这个吗TypeError: __init__() missing 1 required positional argument: 'nb_col'
C:\Users\Administrator\Desktop\ASRT_v0.1>python3 test_mspeech.py Using TensorFlow backend. 2018-06-03 20:38:53.581395: I T:\src\github\tensorflow\tensorflow\core\platform\cpu_feature_guard.cc:140] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 2018-06-03 20:38:53.617397: E T...
closed
2018-06-03T12:51:31Z
2018-06-03T13:20:03Z
https://github.com/nl8590687/ASRT_SpeechRecognition/issues/16
[]
ttanzhiqiang
2
ultralytics/yolov5
pytorch
13,324
close mosaic in yolov5
### Search before asking - [X] I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and [discussions](https://github.com/ultralytics/yolov5/discussions) and found no similar questions. ### Question in v8, ultralytics/cfg/default.yaml. there have the parameter close_mosaic to close th...
open
2024-09-19T14:25:59Z
2024-11-09T16:23:15Z
https://github.com/ultralytics/yolov5/issues/13324
[ "question" ]
ChenJian7578
2
Guovin/iptv-api
api
464
更新完成结果文件内部为空
[result.log](https://github.com/user-attachments/files/17531334/result.log) [result.txt](https://github.com/user-attachments/files/17531335/result.txt)
closed
2024-10-26T16:41:55Z
2024-11-05T08:34:30Z
https://github.com/Guovin/iptv-api/issues/464
[ "question" ]
molun
4
alecxe/scrapy-fake-useragent
web-scraping
15
How to add to project?
I'm a bit confused, I've never used setuptools, how do I add this to a scrapy project? I've found this post (http://www.bertcarremans.be/avoiding-ip-banning-with-the-scrapy-framework/) but it doesn't seem the most up to date way of doing so. Thanks!
closed
2017-06-10T20:38:40Z
2020-09-01T23:07:32Z
https://github.com/alecxe/scrapy-fake-useragent/issues/15
[]
brunomperes
2
igorbenav/fastcrud
pydantic
185
Incorrect parsing of attribute name when database name does not match attribute name (getting wrong attribute)
**Describe the bug or question** Thank you so much for your library! When using a different column name in database (for e.g. legacy purposes) than the attribute name, the code accidentally gets the internal sqlalchemy metadata field instead of the real column. This is the most obvious example, but if it was a differ...
closed
2024-12-19T00:41:46Z
2024-12-23T07:21:36Z
https://github.com/igorbenav/fastcrud/issues/185
[ "bug" ]
MrNaif2018
1
coleifer/sqlite-web
flask
87
running on aws - arm based (t4) AMI LInux 2 image
sqlite_web -H 0.0.0.0 -p 8085 -x ./db/data-go.sqlite -d true -u /dbgo * Tip: There are .env or .flaskenv files present. Do "pip install python-dotenv" to use them. * Serving Flask app 'sqlite_web.sqlite_web' (lazy loading) * Environment: production WARNING: This is a development server. Do not use it in a pro...
closed
2021-09-17T20:58:10Z
2021-09-17T22:54:39Z
https://github.com/coleifer/sqlite-web/issues/87
[]
johndpope
1
pyppeteer/pyppeteer
automation
244
Relax importlib-metadata version dependency
It seems that `importlib-metadata` version was restricted to versions <3.0.0 because of `tox` dependency, itself enforcing such restriction, as mentioned [here](https://github.com/pyppeteer/pyppeteer/blob/f89052763de15c029ab647b150856c3ea80f45dc/pyproject.toml#L50). The required patch of `tox` to support any version o...
closed
2021-04-04T16:25:36Z
2021-08-15T08:13:42Z
https://github.com/pyppeteer/pyppeteer/issues/244
[]
duburcqa
2
mljar/mercury
data-visualization
202
Issue: psutil is preventing me from downloading mljar-mercury package
**Hi there,** **I've been trying for a few weeks now to deploy my first Mercury app. At first, the Python gevent package was preventing the download. I eventually realized that the current version of gevent wasn't compatible with my 3.11 version of Python, so I downgraded to 3.10 and got through that issue. Now, the P...
closed
2023-02-07T21:50:53Z
2023-02-09T18:49:19Z
https://github.com/mljar/mercury/issues/202
[]
ConnorBarr23
2
amisadmin/fastapi-amis-admin
sqlalchemy
96
SVG support?
Are any plans to support SVG-images? Or can explain how to implement support?
closed
2023-05-17T09:57:19Z
2023-06-30T21:12:33Z
https://github.com/amisadmin/fastapi-amis-admin/issues/96
[]
MatsiukMykola
0
jazzband/django-oauth-toolkit
django
1,101
RFC 8705 mutual TLS client authentication
**Is your feature request related to a problem? Please describe.** <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> DOT currently only supports basic auth for clients. A more secure approach to client authn is mutual TLS. **Describe the solution you'd like** <!...
open
2022-01-23T18:46:42Z
2022-06-19T12:38:20Z
https://github.com/jazzband/django-oauth-toolkit/issues/1101
[ "enhancement" ]
n2ygk
0
nltk/nltk
nlp
2,491
Reading a CFG from string with escaped single and double quotes in terminals results in failure
As mentioned in the topic title, reading a grammar string which contains productions with escaped single and/or double quotes in the terminals on the RHS results in different ValueErrors. Example A: The following code: ``` grammar = CFG.fromstring(""" S -> A A -> 'manager\'s, discount' ...
closed
2020-01-24T09:29:35Z
2021-11-17T08:18:50Z
https://github.com/nltk/nltk/issues/2491
[]
sajal2692
3
ludwig-ai/ludwig
computer-vision
3,004
Fix explanations with cache embeddings
Remaining issue from #2867. Batch size selected by `batch_size=auto` is likely too large for explanations, which require using the pretrained model during the forward / backward pass.
closed
2023-01-25T22:06:13Z
2023-01-27T18:12:16Z
https://github.com/ludwig-ai/ludwig/issues/3004
[ "bug" ]
tgaddair
0
Python3WebSpider/ProxyPool
flask
165
run.py problem
想請教一下 我用```python run.py```執行後, 要從哪邊拿到經測試過的IP呀?謝謝
closed
2022-05-27T11:41:15Z
2022-05-27T11:56:09Z
https://github.com/Python3WebSpider/ProxyPool/issues/165
[ "bug" ]
CubatLin
0
yezz123/authx
pydantic
502
Add `mkdocstrings` to mkdocs configuration
we should include it so we can have a reference at the level of the API
closed
2023-12-18T22:55:12Z
2024-03-11T00:18:36Z
https://github.com/yezz123/authx/issues/502
[ "documentation", "dependencies" ]
yezz123
0
AUTOMATIC1111/stable-diffusion-webui
pytorch
15,432
[Bug]: webui fails looking for an NVIDIA GPU when I have an AMD GPU
### Checklist - [ ] The issue exists after disabling all extensions - [X] The issue exists on a clean installation of webui - [ ] The issue is caused by an extension, but I believe it is caused by a bug in the webui - [ ] The issue exists in the current version of the webui - [ ] The issue has not been reported before...
closed
2024-04-02T14:35:07Z
2024-04-02T14:42:42Z
https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/15432
[ "bug-report" ]
Tameflame
1
anselal/antminer-monitor
dash
100
Support for Antminer B3
Is it possible to add the B3? I've attached API output.. This one is kind of different. There are only 3 physical boards, but it shows 6 chains, each with 2 chips. It also shows 6 temperatures for those chains. I imagine this will be addressed in another firmware, but the webpage the miner shows the fans alway...
closed
2018-05-07T19:25:37Z
2020-02-09T15:36:10Z
https://github.com/anselal/antminer-monitor/issues/100
[ ":pick: miner_support" ]
ghost
3
FactoryBoy/factory_boy
django
220
faker.py does not install via pip - strange stuff!!
Hi guys, now this one is really strange. I just wanted to try the build-in faker and basically I am getting an attribute not found error: ``` >>> import factory >>> factory.Faker('email') Traceback (most recent call last): File "<console>", line 1, in <module> AttributeError: 'module' object has no attribute 'Faker...
closed
2015-07-24T20:28:55Z
2015-10-20T22:00:46Z
https://github.com/FactoryBoy/factory_boy/issues/220
[ "Q&A" ]
thebarty
15
pydata/pandas-datareader
pandas
198
World Bank datareader cannot retrive monthly data
I am trying to extract data from the World Bank and have been successful with the following code via `pandas.io`: ``` python from pandas.io import wb df_wb = wb.download(indicator=['GOLD','SILVER','COPPER','ZINC','LEAD','NICKEL', 'ALUMINUM'],country='ALL',start='1980M01',end='2016M12') ``...
open
2016-04-27T15:02:19Z
2016-04-28T00:47:50Z
https://github.com/pydata/pandas-datareader/issues/198
[ "enhancement" ]
kurtforrester
1
xinntao/Real-ESRGAN
pytorch
315
Tuning hyperparameters for finetuning with custom dataset
Hi all! I would like to finetune the network for images that would possibly include little details. The pretrained network performs better than the finetuned network in different ways; - If the iteration count is high, then we observe loss in details since the network thinks they are artifacts when they aren't. - ...
open
2022-05-03T00:11:48Z
2022-05-03T00:11:48Z
https://github.com/xinntao/Real-ESRGAN/issues/315
[]
dersugiritlioglu
0
netbox-community/netbox
django
17,908
Add cable trace button on the cable page
### NetBox version v4.1.4 ### Feature type New functionality ### Triage priority N/A ### Proposed functionality Add a button to trace cables on the cable page `/dcim/cables/123` ### Use case This would simplify cable tracing. Instead of needing to go to the patch panel or interface, you could trace a cable dir...
open
2024-10-31T13:40:47Z
2025-01-24T14:38:36Z
https://github.com/netbox-community/netbox/issues/17908
[ "type: feature", "status: needs owner", "complexity: low", "netbox" ]
ChrisRecioHive
4
fohrloop/dash-uploader
dash
16
Integrate with heroku
Hey! Me again! :-) I am trying to publish my dashboard to heroku, unfortunately I couldn't upload the object onto web (https://dash-pyscnet.herokuapp.com/)... It was perfectly working locally. So i am wondering have you also tested with heroku?! ;-) You can find the code [here](https://github.com/MingBit/dash-p...
open
2020-10-29T12:39:46Z
2020-11-01T21:50:14Z
https://github.com/fohrloop/dash-uploader/issues/16
[]
MingBit
7
coqui-ai/TTS
deep-learning
4,084
[Bug] model_path is not considered when downloading the model in TTS constructor
### Describe the bug Coqui constructor accept a parameter named model_path. The logic within the constructor does not make sense (in my opinion) because if a model name is provided, basically it will try to download the weight and other stuff. Later, if model_path is provided, it will try to load the model. ``` ...
closed
2024-12-18T12:21:45Z
2024-12-20T06:56:47Z
https://github.com/coqui-ai/TTS/issues/4084
[ "bug" ]
DanielRossi1
3
roboflow/supervision
tensorflow
1,429
Autodistill or Reparameterize?
### Search before asking - [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar feature requests. ### Question So Robovision provides a framework with Autodistill to transfer knowledge from larger foundational models into smaller models on custom data tha...
closed
2024-08-05T11:32:36Z
2024-08-06T09:37:31Z
https://github.com/roboflow/supervision/issues/1429
[ "question" ]
adrielkuek
1
hatchet-dev/hatchet
fastapi
480
feat: support linux/arm64/v8 platform
The following images do not support linux/arm64/v8 yet * hatchet-migrate:latest * hatchet-admin:latest * hatchet-engine:latest * hatchet-api:latest Hope it can be adapted to linux/arm64/v8, thanks!
closed
2024-05-10T04:01:53Z
2024-06-11T13:18:51Z
https://github.com/hatchet-dev/hatchet/issues/480
[]
jinrenjie
1
ShishirPatil/gorilla
api
322
How to find the base_url in the Azure AI Studio?
Hi team, Your project requires to set up the base_url to evaluate the fine-tuned model. Can you tell me how to find this in the Azure AI Studio? Sincerely, Zhangcheng Qiang
open
2024-04-06T04:35:00Z
2024-04-06T04:35:00Z
https://github.com/ShishirPatil/gorilla/issues/322
[]
qzc438
0
biolab/orange3
scikit-learn
6,302
Question about random oversampling with replacement in the Orange Data Sampler Widget
<!-- 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?** <!-- Class imbalance is quite common in many fields so we could have several tools to improve im...
closed
2023-01-17T19:38:41Z
2023-01-20T08:39:50Z
https://github.com/biolab/orange3/issues/6302
[]
rehoyt
1
gee-community/geemap
streamlit
294
Adding a GUI for changing basemaps interactively
Adding a button to the toolbar for changing basemaps
closed
2021-02-06T18:44:34Z
2021-02-06T19:45:22Z
https://github.com/gee-community/geemap/issues/294
[ "Feature Request" ]
giswqs
1
zappa/Zappa
django
874
[Migrated] [Feature Request] Add EFS Support
Originally from: https://github.com/Miserlou/Zappa/issues/2128 by [dleber](https://github.com/dleber) ## Context AWS recently announced the ability to attach EFS (Elastic File System) to lambda instances ([more info](https://aws.amazon.com/about-aws/whats-new/2020/06/aws-lambda-support-for-amazon-elastic-file-system-...
open
2021-02-20T13:03:10Z
2024-04-04T19:36:52Z
https://github.com/zappa/Zappa/issues/874
[ "needs-review" ]
jneves
3
tensorflow/tensor2tensor
deep-learning
1,289
What is 'extra_length' used for in tensor2tensor/utils/decoding.py ?
Hi all: I'm running t2t-decode with cpu use the function 'decoding.decode_interactively' in a NMT task, and when i set 'extra_length = 0', t2t-decode runs faster than 'extra_length = 100', but the results look the same. ` `def decode_hparams(overrides=""): """Hyperparameters for decoding.""" ...
closed
2018-12-10T03:10:11Z
2019-06-13T02:01:48Z
https://github.com/tensorflow/tensor2tensor/issues/1289
[]
Mr-wang2016
2
nerfstudio-project/nerfstudio
computer-vision
2,685
gsplat fails to build with gaussian splatting pipeline
**Describe the bug** Unable to builfd gsplat for running gaussian splat method. I get the following error ``` Traceback (most recent call last): File "/home/pablo/micromamba/envs/nerfstudio/lib/python3.10/site-packages/gsplat/cuda/_backend.py", line 56, in <module> from gsplat import csrc as _C ImportErro...
closed
2023-12-17T16:31:57Z
2025-02-10T09:57:11Z
https://github.com/nerfstudio-project/nerfstudio/issues/2685
[]
pablovela5620
10
tableau/server-client-python
rest-api
1,229
Getting error Datasources is not available in API version 2.4. Requires 2.8
**Describe the bug** when i am using refresh method in code it stating i need to upgrade API but i am already using latest tableauserverclient version and getting error EndpointUnavailableError: Datasources is not available in API version 2.4. Requires 2.8 ` **Versions** - Tableau Server version (or note if using...
closed
2023-04-29T09:43:20Z
2023-05-02T05:02:48Z
https://github.com/tableau/server-client-python/issues/1229
[]
Rahmat711
2
matplotlib/mplfinance
matplotlib
538
How do I hide the X axis?
@DanielGoldfarb : I want to hide the scale of x-axis or y-axis. What is the method? ![img1](https://user-images.githubusercontent.com/48607893/172828520-cbc5865e-33e6-4c36-9402-a28812e53dd2.png)
closed
2022-06-09T10:40:07Z
2022-06-09T12:14:59Z
https://github.com/matplotlib/mplfinance/issues/538
[ "question" ]
lyl1836
1
PaddlePaddle/models
computer-vision
5,260
3d_vision PointNet++分类训练报错UnavailableError: There are no kernels which are registered in the fill_constant operator.
刚入门小白,遇到了问题恳请各位大神帮忙!谢谢 AI Studio PaddlePaddle2.0.0 3d_vision PointNet++分类训练报错UnavailableError: There are no kernels which are registered in the fill_constant operator.具体如下 aistudio@jupyter-622623-1481923:~/PointNet++$ python train_cls.py --model=MSG --batch_size=16 --save_dir=checkpoints_msg_cls 2021-02-02 16:17:...
open
2021-02-02T08:26:33Z
2024-02-26T05:09:16Z
https://github.com/PaddlePaddle/models/issues/5260
[]
Milalaa
5
Buuntu/fastapi-react
sqlalchemy
48
Replace snapshot tests with something else
Snapshot tests take ~10 seconds to run - need to either speed these up or replace them with something else. Probably should just replace with react-testing-library or cypress honestly.
closed
2020-05-30T18:53:51Z
2020-07-27T18:43:23Z
https://github.com/Buuntu/fastapi-react/issues/48
[ "enhancement", "javascript" ]
Buuntu
0
wkentaro/labelme
computer-vision
783
[BUG] Dragged Polygon disappears in "Polygon Labels" dock
**Describe the bug** When a shape was dragged to the first row, it will disappear. **To Reproduce** Steps to reproduce the behavior: 1. Draw several polygons. 2. In the "Polygon Labels" dock, drag a polygon to the first row.
open
2020-10-06T13:53:56Z
2022-09-26T14:37:05Z
https://github.com/wkentaro/labelme/issues/783
[ "issue::bug", "priority: high" ]
gladcolor
0
Evil0ctal/Douyin_TikTok_Download_API
fastapi
194
[BUG] 在linux平台运行,发现报js错误
感谢作者开源代码!!! 我在按正常部署完成之后, 输入网址可以正常访问,但是不能解析,报如下错误 Use http://192.168.0.4:8110/ to access the application 当前链接平台为:douyin 正在获取视频ID... 正在通过抖音分享链接获取原始链接... 获取原始链接成功, 原始链接为: https://www.iesdouyin.com/share/video/7218525164365991183/ 获取到的抖音视频ID为: 7218525164365991183 获取视频ID成功,视频ID为:7218525164365991183 正在获取视频数据... 正...
closed
2023-04-07T13:21:05Z
2023-04-23T21:02:14Z
https://github.com/Evil0ctal/Douyin_TikTok_Download_API/issues/194
[ "BUG" ]
liandyao
2
dask/dask
pandas
11,418
problem with dask partitions and creating dask graph
Hello, I am using a tool in a singularity container and it uses dask. it used to work so wll and run on 39 paritions which speeds up the process but suddenly the maximum is 1-5 paritions. I have ample amount if ram and threads. not sure what went wrong. usually if i ask for a higher number of threads it gets stuck at...
closed
2024-10-07T19:48:18Z
2024-10-16T18:09:07Z
https://github.com/dask/dask/issues/11418
[ "needs info" ]
Flu09
7
matterport/Mask_RCNN
tensorflow
2,893
BBox from utils.extract_bboxes(mask), but it included the objects that should be independent
Hi, this is my first time asking a question here, and I'm not an English native speaker. So please forgive my poor English. I used MaskRCNN to train a model that can detect activities on the beach, like swim, surfing, and others. But I got a really bad training result, it can be said that the model didn't learn anyth...
open
2022-10-17T14:09:52Z
2022-10-17T14:19:23Z
https://github.com/matterport/Mask_RCNN/issues/2893
[]
JasonWeiTan
0
python-gino/gino
sqlalchemy
633
Transaction questions
First question is; does Gino's CRUD operations work within transactions? Say I have this: ```python3 import asyncio from gino import Gino db = Gino() class Test(db.Model): __tablename__ = 'test' id = db.Column(db.String, primary_key=True) async def test(): await db.set_bind('postgresql...
closed
2020-02-27T16:49:04Z
2020-02-27T17:18:42Z
https://github.com/python-gino/gino/issues/633
[ "question" ]
sanderfoobar
2
huggingface/peft
pytorch
1,515
QLoRA bf16 + model.generate() in TrainerCallback: "RuntimeError: expected mat1 and mat2 to have the same dtype, but got: float != c10::BFloat16"
### System Info ```accelerate 0.28.0 bitsandbytes 0.42.0 peft 0.8.2 torch 2.2.0 transformers 4.38.1 trl 0.7.11 Python 3.10.12 ``` ### Who can hel...
closed
2024-02-28T10:40:58Z
2024-07-26T14:50:22Z
https://github.com/huggingface/peft/issues/1515
[]
geronimi73
2
arogozhnikov/einops
numpy
56
[Feature Request] functions on elements of 1 dimension: reorder (concatenate), and chunk
Thank you for making our life easier when working with tensors. I have the following suggestions based on #50 and #20. ## A. Reorder and concatenation of items of different shapes ### A.1 Reorder elements of 1 dimension As suggested in #50, it is indeed useful when we have an operation for reordering the element...
closed
2020-08-20T10:11:11Z
2022-11-08T22:58:43Z
https://github.com/arogozhnikov/einops/issues/56
[ "feature suggestion" ]
davidnvq
10
vvbbnn00/WARP-Clash-API
flask
116
[Feature request] 现在mac下能用哪个?
好像都不更新了. 没法用现在这个
closed
2024-03-01T05:01:13Z
2024-03-01T05:04:15Z
https://github.com/vvbbnn00/WARP-Clash-API/issues/116
[]
nickeyfff
0
assafelovic/gpt-researcher
automation
557
Medium bug in detailed_report._get_subtopic_report(self, subtopic: dict)
__User Experience:__ * While running detailed reports on local data. GPT-Researcher mixes Local and Web results. __The Problem:__ *The init() method of the GPTResearcher class defaults to 'web' if no `report_source` param is passed. __The Solution:__ * Provide the keyword argument `report_source` when construc...
closed
2024-06-01T02:34:21Z
2024-06-01T12:47:21Z
https://github.com/assafelovic/gpt-researcher/issues/557
[]
DanHUMassMed
1
modin-project/modin
pandas
6,893
CI fails after release of pytest 8.0.0
https://github.com/modin-project/modin/actions/runs/7697508576/job/20974753158?pr=6862 the following code fails starting with pytest 8.0.0 ([example in our tests](https://github.com/modin-project/modin/blob/fe19363d58dfd50834971ee56e5038a822374594/modin/pandas/test/test_series.py#L217-L224)) ```python import pytes...
closed
2024-01-29T14:38:27Z
2024-01-29T17:37:46Z
https://github.com/modin-project/modin/issues/6893
[ "Testing 📈", "P0" ]
dchigarev
1
dask/dask
pandas
11,240
Optimizer applies parquet `filters` after loading when using `read_parquet(...).map_partitions(...).compute()`
<!-- Please include a self-contained copy-pastable example that generates the issue if possible. Please be concise with code posted. See guidelines below on how to provide a good bug report: - Craft Minimal Bug Reports http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports - Minimal Complete Verifiab...
closed
2024-07-19T05:55:34Z
2025-01-13T13:12:23Z
https://github.com/dask/dask/issues/11240
[ "needs info", "parquet" ]
Timost
2
iperov/DeepFaceLab
deep-learning
676
changelog.html could show the latest changelog
## Expected behavior changelog.html is a shortcut in the web browser - when you click it - it shows the latest changelog. ## Actual behavior changelog.html opens the weblink for the same date as downloaded DFL zip file from Gdrive. ## Steps to reproduce Click on the changelog.html inside the DFL zip file...
closed
2020-03-25T05:56:00Z
2020-03-25T15:21:31Z
https://github.com/iperov/DeepFaceLab/issues/676
[]
varunpro
2
viewflow/viewflow
django
389
Reloading a form with a file/image input tries to set the value which isn't allowed
<img width="349" alt="CleanShot 2023-08-22 at 01 15 45@2x" src="https://github.com/viewflow/viewflow/assets/37833/5da5fbc5-4aff-4ead-a715-6cd449f29763"> Failed to set the 'value' property on 'HTMLInputElement': This input element accepts a filename, which may only be programmatically set to the empty string.
closed
2023-08-22T06:16:07Z
2023-08-30T10:52:16Z
https://github.com/viewflow/viewflow/issues/389
[]
jturmel
2
PeterL1n/BackgroundMattingV2
computer-vision
63
BUG reported
seem like a bug in line 65 of dataset/augmentation.py, where i is changed in the loop, but i should be fixed because it is the coordinate of crop box?
closed
2021-03-01T06:01:07Z
2021-03-04T20:16:04Z
https://github.com/PeterL1n/BackgroundMattingV2/issues/63
[]
Lihit
1
ivy-llc/ivy
numpy
28,084
Fix Frontend Failing Test: tensorflow - stat.paddle.mean
To-do List: https://github.com/unifyai/ivy/issues/27499
closed
2024-01-27T15:16:59Z
2024-01-31T15:01:43Z
https://github.com/ivy-llc/ivy/issues/28084
[ "Sub Task" ]
Sai-Suraj-27
0
hyperspy/hyperspy
data-visualization
2,614
EMD (NCEM) io_plugin no longer imports mettadata
In previous versions loading a EMD (NCEM) file would load the images and metadata associated with the hdf5 file. Now, either a dataset_path or stack_group needs to be specified for the data to load the signal and will not load the metadata regardless. For example: In the below image I am showing the emd file inspect...
closed
2020-12-31T19:45:45Z
2021-04-20T22:55:20Z
https://github.com/hyperspy/hyperspy/issues/2614
[ "type: bug", "status: fix-submitted" ]
erh3cq
3
vitalik/django-ninja
rest-api
968
[BUG] filter() does not behavior like document described
**Describe the bug** FilterSchema.filter() method will use field filter ONLY if custome_filter() not implemented. But in document, it shows "The custom_expression method **takes precedence over** any other definitions described **earlier**, including filter_<fieldname> methods." My understanding is "when there is `...
closed
2023-11-29T14:17:32Z
2023-12-18T13:05:57Z
https://github.com/vitalik/django-ninja/issues/968
[]
samuelchen
3
microsoft/unilm
nlp
816
RuntimeError: cuDNN error: CUDNN_STATUS_INTERNAL_ERROR while training LayoutLMv3
I am training latest version of layoutLMv3 model but while starting training trainer.train() getting bellow error. Please help me to resolve it. I am using v100 4 GPUs: ``` RuntimeError Traceback (most recent call last) /tmp/ipykernel_31278/4032920361.py in <module> ----> 1 traine...
closed
2022-08-04T20:24:21Z
2022-09-03T05:12:17Z
https://github.com/microsoft/unilm/issues/816
[]
rusubbiz-muzkaq
1
strawberry-graphql/strawberry-django
graphql
52
auto type hint throwing error when using __future__
The `auto` type hint works fine if I don't use the `__future__` library. If I use it it throws this error: ``` Exception in thread django-main-thread: Traceback (most recent call last): File "/home/ton/Codes/strawberry-graphql-django/venv/lib/python3.8/site-packages/graphql/type/definition.py", line 767, in fie...
closed
2021-07-30T12:18:32Z
2021-12-16T06:04:20Z
https://github.com/strawberry-graphql/strawberry-django/issues/52
[]
wellzenon
0
lk-geimfari/mimesis
pandas
1,344
Generating dummy country data with mimesis only returns 'United States'
# Bug report <!-- Hi, thanks for submitting a bug. We appreciate that. But, we will need some information about what's wrong to help you. --> ## What's wrong `Address.country` appears to return only `United States`: ```python from mimesis import Address g = Address() for i in range(0,11): pri...
closed
2023-04-14T08:51:19Z
2023-04-19T17:57:54Z
https://github.com/lk-geimfari/mimesis/issues/1344
[]
rgoubet
8
liangliangyy/DjangoBlog
django
41
请问下您这个 cache 处理是在哪儿系统学的
## 请问下您这个 cache 处理是在哪儿系统学的 ### 我把官网上的redis cache 弄过, 但是你这个md5, cache 我完全摸不到边
closed
2017-11-03T09:35:05Z
2017-11-04T04:59:59Z
https://github.com/liangliangyy/DjangoBlog/issues/41
[]
ghost
2
fastapi/sqlmodel
pydantic
67
TypeError: issubclass() arg 1 must be a class when having a field with a complex type
### 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...
open
2021-09-01T11:56:18Z
2024-06-13T14:11:09Z
https://github.com/fastapi/sqlmodel/issues/67
[ "question" ]
Matthieu-Tinycoaching
9
explosion/spaCy
nlp
13,177
English models' Accuracy Evaluation values
Hello! I have a question regarding the English model stats displayed on the spaCy website: [https://spacy.io/models/en](https://spacy.io/models/en). The Accuracy Evaluation tables for the `en_core_web_sm`, `en_core_web_md`, and `en_core_web_lg` models are exactly the same (although the `en_core_web_lg` model's Named...
closed
2023-12-04T21:45:09Z
2023-12-06T07:01:24Z
https://github.com/explosion/spaCy/issues/13177
[ "lang / en" ]
ojo4f3
1
gee-community/geemap
streamlit
704
Add value for masked areas when using extract_values_to_points
I am using extract_values_to_points to extract data from a masked Sentinel-2 image. In cases where pixels under points are masked in the image, there isn’t a return value. My preferred behavior would be to have an indicator that those pixels were under a mask such as NA (not available).
closed
2021-10-08T19:23:01Z
2021-10-08T21:39:30Z
https://github.com/gee-community/geemap/issues/704
[ "Feature Request" ]
nedhorning
2
yt-dlp/yt-dlp
python
11,748
[youtube] player `3bb1f723`: Signature extraction failed: Some formats may be missing
### 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 reporting that yt-dlp is broken on a **supported** site - [X] I've verified that I have **updated yt-dlp to nightly or master** ([update ...
closed
2024-12-06T11:45:57Z
2025-01-20T09:15:32Z
https://github.com/yt-dlp/yt-dlp/issues/11748
[ "high-priority", "site-bug", "site:youtube" ]
111100001
6
fugue-project/fugue
pandas
13
Auto persist, unpersist
It is possible to analyze the dag and find when to persist and unpersist a df
open
2020-05-11T05:09:02Z
2020-10-27T15:26:46Z
https://github.com/fugue-project/fugue/issues/13
[ "enhancement" ]
goodwanghan
1