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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
DistrictDataLabs/yellowbrick | matplotlib | 868 | CI Tests fail due to NLTK download first byte timeout | **NLTK Downloader**
Here is a sample of an NLTK download in progress:
> [nltk_data] | Downloading package twitter_samples to
[nltk_data] | C:\Users\appveyor\AppData\Roaming\nltk_data...
[nltk_data] | Unzipping corpora\twitter_samples.zip.
[nltk_data] | Downloading package omw to
[nltk_data] ... | closed | 2019-05-29T20:25:17Z | 2019-08-28T23:48:40Z | https://github.com/DistrictDataLabs/yellowbrick/issues/868 | [
"type: bug",
"type: technical debt",
"level: intermediate"
] | nickpowersys | 2 |
d2l-ai/d2l-en | deep-learning | 2,056 | multi-head Attention code has a big problem. | I only checked the pytorch version.
##################################################################
class MultiHeadAttention(nn.Module):
"""Multi-head attention.
Defined in :numref:`sec_multihead-attention`"""
def __init__(self, key_size, query_size, value_size, num_hiddens,
num_he... | open | 2022-03-03T18:25:48Z | 2022-04-19T12:05:00Z | https://github.com/d2l-ai/d2l-en/issues/2056 | [] | Y-H-Joe | 2 |
aiortc/aiortc | asyncio | 712 | Webcam.py --video-codec video/H264 --play-without-decoding weird behavior | I encountered a strange behavior regarding the standard webcam.py example.
Im using the newest feature " --video-codec video/H264 --play-without-decoding" on my raspberry pi.
If im connecting from any client over the local network (android/ios/chome/firefox) it works the first time, after that only chrome on my windo... | closed | 2022-04-29T19:01:38Z | 2022-09-23T04:00:10Z | https://github.com/aiortc/aiortc/issues/712 | [
"stale"
] | unitw | 17 |
ageitgey/face_recognition | python | 907 | Continually ask to install `face_recognition_models` although I've installed already | * face_recognition version: face-recognition-1.2.3 face-recognition-models-0.3.0
* Python version: 3.6
* Operating System: Linux
### Description
I have use `pip3 install face_recognition` to install `face_recognition_models` successfully, but when I `import face_recognition`, it continually asks me to install a... | closed | 2019-08-21T02:24:54Z | 2024-09-05T18:09:14Z | https://github.com/ageitgey/face_recognition/issues/907 | [] | MrArcrM | 4 |
python-restx/flask-restx | api | 404 | How to specify schema for nested json in flask_restx? | Im using flask_restx for swagger API's. The versions are as follows:
```
python - 3.8.0
flask - 2.0.2
flask_restx - 0.5.1
```
The following is the nested json I need to specify the schema for:
```
dr_status_fields = app_api.model('DR Status',{
fields.String: {
"elasticsearch": {
"b... | open | 2022-01-07T05:43:44Z | 2022-01-25T16:17:44Z | https://github.com/python-restx/flask-restx/issues/404 | [
"question"
] | rakeshk121 | 1 |
ansible/ansible | python | 84,059 | regex_replace fails to to work on passed in strings, OK on variables | ### Summary
ansible.builtin.regex_replace works fine when used on a variable
```
set_fact:
var: "{{ aVariable | ansible.builtin.regex('old','new') }}"
```
but does nothing to the text, if it is prevouslt filtered, thus
```
set_fact:
wrong: "{{ my_var1+myavr2 | string | ansible.builtin.regex(... | closed | 2024-10-07T11:27:27Z | 2024-10-22T13:00:06Z | https://github.com/ansible/ansible/issues/84059 | [
"bug",
"affects_2.16"
] | hobson42 | 4 |
joke2k/django-environ | django | 10 | Typo doc | Hi,
In the documentation for the dict type, the prototype is this:
dict (BAR=key=val;foo=bar)
it should be this:
dict (BAR=key=val,foo=bar)
| closed | 2014-06-27T14:26:56Z | 2015-12-25T18:58:25Z | https://github.com/joke2k/django-environ/issues/10 | [] | moimael | 2 |
scikit-optimize/scikit-optimize | scikit-learn | 1,036 | Grid sampler is sampling less than n_samples | ```
from skopt.sampler import Grid
from skopt.space import Space
from scipy.spatial.distance import pdist
import numpy as np
n_samples = 10
space = Space([(0.0, 5)])
grid = Grid()
samples = np.array(grid.generate(space.dimensions, n_samples))
print(samples)
print(samples.shape)
assert(len(samples) == n... | open | 2021-05-25T08:50:29Z | 2021-05-25T12:19:31Z | https://github.com/scikit-optimize/scikit-optimize/issues/1036 | [
"Bug"
] | eric-vader | 0 |
ranaroussi/yfinance | pandas | 2,251 | Incorrect output for YFxxx exceptions | ### Describe bug
For YFxxx exceptions the output is:
```
1 Failed download:
['QUATSCH']: YFPricesMissingError('$%ticker%: possibly delisted; no price data found (period=1d) (Yahoo error = "No data found, symbol may be delisted")')
```
I suspect the intended output is
```
1 Failed download:
YFPricesMissingError('$[... | open | 2025-01-31T17:49:33Z | 2025-01-31T21:58:14Z | https://github.com/ranaroussi/yfinance/issues/2251 | [] | detlefm | 2 |
tfranzel/drf-spectacular | rest-api | 835 | Is it possible to keep the openapi file dynamic as the APIs change overtime? |
Consider that I have a specific structure in the **requestBody** argument of the _@extend_schema_ decorator. Over time if the API changes and the structure mentioned above has to change as well.
How can we keep the OpenAPI file dynamic without updating the _@extend_schema_ for the upcoming API updates?
| closed | 2022-10-12T18:52:08Z | 2022-11-21T16:35:03Z | https://github.com/tfranzel/drf-spectacular/issues/835 | [] | pshk04 | 2 |
apache/airflow | python | 47,521 | Test Deployment via breeze in KinD/K8s need to realx Same Origin Policy | ### Body
When a local K8s cluster (via KinD) is started through `breeze k8s ...` and you attempt to open the exposed URL in the browser (it uses a random forwarded port, e.g. http://localhost:13582/ ) then you get the following errors:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote ... | closed | 2025-03-07T22:29:05Z | 2025-03-09T08:18:50Z | https://github.com/apache/airflow/issues/47521 | [
"kind:bug",
"area:dev-env",
"area:dev-tools",
"kind:meta",
"area:UI"
] | jscheffl | 2 |
tfranzel/drf-spectacular | rest-api | 415 | Support mark field deprecated | See https://spec.openapis.org/oas/v3.1.0#parameter-object | closed | 2021-06-02T07:40:54Z | 2023-04-09T19:27:23Z | https://github.com/tfranzel/drf-spectacular/issues/415 | [
"enhancement",
"fix confirmation pending"
] | elonzh | 5 |
localstack/localstack | python | 11,712 | feature request: Enable Stepfunctions to be provided the Mock Config | ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Feature description
## Context
Step functions in Local stack uses - `amazon/aws-stepfunctions-local` image. With that image, AWS offers a way to test with mocked config, [link here ](https://docs.aws.amazon.com/step-functions/lat... | open | 2024-10-18T08:59:49Z | 2025-02-26T20:13:41Z | https://github.com/localstack/localstack/issues/11712 | [
"type: feature",
"status: backlog"
] | priyatoshkashyap | 2 |
CTFd/CTFd | flask | 2,598 | CTFD Docker install: Docker-entrypoint not found, no such file or directory | <!--
If this is a bug report please fill out the template below.
If this is a feature request please describe the behavior that you'd like to see.
-->
**Environment**: Docker
- CTFd Version/Commit: 3.7.3
- Operating System: Windows
- Web Browser and Version: Firefox 130.0
**What happened?**
I ran the ... | open | 2024-09-13T07:23:51Z | 2024-09-13T13:09:55Z | https://github.com/CTFd/CTFd/issues/2598 | [] | GrainedPanther | 1 |
Miserlou/Zappa | flask | 1,549 | zappa package fails with zappa from git and slim_handler | ## Context
If you're trying to run a zappa as an editable from a git repo, it works, except if you have slim_handler enabled.
## Expected Behavior
It should build a zip with zappa inside.
## Actual Behavior
It fails with a traceback like this when building the handler_venv:
```
Traceback (most recent call l... | open | 2018-06-26T16:01:02Z | 2020-04-03T17:17:31Z | https://github.com/Miserlou/Zappa/issues/1549 | [] | jneves | 5 |
deepfakes/faceswap | machine-learning | 1,145 | bug on require CPU (Mac Big Sur) | in the end of pip require....
Collecting pynvx==1.0.0
Using cached pynvx-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (119 kB)
ERROR: Could not find a version that satisfies the requirement tensorflow<2.5.0,>=2.2.0
ERROR: No matching distribution found for tensorflow<2.5.0,>=2.2.0
resolve? | closed | 2021-04-06T19:17:20Z | 2022-06-30T10:02:04Z | https://github.com/deepfakes/faceswap/issues/1145 | [
"bug"
] | SiNaPsEr0x | 8 |
babysor/MockingBird | pytorch | 928 | 系统找不到指定的路径。: 'encoder\\saved_models | **Summary[问题简述(一句话)]**
运行 python encoder_train.py bfx ./ 报错提示找不到路径
**Env & To Reproduce[复现与环境]**
**Screenshots[截图(如有)]**

| closed | 2023-07-01T08:56:15Z | 2023-09-04T13:59:18Z | https://github.com/babysor/MockingBird/issues/928 | [] | 2265290305 | 0 |
jwkvam/bowtie | plotly | 240 | use yarn.lock | https://yarnpkg.com/lang/en/docs/yarn-lock/ will make for consistent js environment other than node and yarn of course.
- [ ] release process to create yarn.lock from package.json
- [ ] use yarn.lock instead of package.json
Might not be able to do anything with component packages. I don't think it makes sense to... | open | 2018-09-20T04:45:39Z | 2018-09-20T06:05:28Z | https://github.com/jwkvam/bowtie/issues/240 | [
"reliability"
] | jwkvam | 0 |
Esri/arcgis-python-api | jupyter | 1,835 | Feature Service Cloning renames Feature Service URL unnecessarily | **Describe the bug**
Cloning a Feature Service with a GUID in the name (e.g. as generated when Survey123 creates a Hosted Feature Service) from one Portal instance to another results in the renaming of the service name at the target, even if the end service name does not exist at the target.
For example:
https://s... | open | 2024-05-23T00:45:04Z | 2024-05-23T09:43:34Z | https://github.com/Esri/arcgis-python-api/issues/1835 | [
"bug"
] | shane-pienaar-gbs | 0 |
art049/odmantic | pydantic | 265 | Model.update not detecting datetime change in FastAPI | # Bug
I'm trying to automatically update the _modified_at_ field in my **Server** model from a FastAPI enpoint, but the **Model.update** method doesn't update the field.
### Current Behavior
For this i have the base model to **create** a Server (simplified version):
```
class Server(Model):
id: UUID =... | open | 2022-09-11T09:38:16Z | 2022-11-11T05:12:05Z | https://github.com/art049/odmantic/issues/265 | [
"bug"
] | M4rk3tt0 | 4 |
apachecn/ailearning | python | 652 | Ggg | Gggg```
[_****_]()
``` | closed | 2024-08-24T22:06:57Z | 2024-08-25T12:23:41Z | https://github.com/apachecn/ailearning/issues/652 | [] | ghost | 1 |
polakowo/vectorbt | data-visualization | 177 | import errors | I am getting the following errors
from vectorbt.portfolio.nb import auto_call_seq_ctx_nb
ImportError: cannot import name 'auto_call_seq_ctx_nb' from 'vectorbt.portfolio.nb'
from vectorbt.portfolio.nb import order_nb
ImportError: cannot import name 'order_nb' from 'vectorbt.portfolio.nb'
| closed | 2021-06-23T15:07:22Z | 2024-03-16T09:27:56Z | https://github.com/polakowo/vectorbt/issues/177 | [] | hayilmaz | 6 |
frol/flask-restplus-server-example | rest-api | 43 | ImportError: cannot import name 'force_auto_coercion' | On centos 6 and python 3.4 when executing invoke app.run following error occurs
`2017-01-11 13:04:17,614 [INFO] [tasks.app.dependencies] Project dependencies are installed.
2017-01-11 13:04:17,615 [INFO] [tasks.app.dependencies] Installing Swagger UI assets...
2017-01-11 13:04:17,616 [INFO] [tasks.app.dependenc... | closed | 2017-01-11T07:38:47Z | 2017-01-11T09:18:19Z | https://github.com/frol/flask-restplus-server-example/issues/43 | [] | akashtalole | 2 |
ivy-llc/ivy | tensorflow | 28,475 | Fix Ivy Failing Test: paddle - activations.softplus | To-do List: https://github.com/unifyai/ivy/issues/27501 | closed | 2024-03-04T12:22:56Z | 2024-03-17T12:41:32Z | https://github.com/ivy-llc/ivy/issues/28475 | [
"Sub Task"
] | ZJay07 | 0 |
huggingface/text-generation-inference | nlp | 2,952 | CUDA Out of memory when using the benchmarking tool with batch size greater than 1 | ### System Info
- TGI v3.0.1
- OS: GCP Container-Optimized OS
- 4xL4 GPUs (24GB memory each)
- Model is `hugging-quants/Meta-Llama-3.1-70B-Instruct-AWQ-INT4`
As soon as I run the TGI benchmarking tool (text-generation-benchmark) with the desired input length for our use case and batch size of 2, I get CUDA Out of M... | open | 2025-01-24T14:06:33Z | 2025-01-24T14:17:51Z | https://github.com/huggingface/text-generation-inference/issues/2952 | [] | mborisov-bi | 0 |
MaartenGr/BERTopic | nlp | 1,156 | Arrangement of topic embeddings result | Hi @MaartenGr, thank you for this wonderful package as it really helped in our use case, though I want to clarify the arrangement of the `topic_embeddings_` output. If I have let's say topics output like [-1, 0, 1, ..., 13]. is the `topic_embeddings_` result also ordered in such a way? or [0, 1, ..., 13, -1]. Thank you... | closed | 2023-04-05T08:33:59Z | 2023-04-06T13:19:20Z | https://github.com/MaartenGr/BERTopic/issues/1156 | [] | tanstephenjireh | 1 |
jschneier/django-storages | django | 1,214 | django-storages and mypy integration | When using mypy, the next error appeared:
"Skipping analyzing "storages.backends.s3boto3": module is installed, but missing library stubs or py.typed marker [import]mypy"
As for third-party modules, the solution will be to add support by bulding a django-storages-stubs package, so it can integrate well.
For ... | closed | 2023-02-12T03:28:09Z | 2023-10-22T00:46:44Z | https://github.com/jschneier/django-storages/issues/1214 | [] | KMoreno96 | 1 |
koaning/scikit-lego | scikit-learn | 34 | feature request: FeatureSmoother/ConstrainedSmoother | 
it might be epic if you could smooth out every column in `X` with regards to `y` as a transformer before it goes into a estimator. when looking at the loe(w)ess model this seems to be exactly what i want. no... | closed | 2019-03-18T13:29:28Z | 2020-01-24T21:40:33Z | https://github.com/koaning/scikit-lego/issues/34 | [] | koaning | 3 |
alteryx/featuretools | scikit-learn | 2,057 | Improve tests for primitives that use Datetime inputs | For most datetime primitives, improper conversion of a timezone aware datetime value to a different timezone or UTC could result in the primitives returning incorrect values. For example, converting a time in the US to UTC will result in a change in the hour of the datetime and could also result in a change in the Day,... | open | 2022-05-11T18:39:20Z | 2023-06-26T19:10:49Z | https://github.com/alteryx/featuretools/issues/2057 | [] | thehomebrewnerd | 0 |
deezer/spleeter | tensorflow | 566 | [Feature] --version ? | ## Description
I need to know which version of spleeter is installed
for this, I would use `spleeter --version` but I can't find this information anywhere.
Does this feature exist?
Thanks | closed | 2021-01-25T13:14:35Z | 2021-01-30T04:22:30Z | https://github.com/deezer/spleeter/issues/566 | [
"enhancement",
"feature"
] | martinratinaud | 3 |
Lightning-AI/pytorch-lightning | pytorch | 19,955 | Adam optimizer is slower after loading model from checkpoint | ### Bug description
When i was resuming my model from training from checkpoint i notice slowness in gpu utilization. I have found problem that adam is doing cuda sync after restoring from checkpoint. It is a problem if you have a lot of optimziers in your network.
Adam implementation is assuming that step compon... | closed | 2024-06-07T10:14:25Z | 2024-08-05T22:13:41Z | https://github.com/Lightning-AI/pytorch-lightning/issues/19955 | [
"bug",
"help wanted",
"optimization",
"performance"
] | radomirgr | 27 |
SciTools/cartopy | matplotlib | 1,915 | PyProj transformers often reinstantiated | Profiling an animation I've been fiddling with, I noticed about 10 seconds (~15% of the total run time) was spent in `_safe_pj_transform`:
```
24631906 function calls (23998894 primitive calls) in 62.484 seconds
Ordered by: cumulative time
ncalls tottime percall cumtime percall filename:lin... | closed | 2021-10-28T22:47:48Z | 2021-11-14T06:02:38Z | https://github.com/SciTools/cartopy/issues/1915 | [] | Bob131 | 5 |
vitalik/django-ninja | django | 1,345 | Can I cache a variable in ModelSchema? | code like this: I query SomeMode three times to get a OutSchema, Question: Can I cache the 'x' result to reduce db query?
```Python
class OutSchema(ModelSchema):
out_a: str
out_b: str,
out_c: str
class Config:
model = M
@staticmethod
def resolve_out_a(obj):
x =... | open | 2024-11-26T07:25:01Z | 2024-11-26T08:40:24Z | https://github.com/vitalik/django-ninja/issues/1345 | [] | pyang30 | 1 |
albumentations-team/albumentations | deep-learning | 1,781 | Huggingface demo link in docs does not allow user uploaded images | ## Describe the bug
Huggingface demo link in docs does not allow user uploaded images.
### To Reproduce
Test here:
https://huggingface.co/spaces/qubvel-hf/albumentations-demo?transform=CLAHE | closed | 2024-06-08T19:35:46Z | 2024-09-19T04:31:04Z | https://github.com/albumentations-team/albumentations/issues/1781 | [
"feature request"
] | ogencoglu | 3 |
ansible/ansible | python | 84,131 | Cleanup conflicting `/etc/apt/sources.list.d/*.list` when adding `/etc/apt/sources.list.d/*.sources` | ### Summary
I've been using the new `deb822_repository` to declare apt repositories but when i ran it on an existing machine which already configured some repo the old way, I got a lot of warnings like this:
```
W: Target CNF (main/cnf/Commands-amd64) is configured multiple times in /etc/apt/sources.list.d/vscode.... | closed | 2024-10-17T01:25:26Z | 2024-10-31T13:00:03Z | https://github.com/ansible/ansible/issues/84131 | [
"feature"
] | UnknownPlatypus | 2 |
keras-team/keras | data-science | 20,801 | Optimizer don't have apply() method | ### Environment:
_Python 3.12.7
Tensorflow 2.16.1
Keras 3.8.0_
### Problem:
All optimizers from `tf.keras.optimizers` do not have a method `apply()` to write the train routine from [scratch](https://keras.io/guides/writing_a_custom_training_loop_in_tensorflow/).
But the docs states [that it exists](https://www.tensorf... | open | 2025-01-23T13:20:11Z | 2025-03-12T02:04:34Z | https://github.com/keras-team/keras/issues/20801 | [
"type:support",
"stat:awaiting response from contributor",
"stale"
] | konstantin-frolov | 4 |
littlecodersh/ItChat | api | 961 | 请求增加web接口网页版文件传输助手登录方式,为被封网页版的微信号开个路。 | UOS不是也封了么。
我的微信因为用itchat被封了网页登录(https://wx.qq.com/)。
但是12月新出的网页文件传输助手(https://filehelper.weixin.qq.com)不限制。
我想问有没有哪个包可以调用web接口网页文件传输助手给自己的微信发消息。
我给自己的手机发消息没理由限制吧。
类似
```
itchat.auto_login(hotReload=True,fileHelper=True)
itchat.send('hello filehelper','filehelper')
```
| open | 2022-02-10T09:09:31Z | 2022-05-06T09:35:18Z | https://github.com/littlecodersh/ItChat/issues/961 | [] | ftune | 2 |
NullArray/AutoSploit | automation | 1,051 | Unhandled Exception (aac44356a) | Autosploit version: `3.1.1`
OS information: `Linux-4.19.0-kali3-amd64-x86_64-with-Kali-kali-rolling-kali-rolling`
Running context: `autosploit.py`
Error mesage: ``/root/AutoSploit/hosts.txt` and `/root/AutoSploit/hosts.txt` are the same file`
Error traceback:
```
Traceback (most recent call):
File "/root/AutoSploit/au... | closed | 2019-04-20T09:35:43Z | 2019-09-03T21:17:02Z | https://github.com/NullArray/AutoSploit/issues/1051 | [
"bug"
] | AutosploitReporter | 1 |
Sanster/IOPaint | pytorch | 82 | Add resizable brush when alt+left mouse button is pressed | In photoshop, you could change the size of the brush when you pressed alt and held down the left mouse button. It would be convenient to use it here as well. Or as in [Ballon Translator](https://github.com/dmMaze/BallonsTranslator)
Example video:
https://user-images.githubusercontent.com/57861007/194719080-536bf0... | closed | 2022-10-08T17:05:34Z | 2022-11-08T01:06:08Z | https://github.com/Sanster/IOPaint/issues/82 | [] | bropines | 2 |
nalepae/pandarallel | pandas | 19 | ArrowIOError: Could not connect to socket /tmp/test_plasma-pxm7ybav/plasma.sock | Hi,
I installed pandarallel via `pip install pandarallel`. And it cannot initialized properly. It seems that I cannot connect to the socket and I cannot find the exact file mentioned in the error message though the folder exists. Please see below.
` | __User Experience:__
* While reading directories that include document types not supported by the application. GPT-Researcher crashes.
__The Problem:__
* The function must return an iterable,
* which is what the `except Exception` handler is trying to manage by including a `return []`.
* However, if `loader... | closed | 2024-05-31T15:03:08Z | 2024-06-01T12:50:28Z | https://github.com/assafelovic/gpt-researcher/issues/555 | [] | DanHUMassMed | 1 |
neuml/txtai | nlp | 795 | Add audio signal processing and mixing methods | Add common utility methods for audio signal processing and mixing of multiple audio streams (i.e. speech and music). | closed | 2024-10-09T12:48:07Z | 2024-10-11T12:36:14Z | https://github.com/neuml/txtai/issues/795 | [] | davidmezzetti | 0 |
CorentinJ/Real-Time-Voice-Cloning | deep-learning | 535 | When I press "Synthesise Only" a error appears. | Here's the log:
`
Traceback (most recent call last):
File "C:\Users\ABLPHA\Desktop\mods\Source SDK\Real-Time-Voice-Cloning-master\toolbox\__init__.py", line 121, in <lambda>
func = lambda: self.synthesize() or self.vocode()
File "C:\Users\ABLPHA\Desktop\mods\Source SDK\Real-Time-Voice-Cloning-master\toolbo... | closed | 2020-09-29T18:24:49Z | 2020-09-30T07:55:48Z | https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/535 | [] | mineLdiver | 11 |
gunthercox/ChatterBot | machine-learning | 1,629 | Chatterbot |
Hi ,
I want to know how to save chat history between the user and the bot in to the file
and i want to create it as dynamic chat without any data providing before and train that files just we need to train the chat history file through that we can make the conversation | closed | 2019-02-21T04:44:22Z | 2019-12-19T09:37:33Z | https://github.com/gunthercox/ChatterBot/issues/1629 | [] | mady143 | 3 |
DistrictDataLabs/yellowbrick | matplotlib | 539 | TSNE size & title bug | **Describe the bug**
Looks like our `TSNEVisualizer` might have a bug that causes an error on instantiation if either the `size` or `title` parameters are used.
**To Reproduce**
```python
from yellowbrick.text import TSNEVisualizer
from sklearn.feature_extraction.text import TfidfVectorizer
corpus = load_da... | closed | 2018-08-01T17:43:21Z | 2018-11-02T08:04:26Z | https://github.com/DistrictDataLabs/yellowbrick/issues/539 | [
"type: bug",
"priority: high"
] | rebeccabilbro | 6 |
ultralytics/ultralytics | pytorch | 19,323 | YOLOV8 segment | ### 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
After performing instance segmentation with YOLOv8, why are the edges of the... | open | 2025-02-20T06:34:21Z | 2025-02-26T10:33:38Z | https://github.com/ultralytics/ultralytics/issues/19323 | [
"question",
"segment"
] | 123lj-z | 8 |
microsoft/qlib | deep-learning | 1,196 | AttributeError: module 'collector' has no attribute 'YahooNormalizeUS1dExtend' while running update_data_to_bin | ## 🐛 Bug Description
After downloading all the US tickers I attempted to update the prices using 'python collector.py update_data_to_bin'
An observation made is it took almost the same amount of time than downloading all the data. Plus, by the end of the execution, the script crashed:
2022-07-13 06:22:32.848... | closed | 2022-07-13T09:54:50Z | 2022-07-18T22:48:11Z | https://github.com/microsoft/qlib/issues/1196 | [
"bug"
] | rmallof | 3 |
open-mmlab/mmdetection | pytorch | 11,955 | Is there any plan for next release? | Current v3.3 has compatibility issue which blocks the upgrade of mmcv and torch. Since the solution is already merged to dev-3.x branch, wanna know any plan for next release?
https://github.com/open-mmlab/mmdetection/pull/11764 | open | 2024-09-10T20:54:27Z | 2024-12-18T04:20:22Z | https://github.com/open-mmlab/mmdetection/issues/11955 | [] | rayhsieh | 1 |
dask/dask | scikit-learn | 11,115 | Previously working time series resampling breaks in new version of Dask | **Describe the issue**:
Resampling over a time series used to work with `dask==2024.2.1`. However, with `dask=2024.5.0` and `dask-expr=1.1.0` it throws an exception.
**Minimal Complete Verifiable Example**:
```python
import dask.dataframe as dd
df = dd.DataFrame.from_dict({
"Date":["11/26/2017", "11/2... | closed | 2024-05-10T06:19:39Z | 2024-05-14T17:13:50Z | https://github.com/dask/dask/issues/11115 | [
"dataframe",
"dask-expr"
] | andersglindstrom | 3 |
trevorstephens/gplearn | scikit-learn | 212 | Question about results | Hello,
I trained the model and get the results below. But I find alpha_1 in the picture is a constant, not a variable, 'ts_sum' is my customed function. Can you figure out what the reason maybe is ?
Thank you!
 my functions doesn't work anymore?
When I save the code, i get the green validation but when i want to activate a function i get this error code:
"Error: Activate Conditional: Measurem... | closed | 2019-09-18T16:19:41Z | 2019-09-19T02:28:46Z | https://github.com/kizniche/Mycodo/issues/690 | [] | buzzfuzz2k | 8 |
ageitgey/face_recognition | machine-learning | 813 | when I import face_recognition module Python stop working. | I dont know what is the isssue. I reinstall my window and only install Visual studio 2019. then miniconda3. In env i install opencv, Cmake and then pip --no-cache-dir install face_recognition everything goes well. but when I import face_recognition python stop working error pop up. | closed | 2019-05-03T04:49:06Z | 2019-09-28T04:11:58Z | https://github.com/ageitgey/face_recognition/issues/813 | [] | ridarafisyed | 6 |
marimo-team/marimo | data-science | 3,816 | Styling of web components is difficult/impossible | ### Describe the bug
It seems to me that it is currently impossible to apply CSS styles from the notebook's custom CSS to UI components. I'm not sure whether this is intended behavior - but I think it's not.
I think this got introduced in #2184, which embeds the custom CSS directly into HTML. But then the custom styl... | closed | 2025-02-17T15:49:03Z | 2025-02-17T17:34:29Z | https://github.com/marimo-team/marimo/issues/3816 | [
"bug"
] | xqms | 1 |
explosion/spaCy | deep-learning | 12,524 | Showing ℹ 0 label(s) although labels present in the German dataset | <!-- NOTE: For questions or install related issues, please open a Discussion instead. -->
Hi, I'm trying to train the German transformer model. I have a dataset in German language and modified into this format [https://github.com/explosion/spaCy/blob/master/extra/example_data/ner_example_data/ner-token-per-line.json](... | closed | 2023-04-12T13:12:16Z | 2023-05-14T00:02:20Z | https://github.com/explosion/spaCy/issues/12524 | [
"usage",
"feat / cli"
] | srikamalteja | 3 |
tox-dev/tox | automation | 2,655 | extras with underscore cause missmatch during package dependency discovery | ## Issue
I don't have time to write a lot here right now, but the problem kind of explains itself starting from https://github.com/astropy/astropy/pull/14139#issuecomment-1343642377 and then a few comments that follow. Thanks!
cc @dhomeier @gaborbernat | closed | 2022-12-09T01:17:13Z | 2024-10-07T18:37:38Z | https://github.com/tox-dev/tox/issues/2655 | [
"bug:normal",
"help:wanted"
] | pllim | 16 |
rpicard/explore-flask | flask | 94 | Add translations | Hey man, the explore flask is a very good site for those who want to learn flask in the right way. Fuck would translate it to Portuguese (my native language). So I was wondering if there is a possibility and how I would organize the directory of this translation in the project, like, if I would add a call en folder in ... | closed | 2016-02-07T22:55:53Z | 2016-02-09T19:36:07Z | https://github.com/rpicard/explore-flask/issues/94 | [] | wilfilho | 3 |
python-restx/flask-restx | flask | 544 | I am using the expect decorator, and the result of model validation is eventually printed with flask_restx.abort. How do I customize this response? | I am using the expect decorator, and the result of model validation is eventually printed with flask_restx.abort. How do I customize this response? | open | 2023-05-31T08:50:07Z | 2023-05-31T08:51:33Z | https://github.com/python-restx/flask-restx/issues/544 | [
"question"
] | miaokela | 1 |
vimalloc/flask-jwt-extended | flask | 11 | Give a dictionary to create_access_token | Hey, would be nice to pass a dictionary value when I'm creating token, so I can use in `add_claims_to_access_token` and I don't have to find again to database using identity.
LOGIN: Here I have to find on database.
```
@custom_api.route('/auth', methods=['POST'])
def login():
options = {
'body': None,
... | closed | 2016-10-16T16:04:50Z | 2016-10-24T16:40:17Z | https://github.com/vimalloc/flask-jwt-extended/issues/11 | [] | laranicolas | 10 |
Johnserf-Seed/TikTokDownload | api | 511 | [BUG] 程序在某个节点就会卡住,无报错,只是程序不动弹了也不刷新了 | **描述出现的错误**

**bug复现**
复现这次行为的步骤:
#510
看这里!!!(下面这个是图片)

**桌面(请填写以下信息):**
-操作系统:[Windo... | closed | 2023-08-14T22:54:25Z | 2023-08-18T11:44:01Z | https://github.com/Johnserf-Seed/TikTokDownload/issues/511 | [
"故障(bug)",
"额外求助(help wanted)",
"无效(invalid)"
] | EsperantoP | 3 |
AirtestProject/Airtest | automation | 1,277 | Airtest IDE无法调用api进行手机屏幕录制,一直卡在启动录制代码上 | (请尽量按照下面提示内容填写,有助于我们快速定位和解决问题,感谢配合。否则直接关闭。)
**(重要!问题分类)**
* 测试开发环境AirtestIDE使用问题 -> https://github.com/AirtestProject/AirtestIDE/issues
* 控件识别、树状结构、poco库报错 -> https://github.com/AirtestProject/Poco/issues
* 图像识别、设备控制相关问题 -> 按下面的步骤
**描述问题bug**
(简洁清晰得概括一下遇到的问题是什么。或者是报错的traceback信息。)
调用api进行手机屏幕录制时,一直卡在启动录制的代码
```
(在这里... | open | 2025-02-20T02:15:16Z | 2025-02-20T02:15:16Z | https://github.com/AirtestProject/Airtest/issues/1277 | [] | 15876379684aa | 0 |
horovod/horovod | machine-learning | 3,354 | Trying to get in touch regarding a security issue | Hey there!
I belong to an open source security research community, and a member (@srikanthprathi) has found an issue, but doesn’t know the best way to disclose it.
If not a hassle, might you kindly add a `SECURITY.md` file with an email, or another contact method? GitHub [recommends](https://docs.github.com/en/code-s... | closed | 2022-01-09T00:13:04Z | 2022-01-19T19:25:36Z | https://github.com/horovod/horovod/issues/3354 | [] | JamieSlome | 3 |
mars-project/mars | scikit-learn | 3,187 | [BUG] Ray executor raises KeyError | <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Describe the bug**
A clear and concise description of what the bug is.
```python
_____________________________________________________________________________... | closed | 2022-07-12T11:01:38Z | 2022-07-28T03:35:27Z | https://github.com/mars-project/mars/issues/3187 | [
"type: bug",
"mod: ray integration"
] | fyrestone | 0 |
seleniumbase/SeleniumBase | web-scraping | 3,012 | Proxy Causing Browser Crash | 
When using proxy, I get the above message in the browser... The stability definitely seems to be getting effected as my program works fine when proxy is removed.
`with SB(uc=True, test=True, slo... | closed | 2024-08-11T05:21:54Z | 2024-08-11T16:25:00Z | https://github.com/seleniumbase/SeleniumBase/issues/3012 | [
"question",
"invalid usage",
"UC Mode / CDP Mode"
] | ttraxxrepo | 5 |
davidteather/TikTok-Api | api | 92 | [BUG] Error when running getTiktoksByHashtag | Getting this error when running getTiktoksByHashtag
```
Converting response to JSON failed response is below (probably empty)
Traceback (most recent call last):
File "C:\Users\Asus\AppData\Local\Programs\Python\Python37\lib\site-packages\TikTokApi\tiktok.py", line 34, in getData
return r.json()
File "... | closed | 2020-05-18T02:27:10Z | 2021-02-03T22:03:29Z | https://github.com/davidteather/TikTok-Api/issues/92 | [
"bug"
] | cplasabas | 3 |
qwj/python-proxy | asyncio | 197 | http+socks5+ss on single port | hello, is it possible to do that? how i can set auth params for this config?
thanks a lot, | open | 2024-12-21T13:16:14Z | 2025-01-09T02:43:54Z | https://github.com/qwj/python-proxy/issues/197 | [] | MaximKiselev | 1 |
streamlit/streamlit | deep-learning | 10,598 | Avoid `StreamlitDuplicateElementId` error when the same widget is in the main area and sidebar | ### 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
Using the same widget in the main area and the sidebar results in a `StreamlitDuplicateElementId` error:
```... | open | 2025-03-02T19:48:13Z | 2025-03-17T11:55:52Z | https://github.com/streamlit/streamlit/issues/10598 | [
"type:enhancement",
"good first issue",
"feature:st.sidebar"
] | sfc-gh-jrieke | 7 |
huggingface/datasets | numpy | 6,905 | Extraction protocol for arrow files is not defined | ### Describe the bug
Passing files with `.arrow` extension into data_files argument, at least when `streaming=True` is very slow.
### Steps to reproduce the bug
Basically it goes through the `_get_extraction_protocol` method located [here](https://github.com/huggingface/datasets/blob/main/src/datasets/utils/file_ut... | closed | 2024-05-17T16:01:41Z | 2025-02-06T19:50:22Z | https://github.com/huggingface/datasets/issues/6905 | [] | radulescupetru | 1 |
falconry/falcon | api | 1,470 | No response is returned when requesting POST in 2.0.0a1 version | Hi, I might have found a bug on 2.0.0a1 version.
I tried this code on 2.0.0a1 version.
but, Processing stops on 'req.stream.read()', there is no response.
```python
import falcon
class SampleResource(object):
def on_post(self, req, resp):
data = req.stream.read()
return {'status': 'ok'... | closed | 2019-03-04T14:31:46Z | 2019-03-06T17:47:19Z | https://github.com/falconry/falcon/issues/1470 | [
"documentation",
"needs-information"
] | shimakaze-git | 3 |
davidsandberg/facenet | tensorflow | 645 | Unable to load pretrained model | Hi, I would like to load pretrained model in my data training. When i type this in my command:
-- pretrained_model model-20170512-110547.ckpt-250000
My program failed to load it. Can I know how should I write in my command? | closed | 2018-02-17T17:27:39Z | 2018-10-23T06:52:39Z | https://github.com/davidsandberg/facenet/issues/645 | [] | ricky5151 | 2 |
influxdata/influxdb-client-python | jupyter | 279 | How to determine possible failures during write api | Hello, I am working on a piece of code to send influxdb formatted files on the local filesystem to our influxdb server.
I would like to be able to assure that a file's data has been successfully sent to the server before removing the local file.
In example code, It seems that the return values of write are not chec... | closed | 2021-06-29T20:25:20Z | 2021-12-10T13:52:12Z | https://github.com/influxdata/influxdb-client-python/issues/279 | [
"question",
"wontfix"
] | witanswer | 6 |
openapi-generators/openapi-python-client | rest-api | 657 | Add a way to override content types | Add `content_type_overrides` or similar to the formats accepted by `--config` so that folks can redirect a specialized content type to one of the implementations that exist in this project.
Specifically, one might solve #592 by adding something like:
```yaml
content_type_overrides:
"application/vnd.api+json... | closed | 2022-08-21T17:36:18Z | 2023-08-13T01:32:59Z | https://github.com/openapi-generators/openapi-python-client/issues/657 | [
"✨ enhancement"
] | dbanty | 0 |
Lightning-AI/pytorch-lightning | machine-learning | 19,602 | Notebook crashes before training | ### Bug description
When training a T5 finetuner, model.fit() ends without any output. Attempts to run any other cells hang until the notebook is restarted, so I can assume that the notebook has crashed.
### What version are you seeing the problem on?
master
### How to reproduce the bug
```python
from transformers... | open | 2024-03-08T15:22:24Z | 2024-03-08T15:22:39Z | https://github.com/Lightning-AI/pytorch-lightning/issues/19602 | [
"bug",
"needs triage",
"ver: 2.2.x"
] | JIBSIL | 0 |
pydantic/pydantic | pydantic | 11,328 | TypeAdapter.validate transforms a nested dictionary into an empty object | ### Initial Checks
- [x] I confirm that I'm using Pydantic V2
### Description
- action: use `TypeAdapter.validate_python` to validate a dict against a python `TypedDict`, the dict should not validate
- expected: exception since the value does not validate
- actual: `TypeAdapter` transforms the input value (it drops ... | open | 2025-01-23T14:06:33Z | 2025-02-12T19:28:41Z | https://github.com/pydantic/pydantic/issues/11328 | [
"bug V2"
] | jgogstad | 3 |
microsoft/qlib | machine-learning | 1,242 | US data displays negative annualized return for all the models | I tried US data for all the models, but all of them showing negative annualized return, (while the SP500 benchmark showing 12% annualized return). For examples, here are my workflow for LSTM, I wonder did I make any mistakes? (I also checked the SP500 from 2017 to 2020, the portfolio cannot be negative even randomly ... | closed | 2022-08-01T19:33:34Z | 2022-12-17T18:01:54Z | https://github.com/microsoft/qlib/issues/1242 | [
"question",
"stale"
] | anonymous-papers | 3 |
pywinauto/pywinauto | automation | 891 | pywinauto fails to access controls when too many controls exist | ## Expected Behavior
This specific .NET application I am using works fine with pywinauto, except when the app retrieves a huge DataGridView (12k+ controls).
Controls, however, do exists as they can be checked using "Accessibility Insights" using backend uia (equivalent to inspect.exe)
Way more (not all!!) contro... | open | 2020-02-17T06:25:45Z | 2023-11-30T02:09:40Z | https://github.com/pywinauto/pywinauto/issues/891 | [
"performance"
] | Pestitschek | 7 |
ultralytics/ultralytics | computer-vision | 18,834 | How to enable Mixup and mosaic augmentation during training with --rect=True | ### 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
Hello. I would like to ask, why mixup and mosaic augmentations are not appli... | closed | 2025-01-23T02:19:16Z | 2025-01-25T14:45:13Z | https://github.com/ultralytics/ultralytics/issues/18834 | [
"question"
] | WildTaras | 9 |
taverntesting/tavern | pytest | 408 | Remove 'payload' from MQTT response | Now that 'json' can take a single string/int/float/boolean value, it maybe makes sense to just remove this and tell users to use the 'json' key for everything. Other option is to use the 'payload' key for everything.
Also simplify the handling of the difference between json and 'plain' responses in mqtt/response.py | closed | 2019-08-14T16:33:55Z | 2019-12-09T14:14:51Z | https://github.com/taverntesting/tavern/issues/408 | [
"Type: Maintenance"
] | michaelboulton | 1 |
graphql-python/graphene-sqlalchemy | sqlalchemy | 212 | Generate Mutation input from Model | Is there a way to have something like this ?
```python
class AddUserInput(SQLAlchemyInputObjectType):
class Meta:
model = UserModel
``` | closed | 2019-05-09T14:21:54Z | 2023-02-25T06:58:19Z | https://github.com/graphql-python/graphene-sqlalchemy/issues/212 | [] | Rafik-Belkadi | 3 |
cupy/cupy | numpy | 8,803 | `cupy.convolve` gives a wrong result when the input contains `nan` | ### Description
`cupy.convolve` gives a wrong result when the input contains `nan`
### To Reproduce
```py
import numpy as np
import cupy as cp
print("np:", np.convolve(np.array([1, np.nan]), np.array([1, np.nan])))
print("cp:", cp.convolve(cp.array([1, cp.nan]), cp.array([1, cp.nan])))
```
Output:
```py
np: [ 1. na... | closed | 2024-12-10T11:51:42Z | 2025-02-07T00:20:10Z | https://github.com/cupy/cupy/issues/8803 | [
"issue-checked"
] | AnonymousPlayer2000 | 2 |
microsoft/RD-Agent | automation | 2 | This repo is missing important files | There are important files that Microsoft projects should all have that are not present in this repository. A pull request has been opened to add the missing file(s). When the pr is merged this issue will be closed automatically.
Microsoft teams can [learn more about this effort and share feedback](https://docs.opensou... | closed | 2024-04-03T03:39:56Z | 2024-04-03T04:04:15Z | https://github.com/microsoft/RD-Agent/issues/2 | [] | microsoft-github-policy-service[bot] | 0 |
QingdaoU/OnlineJudge | django | 99 | 希望增加的一些小细节 | 1
希望可以指定某些账户(比如管理员发布题目和测试题目的账户)为保留账户,不参与排行榜的显示。
因为在发布题目之后需要跑一遍标程,但是跑过之后又会在rank榜上留下太多的提交记录。
发布题目的管理员账号一直霸占着排行榜的第一位。实在不太好看。
或者提供删除提交记录这个功能也可以。
2
添加题目时候的ID那一栏现在是空白的,需要手动添加。希望可以默认显示一个新ID。
3
提交测试样例的时候只支持.out 不支持.ans
在某些网站下载下来的测试样例是.ans格式的,还需要解压下来更改后缀名后再压缩上传。
希望可以直接支持.ans文件。
4
测试样例貌似必须得从1.in 1.out开始?有时候样例是0... | closed | 2017-12-05T11:48:56Z | 2017-12-08T15:37:52Z | https://github.com/QingdaoU/OnlineJudge/issues/99 | [] | zqqian | 4 |
reloadware/reloadium | flask | 59 | Syntax error when imports are not on first line | **Describe the bug**
I have a number of files that contain preambles before the code (eg copyright notices, file description, etc).
All my python files then contain `from __future__ import annotations` for typing purposes.
When using reloadium with debug, I get the following SyntaxError:
```py
Traceback (most re... | closed | 2022-11-06T01:28:13Z | 2022-11-21T22:42:45Z | https://github.com/reloadware/reloadium/issues/59 | [] | bragradon | 1 |
JaidedAI/EasyOCR | machine-learning | 1,025 | Baselining inference times of various Word detectors. | I am in need of making a trade-off between inference time and accuracies of the various detection model.
I tried docTR on a sample set and it gave following inference times:
real 0m4.963s
user 0m13.920s
sys 0m2.695s
And with CRAFT, I got
real 0m7.633s
user 0m6.958s
sys 0m2.356s
How do I read into this? Al... | open | 2023-05-21T10:23:13Z | 2023-05-21T10:23:13Z | https://github.com/JaidedAI/EasyOCR/issues/1025 | [] | ceyxasm | 0 |
blb-ventures/strawberry-django-plus | graphql | 162 | InputMutation / Mutation not working with List return type | Not sure if this is on purpose, I think that an `gql.django.input_mutation` should be able to return a list type. There seems to be something off in schema generation based on the type annotations, the doesn't have a list, but the type itself, and the mutation fails at runtime.
Example:
```
@gql.type
class Foo:
... | closed | 2023-01-12T17:15:57Z | 2023-01-12T19:51:32Z | https://github.com/blb-ventures/strawberry-django-plus/issues/162 | [] | gersmann | 3 |
FactoryBoy/factory_boy | django | 128 | Use **kwargs instead of extra for overwriting fields when calling #attributes() | I come from the ruby world and really liked factory girl, so I'm very happy to see that there is a similar solution for python. Thanks for that!
I'm currently introducing factory-boy into a project of our company and stumbled over #attributes(), because it's arguments behave differently than #build() or #create().
To... | closed | 2014-02-03T06:49:20Z | 2015-05-06T05:06:48Z | https://github.com/FactoryBoy/factory_boy/issues/128 | [] | florianpilz | 2 |
ray-project/ray | tensorflow | 50,955 | [core] raylet memory leak | ### What happened + What you expected to happen
Seeing consistent memory growth in raylet process on a long-running cluster:
<img width="1371" alt="Image" src="https://github.com/user-attachments/assets/ebcdf7f7-0c1e-4ae7-91f0-7d18a0d7d183" />
<img width="1361" alt="Image" src="https://github.com/user-attachments/as... | closed | 2025-02-27T18:02:35Z | 2025-03-08T00:20:31Z | https://github.com/ray-project/ray/issues/50955 | [
"bug",
"P0",
"core"
] | zcin | 1 |
huggingface/datasets | nlp | 6,478 | How to load data from lakefs | My dataset is stored on the company's lakefs server. How can I write code to load the dataset? It would be great if I could provide code examples or provide some references
| closed | 2023-12-06T09:04:11Z | 2024-07-03T19:13:57Z | https://github.com/huggingface/datasets/issues/6478 | [] | d710055071 | 3 |
tensorflow/tensor2tensor | deep-learning | 1,910 | Use of Layer Normalization | Hello! I would like to know why Layer Normalization and Residual connections have been used in the Transformer architecture. | open | 2022-03-19T20:35:23Z | 2022-03-19T20:35:23Z | https://github.com/tensorflow/tensor2tensor/issues/1910 | [] | Andre1998Shuvam | 0 |
aio-libs/aiomysql | asyncio | 303 | aiomysql Import Error _scramble | In new version of PyMySQL in connection.py _scramble and _scramble_323 has been removed and it cause an error when importing aiomysql. | closed | 2018-06-27T14:54:00Z | 2018-07-06T20:28:21Z | https://github.com/aio-libs/aiomysql/issues/303 | [] | farshid616 | 3 |
mwaskom/seaborn | matplotlib | 3,145 | Legend subtitles should not use hardcoded colors | Currently, in order to generate legend subtitles for multiple semantic types (i.e. hue, size, style), the relational plotter creates invisible legend entries and uses the labels as subtitles. If there is only one semantic type, then the actual "legend title" is used rather than these "hacked legend labels". See https:... | closed | 2022-11-16T21:13:56Z | 2022-12-27T23:25:40Z | https://github.com/mwaskom/seaborn/issues/3145 | [] | nikhilxb | 2 |
WZMIAOMIAO/deep-learning-for-image-processing | deep-learning | 544 | Batch size of the validation/test set for Faster RCNN | Hi,
Thanks a lot for your very helpful code. I have a question about the batch size of the validation/test set for Faster RCNN. When I evaluate the validation/test set for Faster RCNN, I got the mAP of 0 if the batch size of the validation/test set was higher than 1. If the batch size was changed to 1, the mAP woul... | closed | 2022-04-29T20:25:53Z | 2022-05-02T18:04:46Z | https://github.com/WZMIAOMIAO/deep-learning-for-image-processing/issues/544 | [] | lfangyu09 | 1 |
amidaware/tacticalrmm | django | 1,263 | Feature Request: RMM to add disk checks for discovered drives | **Is your feature request related to a problem? Please describe.**
In the Automation Manager, I have a server policy which has multiple drive checks (C:, D:, E:, etc...) however they are all applied to servers but not all servers have these drives and then it creates an alert for it.
**Describe the solution you'd l... | open | 2022-08-24T09:12:29Z | 2023-10-16T11:24:56Z | https://github.com/amidaware/tacticalrmm/issues/1263 | [
"enhancement"
] | mearkats | 1 |
davidsandberg/facenet | tensorflow | 1,031 | How to modify size of width and height of cropped image in facenet/src/align/align_dataset_mtcnn.py | The size of the cropped image is the same as the default length and width. How can I modify it to get the image size of 112*96? | open | 2019-06-05T04:13:42Z | 2019-06-17T07:05:27Z | https://github.com/davidsandberg/facenet/issues/1031 | [] | yangyingni | 1 |
ultralytics/yolov5 | machine-learning | 13,529 | drone resolutions for input 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
halo
I am using a drone and trying to detect rice fields using yolov5. after successfull... | open | 2025-03-10T09:03:52Z | 2025-03-15T22:39:39Z | https://github.com/ultralytics/yolov5/issues/13529 | [
"question",
"detect"
] | pepsodent72 | 9 |
pyg-team/pytorch_geometric | pytorch | 8,746 | diffpool view rendered docs | ### 📚 Describe the documentation issue
can't view rendered docs for [diffpool](https://pytorch-geometric.readthedocs.io/en/latest/_modules/torch_geometric/nn/dense/diff_pool.html)
### Suggest a potential alternative/fix
_No response_ | closed | 2024-01-10T06:35:55Z | 2024-01-10T06:37:54Z | https://github.com/pyg-team/pytorch_geometric/issues/8746 | [
"documentation"
] | willtryagain | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.