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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
Lightning-AI/pytorch-lightning | machine-learning | 20,558 | Error: torch.cuda.OutOfMemoryError: CUDA out of memory. Tried to allocate more than 1EB memory | ### Bug description
I’m using pytorch lighting DDP training with batch size = 16, 8 (gpu per node) * 2 (2 nodes) = 16 total gpus. However, I got the following
error, which happens in ModelCheckpoint callback. There seems to be an error during synchronization between nodes when saving the model checkpoint. And I decrea... | open | 2025-01-22T11:49:59Z | 2025-01-22T11:50:16Z | https://github.com/Lightning-AI/pytorch-lightning/issues/20558 | [
"bug",
"needs triage",
"ver: 2.3.x"
] | Neronjust2017 | 0 |
tqdm/tqdm | jupyter | 1,071 | Notebook progress bar hides input() | visual output bug :
This code hides input() dialog, I cannot type anything, print statements works fine:
from tqdm.notebook import tqdm
print('Before tqdm')
tqdm_bar = tqdm(total=1)
print('After tqdm')
test = input('\n\nenter : \n')
tqdm_bar.update(1)
tqdm_bar.close()
This code works just fine ... | open | 2020-11-08T08:33:35Z | 2020-11-08T10:29:32Z | https://github.com/tqdm/tqdm/issues/1071 | [] | everestokok | 0 |
ultralytics/ultralytics | deep-learning | 18,733 | Evaluating a model that does multiple tasks | ### Search before asking
- [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/ultralytics/ultralytics/discussions) and found no similar questions.
### Question
If a model is used for different things, lets say I have a pose estim... | closed | 2025-01-17T10:46:52Z | 2025-01-20T08:19:59Z | https://github.com/ultralytics/ultralytics/issues/18733 | [
"question",
"pose"
] | uran-lajci | 4 |
widgetti/solara | fastapi | 14 | Support for route in solara.ListItem() | Often you will need to point a listitem to solara route. We can have a `path_or_route` param to the `ListItem()`. to support vue route (similar to `solara.Link()`). | open | 2022-09-01T10:41:58Z | 2022-09-01T10:42:21Z | https://github.com/widgetti/solara/issues/14 | [] | prionkor | 0 |
alirezamika/autoscraper | automation | 47 | Pagination | Hi how can I handle pagination for example if I want to fetch comments and reviews.
And is there a way to detect/handle consecutive pages other than by listing them like how general scrapers would have a click function to move to different pages or actions. | closed | 2021-01-25T10:18:26Z | 2021-07-28T13:39:11Z | https://github.com/alirezamika/autoscraper/issues/47 | [] | programmeddeath1 | 1 |
openapi-generators/openapi-python-client | rest-api | 1,091 | allOf fails if it references a type that also uses allOf with just single item | **Describe the bug**
Conditions:
- Schema A is a type with any definition.
- Schema B contains only an `allOf` with a single element referencing Schema A.
- Schema C contains an `allOf` that 1. references Schema B and 2. adds a property.
Expected behavior:
- Spec is valid. Schema B should be treated as exactl... | closed | 2024-08-06T18:57:33Z | 2024-08-25T02:58:03Z | https://github.com/openapi-generators/openapi-python-client/issues/1091 | [] | eli-bl | 0 |
nolar/kopf | asyncio | 560 | Stop the handler execution after delete the object inside the handler | ## Problem
When i am delete a resource inside a handler kopf trying to patch the object and running inconsistencies checks, but it's not needed because the object does not exist anymore. This is consume the CPU and locks the interpreter.
## Proposal
Maybe create any object inside the handler and call him fo... | open | 2020-10-05T19:11:06Z | 2020-12-08T04:31:47Z | https://github.com/nolar/kopf/issues/560 | [
"enhancement"
] | Nonname123 | 5 |
iperov/DeepFaceLab | deep-learning | 5,403 | TypeError: Can't parse 'center'. Sequence item with index 0 has a wrong type | ## Expected behavior
python main.py train --training-data-src-dir workspace/data_src/aligned --training-data-dst-dir workspace/data_dst/aligned --model-dir workspace/model --model AMP --no-preview
## Actual behavior
Traceback (most recent call last):
File "/usr/lib/python3.6/multiprocessing/process.py", lin... | closed | 2021-10-07T18:00:24Z | 2023-10-14T19:36:42Z | https://github.com/iperov/DeepFaceLab/issues/5403 | [] | a178235 | 6 |
robotframework/robotframework | automation | 4,717 | Support stack trace logging with locals | I'm quite fond of Python's logging framework's ability to be configured to your liking.
One of the things I like to do is to add a custom formatter, often to the root file/console logger, that formats the exceptions differently than the default. I do this primarily to enable local capture, as I find that can greatly r... | open | 2023-04-03T09:22:39Z | 2025-01-07T16:28:52Z | https://github.com/robotframework/robotframework/issues/4717 | [] | dries007 | 4 |
DistrictDataLabs/yellowbrick | scikit-learn | 801 | ValueError: too many values to unpack (expected 2) using load_occupancy() | **Describe the bug**
A clear and concise description of what the bug is.
In feature analysis step, the error occurs around this statement "X, y = load_occupancy()"
"ValueError: too many values to unpack (expected 2)"
However, if only one variable is used on the left hand side of assign operator, the error won't... | closed | 2019-03-31T13:38:29Z | 2019-04-15T00:40:12Z | https://github.com/DistrictDataLabs/yellowbrick/issues/801 | [
"gone-stale"
] | chiahsuy | 4 |
BeanieODM/beanie | asyncio | 151 | `Indexed` breaks pydantic models | ```python
>>> from beanie import Indexed
>>> from pydantic import BaseModel
>>> class Foo(BaseModel):
... foo: int
...
>>> Foo(foo=1)
Foo(foo=1)
>>> # `Foo` works properly
>>> IndexedFoo = Indexed(Foo)
>>> IndexedFoo(foo=1)
Foo()
>>> # `IndexedFoo` is broken
```
This is blocking me from creating an ... | closed | 2021-11-29T16:16:04Z | 2021-11-29T17:05:01Z | https://github.com/BeanieODM/beanie/issues/151 | [] | shniubobo | 2 |
xmu-xiaoma666/External-Attention-pytorch | pytorch | 96 | 使用SEA出现的问题 | 
请问一下如图在使用SEA出现的问题应该怎么解决呢
| open | 2022-11-28T06:45:46Z | 2022-11-28T06:51:57Z | https://github.com/xmu-xiaoma666/External-Attention-pytorch/issues/96 | [] | mmmmyolo | 1 |
voila-dashboards/voila | jupyter | 844 | Voila.template_paths is config=True but ignored by `collect_template_paths` | So I'd think that either that should be `config=False`, or any paths given in the config are prepended or somehow merged with the result of `collect_template_paths`?
As it stands it doesn't look like there is any way of meaningfully using `--Voila.template_paths`.
https://github.com/voila-dashboards/voila/blob/0f... | open | 2021-02-25T11:58:12Z | 2021-02-25T11:58:12Z | https://github.com/voila-dashboards/voila/issues/844 | [] | kurtschelfthout | 0 |
AirtestProject/Airtest | automation | 276 | 请问为什么我用pinch无法对图片进行放大操作? | **bug**
-运行未报错,只是未见图片被放大
**复现步骤**
-代码:pinch('out')
**预期效果**
-pinch('out')应该能模拟放大图片的手势吧?
**python**
-3.6
**airtest**
1.0.25
**设备:**
- Device: [pixel]
- Android version: [Android 9]
**环境**
-win7 | closed | 2019-02-19T08:59:27Z | 2020-05-13T07:43:48Z | https://github.com/AirtestProject/Airtest/issues/276 | [] | LIMU2 | 3 |
tfranzel/drf-spectacular | rest-api | 718 | _get_sidecar_url should probably use django.templatetags.static.static instead of STATIC_URL | **Describe the bug**
```python
def _get_sidecar_url(package):
return f'{settings.STATIC_URL}drf_spectacular_sidecar/{package}'
```
This may fail when using `STATICFILES_STORAGE` with a non-default backend for which `STATIC_URL` is unused or is insufficient to describe the static file location. A more robus... | closed | 2022-04-26T16:32:00Z | 2022-10-04T13:52:15Z | https://github.com/tfranzel/drf-spectacular/issues/718 | [
"enhancement",
"fix confirmation pending"
] | glennmatthews | 7 |
hankcs/HanLP | nlp | 1,144 | 求推荐HanLP for NodeJS 还在活跃的版本 | <!--
注意事项和版本号必填,否则不回复。若希望尽快得到回复,请按模板认真填写,谢谢合作。
-->
## 注意事项
请确认下列注意事项:
* 我已仔细阅读下列文档,都没有找到答案:
- [首页文档](https://github.com/hankcs/HanLP)
- [wiki](https://github.com/hankcs/HanLP/wiki)
- [常见问题](https://github.com/hankcs/HanLP/wiki/FAQ)
* 我已经通过[Google](https://www.google.com/#newwindow=1&q=HanLP)和[issue区检... | closed | 2019-04-08T08:17:54Z | 2019-04-08T14:16:44Z | https://github.com/hankcs/HanLP/issues/1144 | [
"invalid"
] | bosen365 | 2 |
netbox-community/netbox | django | 17,738 | Migration of virtualization.0040_convert_disk_size fails with very large value | ### Deployment Type
Self-hosted
### Triage priority
N/A
### NetBox Version
4.0.10
### Python Version
3.10
### Steps to Reproduce
1. Running Netbox 4.0.10
2. Set Virtual Machine Resources Disk (GB) to an absurdly large value. e.g. 3700000
3. Value is accepted and record saved
4. Check release notes and depen... | closed | 2024-10-11T16:39:27Z | 2025-01-14T03:01:19Z | https://github.com/netbox-community/netbox/issues/17738 | [
"type: bug",
"severity: low"
] | Kage1 | 1 |
xzkostyan/clickhouse-sqlalchemy | sqlalchemy | 306 | `create_all` for all the `MaterializedView` | Hi,
The [example](https://clickhouse-sqlalchemy.readthedocs.io/en/latest/features.html#materialized-views) in the documentation shows a way to create a materialised view, this however requires a specific call for each materialised view I create. Given that I have a large number of materialised views, how can I create ... | open | 2024-03-31T06:26:40Z | 2024-03-31T06:26:40Z | https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/306 | [] | yuvalshi0 | 0 |
pytorch/pytorch | machine-learning | 149,771 | How to remove the “internal api” notice? | ### 📚 The doc issue
What is the option that will remove this notice?
> This page describes an internal API which is not intended to be used outside of the PyTorch codebase and can be modified or removed without notice.
We would like to remove it for https://pytorch.org/docs/stable/onnx_dynamo.html and a few onnx p... | open | 2025-03-21T22:46:30Z | 2025-03-21T22:49:35Z | https://github.com/pytorch/pytorch/issues/149771 | [
"module: docs",
"triaged"
] | justinchuby | 0 |
plotly/dash | plotly | 2,515 | [BUG] tml : "In the callback for output(s):\n plot-update.id\nOutput 0 (plot-update.id) is already in use.\nTo resolve this, set `allow_duplicate=True` on\nduplicate outputs, or combine the outputs into\none callback function, distinguishing the trigger\nby using `dash.callback_context` if necessary." message : "Dup... | When I run my in a docker container in production, I get this error in the browser console and the app is fozen:
sh_renderer.v2_9_3m1682621169.min.js:2 {message: 'Duplicate callback outputs', html: 'In the callback for output(s):\n plot-update.id\nOu…er\nby using `dash.callback_context` if necessary.'}
Qo @ dash_r... | closed | 2023-04-27T19:15:32Z | 2024-05-23T10:11:03Z | https://github.com/plotly/dash/issues/2515 | [] | sorenwacker | 1 |
comfyanonymous/ComfyUI | pytorch | 6,609 | Stability Matrix comfyui multiple errors on clean install. | ### Your question
Hello I have an issue with comfyui, I downloaded it clean via stability matrix, at first I had issues with doing update since I always got an error but not I am sure it's the newest. The version of flux that I'm using is flux1-dev-bnb-nf4-v2.safetensors from https://huggingface.co/lllyasviel/flux1-de... | open | 2025-01-26T16:55:37Z | 2025-01-26T16:55:37Z | https://github.com/comfyanonymous/ComfyUI/issues/6609 | [
"User Support"
] | AlmostHuman34 | 0 |
reloadware/reloadium | django | 84 | Not working, Python 3.10.8, Reloadium 0.9.2 plugin version, M2 chip | ## Describe the bug*
Trying to run using reloadium after the latest update results in the issue:
`It seems like your platform or Python version are not supported yet.
Windows, Linux, macOS and Python 64 bit >= 3.7 (>= 3.9 for M1) <= 3.10 are currently supported.
Please submit a github issue if you believe Reloadi... | closed | 2023-01-19T17:31:50Z | 2023-04-23T07:56:20Z | https://github.com/reloadware/reloadium/issues/84 | [] | stormnick | 13 |
vitalik/django-ninja | django | 1,324 | [BUG] PatchDict errors with inherited schemas | **Describe the bug**
I have a schema hierarchy such as:
```python
class ViewableContent(Schema):
name: str
description: str = None
class MySchema(ViewableContent):
other: str # If I don't add a new field the problem does not arise
```
Then add a router like the following:
```python
@rout... | open | 2024-10-22T10:25:13Z | 2025-03-10T07:43:26Z | https://github.com/vitalik/django-ninja/issues/1324 | [] | filippomc | 7 |
modin-project/modin | data-science | 6,500 | FEAT: HDK: Add support for datetime64 to int64 cast | Currently, the following code defaults to pandas:
```python
df = pd.DataFrame({"date": [1, 2, 3]}, dtype="datetime64[ns]")
print(df.astype("int64"))
``` | closed | 2023-08-23T15:11:32Z | 2023-08-24T13:59:31Z | https://github.com/modin-project/modin/issues/6500 | [
"new feature/request 💬",
"HDK"
] | AndreyPavlenko | 0 |
sammchardy/python-binance | api | 1,093 | APIError(code=-4006): Stop price less than zero | **Describe the bug**
I am currently developing a tradingbot which listens to webhooks and places future trades based on said webhook input. So far so good, I was already able to place the first trades. For the sake of simplicity, I started with basic market orders. In a next step, I want to include stop loss with my o... | closed | 2021-11-25T23:39:36Z | 2022-05-24T11:14:28Z | https://github.com/sammchardy/python-binance/issues/1093 | [] | anam-cara | 4 |
PaddlePaddle/ERNIE | nlp | 561 | 动态图版本的 ERNIE-GEN 链接失效 | 说明里面有提到
动态图版本的 ERNIE-GEN 代码更加简洁灵活,使用请参考 ERNIE-GEN Dygraph。
但对应链接点进去,并不是 ERNIE-GEN Dygraph的代码。
想请教, ERNIE-GEN Dygraph 的源代码开放吗?能否给出链接 | closed | 2020-09-13T08:59:32Z | 2020-11-20T11:49:39Z | https://github.com/PaddlePaddle/ERNIE/issues/561 | [
"wontfix"
] | herb711 | 4 |
pyeventsourcing/eventsourcing | sqlalchemy | 149 | exception that might not be expected | in https://github.com/johnbywater/eventsourcing/blob/2cfeff4f6bb05078f3f5110e23cba81772061ec8/eventsourcing/utils/cipher/aes.py#L71
this will raise an exception if nonce is empty (`[]`), which is possible since the length of the ciphertext is not checked. | closed | 2018-05-29T15:28:16Z | 2018-05-31T22:58:49Z | https://github.com/pyeventsourcing/eventsourcing/issues/149 | [] | mimoo | 2 |
eriklindernoren/ML-From-Scratch | machine-learning | 90 | Adam mhat and vhat updates | https://github.com/eriklindernoren/ML-From-Scratch/blob/a2806c6732eee8d27762edd6d864e0c179d8e9e8/mlfromscratch/deep_learning/optimizers.py#L125
While updating mhat and vhat in Adam, shouldn't we also consider the update number(t) for the weight decay?
m_hat = m/(1 - pow(beta,t)) | open | 2021-02-25T07:37:15Z | 2021-02-25T07:37:15Z | https://github.com/eriklindernoren/ML-From-Scratch/issues/90 | [] | shivamsharma01 | 0 |
slackapi/bolt-python | fastapi | 968 | Getting "Received an unexpected response for handshake" error when using socketmode | I am running socketMode and getting below error in Unix machine. The same code works in Windows
### Reproducible in:
```
WARNING:__main__:Received an unexpected response for handshake (status: 200, response: HTTP/1.1 200 OK
Cache-Control: no-cache
X-XSS-Protection: 1
Connection: close
Content-Type: text/html; ... | closed | 2023-10-11T01:40:34Z | 2023-11-27T00:11:19Z | https://github.com/slackapi/bolt-python/issues/968 | [
"question",
"auto-triage-stale"
] | aksgpt | 3 |
AirtestProject/Airtest | automation | 505 | 是否可以更改默认的adb路径 | 我想做成和gui结合的方式 打包 用户只需要打开exe文件就可以使用了 目前看到每次运行的时候是调用ide自带的adb 是否可以用指定的adb呢 怎么用呢? | open | 2019-08-23T03:01:40Z | 2023-08-24T05:55:43Z | https://github.com/AirtestProject/Airtest/issues/505 | [] | hujingpay | 7 |
aminalaee/sqladmin | fastapi | 89 | Errors with Postgres UUID primary key | ### Checklist
- [X] The bug is reproducible against the latest release or `master`.
- [X] There are no similar issues or pull requests to fix it yet.
### Describe the bug
The call `self.pk_column.type.python_type` fails when the pk is a Postgres UUID field with a `NotImplementedError`. Maybe this call can be replace... | closed | 2022-03-15T15:51:27Z | 2022-03-17T10:12:38Z | https://github.com/aminalaee/sqladmin/issues/89 | [
"bug"
] | tr11 | 3 |
tqdm/tqdm | pandas | 614 | support global config to override defaults | 1. look for e.g. "$HOME/.tqdm.config" to override defaults
2. alternatively/additionally use os.environ.get("TQDM_CONFIG", '')
helps with e.g. #370, #612, #619, #950, #1061, #1318
The second (os.environ) option would be great to fix https://github.com/tqdm/tqdm/issues/370#issuecomment-421809342 (have `tmux` alte... | closed | 2018-09-17T09:29:59Z | 2023-08-12T19:03:19Z | https://github.com/tqdm/tqdm/issues/614 | [
"p3-enhancement 🔥",
"to-merge ↰",
"c3-small 🕒"
] | casperdcl | 14 |
modin-project/modin | pandas | 7,349 | modin with ray engine hang | my code hang , can advice what i miss out?
modin 0.31.0
modin-spreadsheet 0.1.2
ray 2.32.0
```
import argparse
import modin.pandas as pd
import os
os.environ["MODIN_ENGINE"] = "ray"
os.environ["RAY_memory_monitor_refresh_ms"] = "0"
args = parser.parse_... | open | 2024-07-22T06:58:01Z | 2024-07-30T14:12:48Z | https://github.com/modin-project/modin/issues/7349 | [
"question ❓",
"Triage 🩹"
] | cometta | 5 |
PokemonGoF/PokemonGo-Bot | automation | 5,719 | ValueError: bad marshal data (unknown type code) | Hi,
I used this fantastic Pokemon Go Bot for a week and all was working very well, but today when I opened it, I found the following error :
Traceback (most recent call last):
File "pokecli.py", line 50, in <module>
from pokemongo_bot import PokemonGoBot, TreeConfigBuilder
File "/home/andrea/PokemonGo-Bot/pok... | closed | 2016-09-27T20:43:53Z | 2017-10-28T09:39:59Z | https://github.com/PokemonGoF/PokemonGo-Bot/issues/5719 | [] | barna92 | 4 |
biolab/orange3 | numpy | 6,207 | Data Sampler: Fixed proportion with 0% crash | <!--
Thanks for taking the time to report a bug!
If you're raising an issue about an add-on (i.e., installed via Options > Add-ons), raise an issue in the relevant add-on's issue tracker instead. See: https://github.com/biolab?q=orange3
To fix the bug, we need to be able to reproduce it. Please answer the following... | closed | 2022-11-18T09:20:07Z | 2022-12-01T13:03:32Z | https://github.com/biolab/orange3/issues/6207 | [
"bug"
] | VesnaT | 0 |
seleniumbase/SeleniumBase | web-scraping | 3,278 | Run CDP Mode in Github actions | I am trying to get a python script using Selenium Base CDP mode to work using github actions. I know i am supposed to be using XVFB, but not sure how to configure for this application.
I get an error when it tries to run the python code.
Please provide a simple working example of how to run in CDP mode using gi... | closed | 2024-11-21T06:02:13Z | 2024-11-21T13:06:23Z | https://github.com/seleniumbase/SeleniumBase/issues/3278 | [
"self-resolved",
"UC Mode / CDP Mode"
] | cohnhead66 | 1 |
dropbox/PyHive | sqlalchemy | 49 | can't read Hive NULLs to Decimal | There does not seem to be a check for None in HiveDecimal.process_result_value().
If there is a NULL in a Hive column expected as Decimal, it causes TypeError: Cannot convert None to Decimal
Shouldn't this return NaN instead?
| closed | 2016-05-26T14:28:14Z | 2017-05-13T08:21:40Z | https://github.com/dropbox/PyHive/issues/49 | [
"bug"
] | mschmill | 2 |
litestar-org/litestar | pydantic | 3,868 | Enhancement: avoid circular dependencies on litestar-htmx | ### Summary
Treat `htmx` as any other optional dependency.
### Basic Example
2.13.0 change of introducing a hard dependency on `litestar-htmx` (which has a hard, but unpinned dependency on `litestar`).
While `pip` can handle this, is troublesome for downstreams (such as https://github.com/conda-forge/litestar-fee... | closed | 2024-11-20T19:51:18Z | 2025-03-20T15:55:02Z | https://github.com/litestar-org/litestar/issues/3868 | [
"Enhancement"
] | bollwyvl | 8 |
dask/dask | scikit-learn | 11,006 | as of v2024.3.1, comparing a 1D dask.array.Array to a dask.dataframe.Series fails | **Describe the issue**:
Prior to `dask < 2024.3.0`, it was possible to directly combine a 1-dimensional Dask Array and a Dask Series with operators like `==`, `-`, and `+`, like this:
```python
(d_ser == d_arr).compute()
```
As of `v2024.3.1`, with the switch to `dask-expr`, that instead raises an exception ... | closed | 2024-03-17T03:47:01Z | 2024-03-18T13:54:21Z | https://github.com/dask/dask/issues/11006 | [
"bug",
"dask-expr"
] | jameslamb | 1 |
deepset-ai/haystack | nlp | 8,918 | Expanded Model Support in LLMEvaluator | It would be great to be able to natively use model providers other than OpenAI for the `LLMEvaluator` and related evaluators i.e. any that make use of LLMs.
Right now it's [fixed to the OpenAIGenerator](https://github.com/deepset-ai/haystack/blob/76753fd4c643158e76d0d3f443ff4fe98b0d2481/haystack/components/evaluators... | closed | 2025-02-25T09:27:19Z | 2025-03-21T08:53:03Z | https://github.com/deepset-ai/haystack/issues/8918 | [
"P2"
] | bglearning | 2 |
CorentinJ/Real-Time-Voice-Cloning | python | 904 | If np.isnan(grad_norm.cpu()) | AttributeError: 'float' object has no attribute 'cpu'
We're getting this issue before training. We commented it out (line 192 in synthesizer/train.py) and the training started happening. Would there be any consequences affecting our output for this? Thank you. | closed | 2021-11-24T08:52:38Z | 2021-12-28T12:33:21Z | https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/904 | [] | Fzr2k | 0 |
eriklindernoren/ML-From-Scratch | machine-learning | 8 | Demo.py AttributeError: no attribute 'solvers' | ```
`Traceback (most recent call last):
File "demo.py", line 23, in <module>
from support_vector_machine import SupportVectorMachine
File "/media/test/V2/lab/hack/ML-From-Scratch/supervised_learning/support_vector_machine.py", line 20, in <module>
cvxopt.solvers.options['show_progress'] = False
Attrib... | closed | 2017-03-02T12:11:28Z | 2017-03-02T18:28:36Z | https://github.com/eriklindernoren/ML-From-Scratch/issues/8 | [] | indrajithi | 3 |
hack4impact/flask-base | flask | 216 | Why is SSL disabled by default in production? | Hi,
I noticed that [SSL is by default disabled](https://github.com/hack4impact/flask-base/blob/f77172ab47d200f3e8294a9a52e041b6b4c59425/config.py#L103) in the ProductionConfig class in config.py. The line of code is:
```python
SSL_DISABLE = (os.environ.get('SSL_DISABLE', 'True') == 'True')
```
In case `SSL_D... | closed | 2021-07-01T12:23:11Z | 2021-08-31T04:46:31Z | https://github.com/hack4impact/flask-base/issues/216 | [] | oerd | 1 |
CorentinJ/Real-Time-Voice-Cloning | deep-learning | 1,233 | Error: metadata-generation-failed - related to scikit-learn? - python 3.11 | Arch Linux, kernel 6.4.2-arch1-1, python 3.11.3 (GCC 13.1.1), pip 23.1.2
Thank you for any help!
I followed these steps:
```
python -m venv .env
pip install ffmpeg
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
pip install -r requirements.txt
```
Below is the lo... | open | 2023-07-10T23:04:33Z | 2023-07-14T13:36:52Z | https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/1233 | [] | jessienab | 1 |
lanpa/tensorboardX | numpy | 503 | Question about add_Graph function's argument "input_to_model" | First, thanks for the contribution of this great tensorboardX.
Second, I try to visualize the network structure graph of a text classification--TextCNN in NLP. The beginning of the network is the embedding layer. The question is how do I define the argument "input_to_model" of "writer.add_graph()"? | closed | 2019-08-29T13:49:01Z | 2019-10-03T14:33:32Z | https://github.com/lanpa/tensorboardX/issues/503 | [] | zhanlaoban | 1 |
dnouri/nolearn | scikit-learn | 190 | Append git hash to version when installing from git | Given the infrequency of pypi releases many users install nolearn from git rather than from pypi. Because of this, the version string does not full capture the installed version (i.e. the git hash). I would suggest adding the commit hash to the version string when installing from git. This would be consistent with [wha... | closed | 2016-01-13T17:15:35Z | 2016-01-14T21:04:44Z | https://github.com/dnouri/nolearn/issues/190 | [] | cancan101 | 1 |
fastapi-users/fastapi-users | fastapi | 952 | Inconsistent fields identifying an OAuth account | ## Describe the bug
My main problem is that OAuth accounts is not being updated from the callback route, access tokens remaining the same.
This seems to stem from that the correct OAuth account is not consistently being identified in the same way.
## To Reproduce
Stepping trough the code from the callback ... | closed | 2022-03-24T12:35:40Z | 2022-04-21T09:06:31Z | https://github.com/fastapi-users/fastapi-users/issues/952 | [
"bug"
] | ricfri | 2 |
KevinMusgrave/pytorch-metric-learning | computer-vision | 549 | How to use ContrastiveLoss | Hi,
I have a Siamese NN architercture that holds a Bert Transformer for each of the siblings Sub-networks.
So I have sentences pairs and I want to encode each of the sentence in order to get their Embeddings.
def forward(set1, set2):
embeddings1 = BERT(set1) #here we have batch_size x 768 after avg pooli... | closed | 2022-11-10T18:13:38Z | 2024-03-06T04:03:10Z | https://github.com/KevinMusgrave/pytorch-metric-learning/issues/549 | [
"question"
] | icsd13152 | 27 |
aiogram/aiogram | asyncio | 543 | Incorrect work of ReplyKeyboardMarkup | Using aiogram.types.reply_keyboard.ReplyKeyboardMarkup messages in groups are sent as aiogram.types.force_reply.ForceReply | closed | 2021-03-25T19:49:35Z | 2023-08-25T12:37:49Z | https://github.com/aiogram/aiogram/issues/543 | [
"waiting for reply",
"stale",
"needs triage"
] | ghost | 2 |
drivendataorg/cookiecutter-data-science | data-science | 88 | Rename cookitcutter project | Is it possible to properly rename a project created by cookiecutter? That is, besides renaming the directory, it should also properly edit file contents (eg. README.md) replacing old project name with new name.
If there is not an automated-solution, is the below list of files inclusive of all files that need to be ... | closed | 2017-10-11T21:53:48Z | 2017-10-16T23:34:51Z | https://github.com/drivendataorg/cookiecutter-data-science/issues/88 | [] | ManavalanG | 2 |
modin-project/modin | pandas | 6,843 | Allow pass-through to underlying pandas implementation | We occasionally have the need to access underlying pandas DataFrame internals, i.e. attributes/functions prefixed with `_`, such as follows:
```python3
import pandas
import modin.pandas as pd
df = pd.DataFrame({"a": [1, 2], "b": [3, 4]})
dfp = pandas.DataFrame({"a": [1, 2], "b": [3, 4]})
df._info_axis_name
... | closed | 2023-12-29T13:12:24Z | 2024-01-09T09:33:02Z | https://github.com/modin-project/modin/issues/6843 | [
"new feature/request 💬"
] | idantene | 6 |
huggingface/pytorch-image-models | pytorch | 1,712 | [BUG] Training does not start with --amp | <img width="611" alt="image" src="https://user-images.githubusercontent.com/11882938/223652139-d6ddae91-554a-40f1-a4c2-fa0d3bc78616.png">
<img width="1928" alt="image" src="https://user-images.githubusercontent.com/11882938/223652403-c9e6fd92-8ccc-492d-82b0-4b725cab49db.png">
env:
CUDA Version 10.2.89
Ubuntu 18.04
... | closed | 2023-03-08T07:51:54Z | 2023-03-11T23:27:18Z | https://github.com/huggingface/pytorch-image-models/issues/1712 | [
"bug"
] | hacktmz | 0 |
plotly/dash | data-visualization | 2,286 | ERROR: Python 3.11.0 Installation Error | After I updated my Python to 3.11.0, I'm no more capable of installing Dash with pip.
First I got the following error:

Then I installed a newer version of C++ BuildTools and now I got another one;
... | closed | 2022-10-26T13:17:44Z | 2022-10-31T13:33:21Z | https://github.com/plotly/dash/issues/2286 | [] | dogukankaratas | 7 |
graphql-python/graphene-sqlalchemy | sqlalchemy | 71 | How to run raw SELECT for a Base field? | Hello,
I have a class extending `Base` that has one field that's quite complex to retrieve - I want to run a complex SELECT (one that has a JOIN on another table where ID is a string that has to be converted to int and is back JOIN-ed to the original table using that ID). It seems like its simply impossible to retri... | open | 2017-08-24T17:09:23Z | 2017-08-24T18:55:50Z | https://github.com/graphql-python/graphene-sqlalchemy/issues/71 | [] | rok-povsic | 1 |
mwaskom/seaborn | data-visualization | 3,443 | Feature request: Dual x/y Agg and errorbars in seaborn objects interface | Hi,
Is it possible to have Est, Range, Agg, etc. be used when both x and y are quantitative? Like, being able to plot a mean point and x and y errorbars for two continuous variables:
g = (so.Plot()
.add(so.Line(), data=mean_curves_l, x='x', y='y', color='trt')
.add(so.Dot(), so.Agg(), da... | open | 2023-08-23T19:12:09Z | 2024-03-08T08:49:25Z | https://github.com/mwaskom/seaborn/issues/3443 | [
"wishlist"
] | Auerilas | 3 |
pyro-ppl/numpyro | numpy | 1,015 | Initialization issues when using mask/latent variables | ### Description
I am not sure where the problem is coming from exactly, either from discrete latent variables or using `handlers.mask`. A relatively small script that reproduces it is below: I try to infer in a mixture model, where the mixture ID is determined by a Bernoulli variable. I use `mask` to decide between sa... | closed | 2021-04-20T18:41:34Z | 2021-05-05T17:23:02Z | https://github.com/pyro-ppl/numpyro/issues/1015 | [
"bug"
] | jatentaki | 3 |
AntonOsika/gpt-engineer | python | 589 | "No API key provided" - altough it is provided in the .env file | ## Expected Behavior
If the OpenAI API key is provided in the .env file, it should be recognized and used.
## Current Behavior
Runtime error message: openai.error.AuthenticationError: No API key provided.
### Steps to Reproduce
1. Set the key in the .env file
2. Run the app with gpt-engineer projects/my... | closed | 2023-08-14T09:40:11Z | 2023-08-17T09:25:49Z | https://github.com/AntonOsika/gpt-engineer/issues/589 | [] | LeRobert | 9 |
graphql-python/gql | graphql | 175 | Add quick example of syntax transport "auth" parameter expects (e.g when using GitHub personal access token)? | Might you provide documentation of that parameter?
Here is what I see, now.
https://github.com/graphql-python/gql/blob/d3f79e720037e0bd1f9f28e7a7964c58ff60f584/gql/transport/requests.py#L50-L51
What might that expect for, say, using a GitHub personal access token (which I've already created)?
tuple(\<user\>, \<... | closed | 2020-11-28T17:00:25Z | 2020-12-11T12:20:03Z | https://github.com/graphql-python/gql/issues/175 | [
"type: question or discussion"
] | bdklahn | 1 |
AUTOMATIC1111/stable-diffusion-webui | pytorch | 16,028 | [Feature Request]: Update Intel Extension for PyTorch to v2.1.30 | ### Is there an existing issue for this?
- [X] I have searched the existing issues and checked the recent builds/commits
### What would your feature do ?
Fix issues the current version has and increases performance.
### Proposed workflow
Just update from 2.0.10 to https://github.com/intel/intel-extension... | open | 2024-06-15T17:31:59Z | 2024-06-15T17:34:24Z | https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/16028 | [
"enhancement"
] | Pantonia4 | 0 |
aio-libs/aiomysql | sqlalchemy | 20 | Complare aiomysql.sa API with aiopg.sa and sync them | closed | 2015-06-26T19:42:42Z | 2015-11-26T22:29:55Z | https://github.com/aio-libs/aiomysql/issues/20 | [] | jettify | 0 | |
Gerapy/Gerapy | django | 162 | 'python3 -m pip install gerapy ' failed on Mac OS 10.15.6 | ERROR: Could not find a version that satisfies the requirement incremental>=16.10.1 (from versions: none)
ERROR: No matching distribution found for incremental>=16.10.1 | closed | 2020-08-07T14:26:11Z | 2020-08-10T12:51:10Z | https://github.com/Gerapy/Gerapy/issues/162 | [] | SeekPoint | 3 |
robotframework/robotframework | automation | 5,019 | v7 fails to find the tests when sub-suites are used | Given the following directory layout
```
tests/
suite1/
suite11/
test1.robot
test2.robot
suite2/
test3.robot
```
When running the following command line:
```
robot ... --suite suite1 tests/
```
robot successfully finds and executes `test1` and `test2`, ho... | closed | 2024-01-15T11:48:42Z | 2024-02-02T15:55:20Z | https://github.com/robotframework/robotframework/issues/5019 | [] | realtimeprojects | 1 |
A3M4/YouTube-Report | matplotlib | 24 | TypeError: 'encoding' is an invalid keyword argument for this function | Traceback (most recent call last):
File "report.py", line 8, in <module>
from parse import *
File "\~/YouTube-Report/parse.py", line 17, in <module>
class HTML:
File "\~/YouTube-Report/parse.py", line 19, in HTML
htmlWatch = open(watchHistory, 'r', encoding='utf-8').read()
TypeError: 'encoding'... | closed | 2019-12-22T19:55:01Z | 2019-12-22T21:06:22Z | https://github.com/A3M4/YouTube-Report/issues/24 | [] | aabacchus | 2 |
ultralytics/yolov5 | deep-learning | 12,844 | Raspi5 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
How do I even activate the gpu of my raspi5 in yolov5, it does only output 500ms in every... | closed | 2024-03-23T11:22:51Z | 2024-10-20T19:42:06Z | https://github.com/ultralytics/yolov5/issues/12844 | [
"question",
"Stale"
] | Jinairu | 3 |
albumentations-team/albumentations | deep-learning | 1,998 | [Performance] Benchmark scipy random vs np.ranom | Could happen that scipy has faster random Number Generator that could be important for array generations like GaussNoise.
Need to benchmark and update if it is the case. | closed | 2024-10-18T19:06:25Z | 2024-10-20T00:52:45Z | https://github.com/albumentations-team/albumentations/issues/1998 | [] | ternaus | 1 |
AirtestProject/Airtest | automation | 461 | 新版本airtest调用底层LogToHtml.report()生成测试报告时出错 | **(重要!问题分类)**
* 图像识别、设备控制相关问题 -> 报告生成问题
**描述问题bug**
你好,我之前曾在网上使用airtest生成聚合测试报告的myRunner启动器进行测试(具体代码可见https://blog.csdn.net/u010127154/article/details/83375659),这个启动器的核心是调用airtest.cli.runner中的run_script()运行脚本,然后用airtest.report.report中的LogToHtml.report()生成报告。
这个启动器在使用AirtestIDE V1.2.0时运行正常,但使用了AirtestIDE V1.2.1,或a... | closed | 2019-07-19T01:40:17Z | 2019-10-16T09:08:21Z | https://github.com/AirtestProject/Airtest/issues/461 | [
"bug",
"enhancement",
"to be released"
] | niuniuprice | 10 |
NVlabs/neuralangelo | computer-vision | 60 | Mesh extraction failure: data loader keeps quitting unexpectedly | Hello,
I am running the code on an A10 GPU. The training process for Neuralangelo works fine and I am trying to run the mesh extraction. However, I keep getting this:
(fyi I tried with resolution 1028 and 2048 but still got same error)
```
- Loading the model...
Done with loading the checkpoint.
Extracting surfac... | closed | 2023-08-22T17:31:56Z | 2023-08-22T19:22:59Z | https://github.com/NVlabs/neuralangelo/issues/60 | [] | smandava98 | 1 |
PrefectHQ/prefect | data-science | 17,576 | Add a possibility to guarantee local execution of flows when directly calling Python functions is not an option | ### Describe the current behavior
As far as I've understood, at the moment flows can be served or deployed locally, which is fine. The problem is that my monorepo has a bunch of separated Python projects, each of which is a different Prefect flow. The only way to test these flows locally is to rely on Prefect and use ... | open | 2025-03-24T09:58:43Z | 2025-03-24T16:38:38Z | https://github.com/PrefectHQ/prefect/issues/17576 | [
"enhancement"
] | NicholasPini | 4 |
gradio-app/gradio | deep-learning | 10,789 | Update the Audio playback state from the backend | - [x] I have searched to see if a similar issue already exists.
**Is your feature request related to a problem? Please describe.**
Would be great to update the playback state of the audio component (current timestamp, paused/playing, etc) by returning a `gr.Audio`.
This could be useful in transcription demos when ... | open | 2025-03-12T00:12:14Z | 2025-03-13T23:59:22Z | https://github.com/gradio-app/gradio/issues/10789 | [
"🎵 Audio"
] | freddyaboulton | 5 |
huggingface/transformers | tensorflow | 35,937 | Llama3.2: Allow batch to have | ### Feature request
Currently, llama3.2 requires either no images per batch or each example have at least one image. Is there some easy workaround (apart from feeding dummy images which is computationally expensive) to allow some examples to have images and other examples to have no images?
Current error message:
`"I... | open | 2025-01-28T13:56:56Z | 2025-01-28T14:05:34Z | https://github.com/huggingface/transformers/issues/35937 | [
"Feature request",
"VLM"
] | maximilianmordig | 1 |
opengeos/leafmap | jupyter | 581 | Add support for lonboard | <!-- Please search existing issues to avoid creating duplicates. -->
### Description
lonboard is a new Python package for visualizing large vector dataset. It uses pydeck as the mapping backend. Since leafmap already supports pydeck, it would be great to add support for lonboard as well.
https://developmentseed.org/... | closed | 2023-10-24T23:41:26Z | 2023-11-06T11:46:21Z | https://github.com/opengeos/leafmap/issues/581 | [
"Feature Request"
] | giswqs | 0 |
modin-project/modin | data-science | 6,982 | Dataset used in examples jupyter notebook is failing when jupyter notebook is run | The dataset used in the [notebook](https://github.com/modin-project/modin/blob/master/examples/jupyter/Pandas_Taxi.ipynb ) is named yellow_tripdata_2015-01.csv, which is hosted in
https://modin-datasets.intel.com/testing/yellow_tripdata_2015-01.csv this dataset is not the expected yellow_tripdata_2015-01.csv so the ... | closed | 2024-02-29T14:58:44Z | 2024-03-04T09:40:38Z | https://github.com/modin-project/modin/issues/6982 | [] | arunjose696 | 1 |
allenai/allennlp | nlp | 5,225 | Access the [CLS] token when using a pretrained_transformer_mismatched_embedder | Is there a simple way to access the `[CLS]` Token after encoding a token-sequence using a `pretrained_transformer_mismatched_embedder`?
Using a `bert_pooler` `seq2vec` encoder leads to an additional forward pass through the transformer. My Intuition is, that this should be avoided.
In [pretrained_transformer_mism... | closed | 2021-05-26T09:53:43Z | 2021-06-04T11:21:09Z | https://github.com/allenai/allennlp/issues/5225 | [
"Contributions welcome",
"question"
] | MSLars | 5 |
mwaskom/seaborn | data-visualization | 3,176 | pandas plotting backend? | Plotly has toplevel `.plot` function which allows for a [pandas plotting backend](https://github.com/pandas-dev/pandas/blob/d95bf9a04f10590fff41e75de94c321a8743af72/pandas/plotting/_core.py#L1848-L1861) to exist:
https://github.com/plotly/plotly.py/blob/4363c51448cda178463277ff3c12becf35dbd3b8/packages/python/plotly... | closed | 2022-12-05T08:43:50Z | 2022-12-06T21:32:08Z | https://github.com/mwaskom/seaborn/issues/3176 | [] | MarcoGorelli | 8 |
huggingface/datasets | pandas | 6,793 | Loading just one particular split is not possible for imagenet-1k | ### Describe the bug
I'd expect the following code to download just the validation split but instead I get all data on my disk (train, test and validation splits)
`
from datasets import load_dataset
dataset = load_dataset("imagenet-1k", split="validation", trust_remote_code=True)
`
Is it expected to work li... | open | 2024-04-08T14:39:14Z | 2024-09-12T16:24:48Z | https://github.com/huggingface/datasets/issues/6793 | [] | PaulPSta | 1 |
ray-project/ray | tensorflow | 51,321 | [core][autoscaler][v2] do not removing nodes for upcoming resource requests | ### What happened + What you expected to happen
The issues described in https://github.com/ray-project/ray/pull/51122 still happen with autoscaler v2.
### Versions / Dependencies
Ray 2.43.0
### Reproduction script
See https://github.com/ray-project/ray/pull/51122
### Issue Severity
None | open | 2025-03-12T23:16:06Z | 2025-03-21T01:39:41Z | https://github.com/ray-project/ray/issues/51321 | [
"bug",
"core-autoscaler"
] | rueian | 2 |
keras-team/keras | data-science | 20,322 | Loading weights into custom LSTM layer fails: Layer 'lstm_cell' expected 3 variables, but received 0 variables during loading. Expected: ['kernel', 'recurrent_kernel', 'bias'] | I'm using the official TF 2.17 container (**tensorflow/tensorflow:2.17.0-gpu-jupyter**) + **keras==3.5.0**.
The following code saves a model which contains a (dummy) custom LSTM layer, then inits a new copy of the model (with a vanilla LSTM) and tries to load the weights from the first model into the second.
Code... | open | 2024-10-04T13:11:38Z | 2024-10-07T15:33:19Z | https://github.com/keras-team/keras/issues/20322 | [
"type:Bug"
] | lbortolotti | 4 |
CatchTheTornado/text-extract-api | api | 50 | Docker installation | I want to try this, but im unable to follow the installation, a proper installation guide on docker installation would be very helpful | open | 2024-12-12T15:51:26Z | 2025-01-19T00:12:41Z | https://github.com/CatchTheTornado/text-extract-api/issues/50 | [] | drmetro09 | 6 |
python-gino/gino | sqlalchemy | 566 | How to set up quart and Gino | * GINO version: 0.8.3
* Python version: 3.7
* asyncpg version: 0.19.0
* aiocontextvars version: 0.2.2
* PostgreSQL version: 11
### Description
I want to use gino as an orm with quart, but i cant get it to connect together....
most of the time i get : Gino engine is not initialized. when i try to acess the db... | closed | 2019-10-11T15:57:19Z | 2019-10-19T06:09:14Z | https://github.com/python-gino/gino/issues/566 | [
"question"
] | horlahlekhon | 32 |
holoviz/panel | matplotlib | 7,014 | Panel tries to set a numeric param to an HTML string when data is updated in the background with a Panel app in a notebook | I ran into an unusual situation where I set up a simple Panel UI to run inside a Jupyter notebook, and then tried to update the data for the UI from a background thread. I observed that several updates would work properly, but at some point, Panel would try to update the value of a numeric param to be an HTML string (s... | closed | 2024-07-25T19:18:31Z | 2024-07-29T11:30:14Z | https://github.com/holoviz/panel/issues/7014 | [] | dennisjlee | 0 |
pywinauto/pywinauto | automation | 419 | ctypes.ArgumentError @ click_input | > Windows 10.0.15063 x64
> Python 3.6.2
> pywinauto 0.6.3
Setup (functional):
```python
hwnd = my_kivy_app.get_hwnd()
app = pywinauto.Application()
app.connect(handle=hwnd)
window = app.window(handle=hwnd).wrapper_object()
```
Exception @:
```python
window.click_input(button='left'... | closed | 2017-10-05T20:31:40Z | 2019-07-06T15:50:03Z | https://github.com/pywinauto/pywinauto/issues/419 | [
"bug"
] | Enteleform | 19 |
igorbenav/FastAPI-boilerplate | sqlalchemy | 125 | Duplicate JWT cookie descriptions | **Description**
In the section for JWT auth & cookies, both `Lax` and `Strict` descriptions in README are the same.
**Screenshots**
 | closed | 2024-03-14T08:25:19Z | 2024-04-14T22:57:46Z | https://github.com/igorbenav/FastAPI-boilerplate/issues/125 | [
"documentation",
"good first issue"
] | CHE1RON | 0 |
mars-project/mars | numpy | 3,216 | [BUG] Ray task backend no progress | <!--
Thank you for your contribution!
Please review https://github.com/mars-project/mars/blob/master/CONTRIBUTING.rst before opening an issue.
-->
**Describe the bug**
Ray task mode doesn't update progress until whole task finished:

Win10 Pro 19044.1348
#### Versions of xlwings, Excel and Python (e.g. 0.11.8, Office 365, Python 3.7)
xlwings 0.25.0
Excel 365
Python 3.7
#### Describe your issue (incl. Traceback!)
<Sheet [Relay.xlsm]sm_test>
sfasdf
pythoncom error: Python error invoking COM... | closed | 2021-12-14T20:26:38Z | 2021-12-15T08:15:54Z | https://github.com/xlwings/xlwings/issues/1786 | [] | ekwf | 1 |
Farama-Foundation/Gymnasium | api | 464 | [Question] Displaying contact forces and contact points in video recordings of a MuJoCo environment using RecordVideo | ### Question
Inside the MuJoCo simulation GUI (simulate.exe), I can click buttons to display contract forces and contact points. I would like to be able to display such information in the videos generated by `gymnasium.wrappers.RecordVideo`. Can this be done from the `MujocoEnv` class? Otherwise, can you please sugges... | closed | 2023-04-24T20:00:47Z | 2023-04-29T12:12:54Z | https://github.com/Farama-Foundation/Gymnasium/issues/464 | [
"question"
] | Omer1Yuval1 | 6 |
HIT-SCIR/ltp | nlp | 276 | 可否提供把增量模型合并到基础模型的工具或接口? | 情景:我有基础模型,有增量语料库A,训练出增量模型A,现在又多了增量语料库B,希望在基础模型和增量模型A的基础上训练。那么,如果可以把增量模型A和基础模型合并成一个大模型,就可以继续下去了。以后还可以再把B合并进去,训练C。 | closed | 2017-12-22T07:20:40Z | 2020-06-25T11:20:39Z | https://github.com/HIT-SCIR/ltp/issues/276 | [] | BoatingZeng | 1 |
dagster-io/dagster | data-science | 27,748 | Cannot terminate completely queued job backfills since 1.9.11 | ### What's the issue?
After upgrading from 1.9.10 to 1.9.11, I cannot cancel completely submitted backfills.
I believe the issue is connected to renaming buttons:
Cancel backfill submission → Cancel Backfill ✅ Triggers call to graphql?op=CancelBackfill
Terminate unfinished runs → Cancel Backfill ❌ Doesn’t trigger cal... | open | 2025-02-11T13:09:53Z | 2025-03-03T14:29:50Z | https://github.com/dagster-io/dagster/issues/27748 | [
"type: bug",
"area: backfill",
"area: UI/UX"
] | HynekBlaha | 8 |
Zeyi-Lin/HivisionIDPhotos | fastapi | 207 | 点开始制作,docker自动停止 | 版本最新版
docker安装
使用示例马保国可以生成,换成自己上传的,容器直接停止
日志: 2024-11-13 13:01:12.059647738 [E:onnxruntime:Default, env.cc:234 ThreadMain] pthread_setaffinity_np failed for thread: 18, index: 1, mask: {2, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set. | open | 2024-11-13T13:10:11Z | 2024-12-02T00:52:25Z | https://github.com/Zeyi-Lin/HivisionIDPhotos/issues/207 | [] | fjcy233 | 3 |
mljar/mljar-supervised | scikit-learn | 457 | 'float' object has no attribute 'lower' | ```py
**'float' object has no attribute 'lower'**
Traceback (most recent call last):
File "C:\Users\lucas.ssousa\AppData\Roaming\Python\Python38\site-packages\supervised\base_automl.py", line 1078, in _fit
trained = self.train_model(params)
File "C:\Users\lucas.ssousa\AppData\Roaming\Python\Python38\site... | closed | 2021-08-16T13:29:41Z | 2021-09-02T11:34:47Z | https://github.com/mljar/mljar-supervised/issues/457 | [] | Lssousadc | 2 |
unit8co/darts | data-science | 2,080 | [BUG] I can't run my darts model with multi-thread | **Context**
I have a one-time series model to predict.
But I have 10 covariates that I test all possible combinations computationally exhaustively, resulting in 1024 models for this case. Running 1024 models is quite slow. Therefore, we decided to run it in parallel, in a multi-thread fashion (we had this code in `s... | closed | 2023-11-21T15:03:46Z | 2024-01-21T15:21:21Z | https://github.com/unit8co/darts/issues/2080 | [
"bug",
"triage"
] | guilhermeparreira | 4 |
kornia/kornia | computer-vision | 2,260 | Add output_size Importance to Augmentation Base Classes in Docs | ## 📚 Documentation
The current documentation provides a general guideline on which class to use for implementing a custom augmentation.
An important aspect would be the explanation of the ``output_size`` in params that needs to be overwritten when changing the output size in the augmentation.
Without any remark i... | open | 2023-03-07T12:51:52Z | 2023-04-10T23:30:50Z | https://github.com/kornia/kornia/issues/2260 | [
"docs :books:"
] | sebimarkgraf | 1 |
miguelgrinberg/Flask-Migrate | flask | 95 | application structure ?? | Hi,
I am reading your post at http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-iv-database and I am wondering how I can use this extension with the above post. My application structure is:
~/LargeApp
|-- run.py # Starting the application
|-- config.py
|__ /env # Virtual Environ... | closed | 2016-01-06T22:00:51Z | 2019-01-13T22:20:41Z | https://github.com/miguelgrinberg/Flask-Migrate/issues/95 | [
"question",
"auto-closed"
] | anselal | 3 |
Anjok07/ultimatevocalremovergui | pytorch | 917 | Please help! Error with Ensemble processing | Hi there!
I'm very new to this, and followed recommendations in the thread to try and process but came to this error.
Any help is appreciated!
Thanks,
Dolan | open | 2023-10-20T21:12:42Z | 2023-10-22T19:37:52Z | https://github.com/Anjok07/ultimatevocalremovergui/issues/917 | [] | Taxmonkey | 1 |
CorentinJ/Real-Time-Voice-Cloning | pytorch | 997 | I get that error while trying to install. What to do? | C:\Users\PC\Desktop\Real-Time-Voice-Cloning-master>pip install -r requirements.txt
Collecting inflect==5.3.0
Using cached inflect-5.3.0-py3-none-any.whl (32 kB)
Collecting librosa==0.8.1
Using cached librosa-0.8.1-py3-none-any.whl (203 kB)
Collecting matplotlib==3.5.1
Using cached matplotlib-3.5.1-cp37-cp37... | closed | 2022-01-28T22:02:58Z | 2022-01-29T12:01:14Z | https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/997 | [] | pofdzm | 1 |
521xueweihan/HelloGitHub | python | 2,867 | 自荐项目:Awesome-Iwb 全网最全的教学一体机/数字白板 教学优化软件收集列表 | ## 推荐项目
- 项目地址:https://github.com/Awesome-Iwb/Awesome-Iwb
- 类别:Markdown
- 项目标题:Awesome-Iwb - 适用于希沃等教学一体机的最全软件收集列表
- 项目描述:适用于希沃、鸿合、京东方、东方中原等品牌的教学一体机、教学触摸屏和红外教学白板的 Windows 平台实用软件推荐合集。为广大电教倾情撰写。应该是全 Github 收集的最全的一个,其中很多开发者都是在校就读的学生,因为班上一体机自带的软件并不好用,于是很多有志青年自己开发了一些比较好用的教学辅助类软件,这个项目就是专门用来收集这些软件和项目,方便让大家了解这个小众领域。... | open | 2024-12-15T18:00:18Z | 2025-01-26T04:03:41Z | https://github.com/521xueweihan/HelloGitHub/issues/2867 | [] | aloisp28 | 4 |
databricks/koalas | pandas | 1,516 | subset parameter in DataFrame.replace | ```python
>>> kdf.replace('Mjolnir', 'Stormbuster', subset=('weapon',))
name weapon
0.342778 Ironman Mark-45
0.087444 Captain America Shield
0.179212 Thor Stormbuster
0.522174 Hulk Smash
>>> pdf.replace('Mjolnir', 'Stormbuster', su... | closed | 2020-05-19T04:09:27Z | 2020-06-11T19:23:47Z | https://github.com/databricks/koalas/issues/1516 | [
"enhancement"
] | beobest2 | 4 |
pallets-eco/flask-wtf | flask | 376 | Can the expiration time of csrf_token be extended | closed | 2019-09-19T02:22:30Z | 2021-05-26T00:55:00Z | https://github.com/pallets-eco/flask-wtf/issues/376 | [] | LIMr1209 | 2 | |
gradio-app/gradio | deep-learning | 10,413 | Incorrect documentation for gradio.Chatbot | ### Describe the bug
Python syntax error in https://www.gradio.app/docs/gradio/chatbot
For example `SyntaxError: ':' expected after dictionary key` in [Message format](https://www.gradio.app/docs/gradio/chatbot#message-format):
```py3
import gradio as gr
history = [
{"role": "assistant", content="I am happy to pr... | closed | 2025-01-23T07:04:57Z | 2025-01-23T22:01:19Z | https://github.com/gradio-app/gradio/issues/10413 | [
"bug",
"docs/website"
] | NewJerseyStyle | 2 |
huggingface/datasets | computer-vision | 6,842 | Datasets with files with colon : in filenames cannot be used on Windows | ### Describe the bug
Datasets (such as https://huggingface.co/datasets/MLCommons/peoples_speech) cannot be used on Windows due to the fact that windows does not allow colons ":" in filenames. These should be converted into alternative strings.
### Steps to reproduce the bug
1. Attempt to run load_dataset on MLCo... | open | 2024-04-26T00:14:16Z | 2024-04-26T00:14:16Z | https://github.com/huggingface/datasets/issues/6842 | [] | jacobjennings | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.