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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
jumpserver/jumpserver | django | 14,946 | [Bug] | ### Product Version
ssh 秘钥连接windows报错
### Product Edition
- [x] Community Edition
- [ ] Enterprise Edition
- [ ] Enterprise Trial Edition
### Installation Method
- [x] Online Installation (One-click command installation)
- [ ] Offline Package Installation
- [ ] All-in-One
- [ ] 1Panel
- [ ] Kubernetes
- [ ] Source... | closed | 2025-02-28T02:42:29Z | 2025-02-28T02:50:36Z | https://github.com/jumpserver/jumpserver/issues/14946 | [
"🐛 Bug"
] | wellsyu | 1 |
PeterL1n/BackgroundMattingV2 | computer-vision | 87 | training question | Hello! I trained the code 'train_refine.py' without any revise using my own dataset to get the pth file.However,I find the network structure I have got is different from the pretrained model you have provide:pytorch_mobilenetv2.The following image1 is your pretrained model structure and the second one image2 is mine
!... | closed | 2021-04-15T07:03:38Z | 2021-04-22T15:21:06Z | https://github.com/PeterL1n/BackgroundMattingV2/issues/87 | [] | PROMISELVKR | 4 |
ageitgey/face_recognition | python | 1,531 | 【BUG】Video example code is not working... | * face_recognition version: 1.3.0
* Python version: 3.9.16
* Operating System: Rocky Linux 9.2 (Blue Onyx) x86_64
### Description
The example `facerec_from_video_file.py` is not running.
Here's the the terminal output...
```bash
$ /bin/python /home/ander/face_recognition/examples/facerec_from_video_file.... | open | 2023-09-03T04:51:53Z | 2023-12-09T11:58:05Z | https://github.com/ageitgey/face_recognition/issues/1531 | [] | andersprenger | 2 |
glumpy/glumpy | numpy | 34 | WebGL backend | How complicated it would be to implement a WebGL backend? Assuming we have a `gloo.js` that implements gloo in JavaScript, we'd at least need to export an entire window to a structure with the list of programs, GLSL, variables, data, etc.
Alternatively, we could have another gloo implementation which creates such stru... | closed | 2015-03-20T12:25:57Z | 2015-08-18T19:36:35Z | https://github.com/glumpy/glumpy/issues/34 | [] | rossant | 2 |
tortoise/tortoise-orm | asyncio | 1,332 | Actual query results and Tortoise results inconsistent with filtering using custom SQL annotations | **Describe the bug**
The following demo model outputs SQL that returns multiple results. However, when actually executing the query, Tortoise for unknown reasons only returns one result.
Here is the model:
```python
class Demo(Model):
active = fields.BooleanField(default=True)
user_id = fields.... | closed | 2023-02-02T13:48:40Z | 2023-02-02T14:05:47Z | https://github.com/tortoise/tortoise-orm/issues/1332 | [] | ghost | 2 |
pyg-team/pytorch_geometric | deep-learning | 9,181 | torch::jit::load error | ### 🐛 Describe the bug
I have done script my model in python, and want load it in c++. It can be confirmed that torch_scatcher and torch_sparse have been successfully compiled.
I can run the following example and get the correct result.
````
#include <torch/script.h>
#include <torch/torch.h>
#include <pytorch_s... | closed | 2024-04-10T10:32:36Z | 2025-03-17T02:00:49Z | https://github.com/pyg-team/pytorch_geometric/issues/9181 | [
"bug"
] | qiuqiouba | 4 |
qubvel-org/segmentation_models.pytorch | computer-vision | 695 | MixVisionTransformer in combination with PAN fails with "encoder does not support dilated mode" | ```
import segmentation_models_pytorch as smp
smp.PAN(encoder_name="mit_b0")
```
raises the exception:
```
ValueError: MixVisionTransformer encoder does not support dilated mode
```
Since the default PAN uses dilation, this config is uncompatible atm?
If we use a configuration of PAN that does not use di... | closed | 2022-12-13T09:19:30Z | 2023-02-20T02:05:23Z | https://github.com/qubvel-org/segmentation_models.pytorch/issues/695 | [
"Stale"
] | Daniel451 | 4 |
pydata/xarray | numpy | 9,137 | open_dict_of_datasets function to open any file containing nested groups | ### Is your feature request related to a problem?
In https://github.com/pydata/xarray/issues/9077#issuecomment-2161622347 I suggested the idea of a function which could open any netCDF file with groups as a dictionary mapping group path strings to `xr.Dataset` objects.
The motivation is as follows:
- People want... | closed | 2024-06-19T17:08:16Z | 2024-09-07T23:34:22Z | https://github.com/pydata/xarray/issues/9137 | [
"topic-backends",
"enhancement",
"topic-DataTree",
"io"
] | TomNicholas | 7 |
apify/crawlee-python | automation | 1,106 | In certain situations, it is impossible to enter the method under @crawler.router.default_handler, and the execution ends directly. | code :
```py
async def crawling(urls: List, output_path: str, unique_filter:set) -> None:
# initialize crawler configuration
concurrency_settings = ConcurrencySettings(
max_concurrency=50,
max_tasks_per_minute=200,
)
session_pool = SessionPool(max_pool_size=100)
crawler = BeautifulSo... | open | 2025-03-19T07:17:18Z | 2025-03-24T11:21:11Z | https://github.com/apify/crawlee-python/issues/1106 | [
"t-tooling"
] | CodeDan-CN | 5 |
tflearn/tflearn | data-science | 882 | About loss in Tensorboard | Hello everyone,
I run the example of Multi-layer perceptron, and visualize the loss in Tensorboard.
Does "Loss" refer to the training loss on each batch? And "Loss/Validation" refers to the loss on validation set? What does "Loss_var_loss" refer to?
 to update the identifies of user | ## Description of the problem, including code/CLI snippet
I use get user and change the identifies of it,but after use user.save(),it not changes.
when i update user's name,it works. but if i update identifies, it not work.
The identifies correct ,i can update it by hand.
## Expected Behavior
after user.save() u... | closed | 2023-05-06T11:38:06Z | 2023-05-28T09:16:02Z | https://github.com/python-gitlab/python-gitlab/issues/2564 | [] | queyijiangnan | 2 |
wkentaro/labelme | computer-vision | 1,212 | labelme2coco.py crash when just contines __ignore__ label | ### Provide environment information
(DET2) D:\FPCs>python --version
Python 3.9.13
(DET2) D:\FPCs>pip list labelme
Package Version Editable project location
----------------------- ------------------ --------------------------
labelme 5.0.5
### What OS are you us... | closed | 2022-11-06T04:44:18Z | 2024-04-08T00:58:34Z | https://github.com/wkentaro/labelme/issues/1212 | [
"issue::bug"
] | withkun | 4 |
ymcui/Chinese-LLaMA-Alpaca-2 | nlp | 57 | 请问llama2-7b的显存要求是多少 | ### 提交前必须检查以下项目
- [X] 请确保使用的是仓库最新代码(git pull),一些问题已被解决和修复。
- [X] 我已阅读[项目文档](https://github.com/ymcui/Chinese-LLaMA-Alpaca-2/wiki)和[FAQ章节](https://github.com/ymcui/Chinese-LLaMA-Alpaca-2/wiki/常见问题)并且已在Issue中对问题进行了搜索,没有找到相似问题和解决方案
- [X] 第三方插件问题:例如[llama.cpp](https://github.com/ggerganov/llama.cpp)、[text-generation-w... | closed | 2023-08-03T03:35:33Z | 2023-08-03T06:03:05Z | https://github.com/ymcui/Chinese-LLaMA-Alpaca-2/issues/57 | [] | AlexasXu | 2 |
jupyter/nbviewer | jupyter | 895 | The error was: Failed to connect to localhost port 8988: Connection refused | Hi! Thanks for using Jupyter Notebook Viewer (nbviewer) and taking the time to report a bug you've encountered. Please use the template below to tell us about the problem.
If you've found a bug in a different Jupyter project (e.g., [Jupyter Notebook](http://github.com/jupyter/notebook), [JupyterLab](http://github.co... | closed | 2020-02-04T20:31:55Z | 2020-03-04T02:34:02Z | https://github.com/jupyter/nbviewer/issues/895 | [] | Mespn520 | 5 |
lmcgartland/graphene-file-upload | graphql | 57 | Option for starting development server | closed | 2021-03-03T18:54:34Z | 2021-03-03T18:54:58Z | https://github.com/lmcgartland/graphene-file-upload/issues/57 | [] | Waidhoferj | 0 | |
pydantic/pydantic | pydantic | 11,157 | make typecheck failing | ### Initial Checks
- [X] I confirm that I'm using Pydantic V2
### Description
I'm trying to commit a change and the pre-commit hook make typecheck is failing on various bits of v1 code. I reverted my changes and ran the check - same result, so not sure how others are managing to commit!
There are 144 errors, so I... | closed | 2024-12-20T00:08:35Z | 2024-12-20T09:18:30Z | https://github.com/pydantic/pydantic/issues/11157 | [
"bug V2",
"pending"
] | nickyoung-github | 1 |
google-research/bert | nlp | 562 | Extract features of a word given a text | I am interested in getting the features of only one word in a text, but the current implementation gives the features of all the words in the text. I guess this makes the computations much slower, so I would like to simplify the implementation. Is this possible?
Thanks!!! | open | 2019-04-08T13:25:17Z | 2019-04-09T11:25:27Z | https://github.com/google-research/bert/issues/562 | [] | RodSernaPerez | 1 |
zihangdai/xlnet | tensorflow | 199 | How to use xlnet to guess a word in a sentence | I am wonder how to use the xlnet to guess a word in a sentence. | open | 2019-08-01T03:34:30Z | 2019-08-01T03:34:30Z | https://github.com/zihangdai/xlnet/issues/199 | [] | syu0000 | 0 |
jonra1993/fastapi-alembic-sqlmodel-async | sqlalchemy | 15 | IUserUpdate should have id of UUID | https://github.com/jonra1993/fastapi-alembic-sqlmodel-async/blob/a11c40077ec0bad51508974704d3343d187557a1/fastapi-alembic-sqlmodel-async/app/schemas/user_schema.py : 37 | closed | 2022-10-08T19:10:38Z | 2022-10-09T16:10:17Z | https://github.com/jonra1993/fastapi-alembic-sqlmodel-async/issues/15 | [] | bazylhorsey | 1 |
seleniumbase/SeleniumBase | pytest | 2,497 | Update script to download chromedriver from the newer location (on version 121+) | ## Update script to download chromedriver from the newer location (on version 121+)
The Chromedriver team is starting to switch `chromedriver` storage from `https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/` to `https://storage.googleapis.com/chrome-for-testing-public/`.
This caused issues here: https:... | closed | 2024-02-15T16:30:20Z | 2024-02-16T02:45:48Z | https://github.com/seleniumbase/SeleniumBase/issues/2497 | [
"requirements"
] | mdmintz | 1 |
koxudaxi/datamodel-code-generator | fastapi | 1,421 | Ability to add custom imports | **Is your feature request related to a problem? Please describe.**
Can't customize my template to add new imports
**Describe the solution you'd like**
New argument `additional_imports` in `generate` function which adds additional imports to final rendered template
**Describe alternatives you've considered**
-
... | closed | 2023-07-12T07:32:25Z | 2023-07-14T07:45:49Z | https://github.com/koxudaxi/datamodel-code-generator/issues/1421 | [] | skonik | 0 |
ultralytics/ultralytics | machine-learning | 19,724 | The prediction results of the segmentation model are strange | ### 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
## Background
To obtain contour data of a specific object, I created a seg... | closed | 2025-03-16T12:13:09Z | 2025-03-17T09:32:27Z | https://github.com/ultralytics/ultralytics/issues/19724 | [
"question",
"segment"
] | family36 | 5 |
LibrePhotos/librephotos | django | 1,531 | Add option to scrub all region tags in Exif information when using "delete face" | **Describe the enhancement you'd like**
I have some pictures that have (wrong) face areas defined from a previous version of digikam - would it be possible to scrub the EXIF info from all face info when using "delete face"? It seems right now only librephoto tags are scrubbed
After using the "delete face" I still have ... | open | 2025-03-04T15:28:15Z | 2025-03-05T05:19:41Z | https://github.com/LibrePhotos/librephotos/issues/1531 | [
"enhancement"
] | ChrisFab16 | 1 |
sherlock-project/sherlock | python | 1,665 | Error while trying to even install numpy | error: subprocess-exited-with-error
× Building wheel for numpy (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> [271 lines of output]
Running from numpy source directory. setup.py:67: DeprecationWarning:
`numpy.distutils` is deprecated since NumPy 1.23.0, as a resul... | closed | 2023-01-17T03:37:11Z | 2023-01-25T12:16:11Z | https://github.com/sherlock-project/sherlock/issues/1665 | [] | Onionbread35 | 2 |
pywinauto/pywinauto | automation | 668 | Implement WindowWrapper for UIA backend with move_window() method | Found this while reading this StackOverflow question: https://stackoverflow.com/q/54475685/3648361 | closed | 2019-02-01T21:18:14Z | 2020-05-23T21:46:54Z | https://github.com/pywinauto/pywinauto/issues/668 | [
"enhancement",
"Priority-Critical",
"UIA-related",
"good first issue",
"refactoring_critical"
] | vasily-v-ryabov | 1 |
littlecodersh/ItChat | api | 41 | msg['ActualNickName']乱码 | 昨天还好好的,今天就变成了乱码,找不到原因所在,来求助
| closed | 2016-07-20T02:43:09Z | 2016-07-20T11:00:16Z | https://github.com/littlecodersh/ItChat/issues/41 | [
"bug"
] | xzjs | 5 |
marcomusy/vedo | numpy | 879 | Cutter tools create leftovers in plotter | It seems some (all?) cutter tools create some leftovers in the plotters that get picked up by subsequent cutting operations | open | 2023-06-08T14:58:40Z | 2023-08-29T10:32:31Z | https://github.com/marcomusy/vedo/issues/879 | [
"bug"
] | jo-mueller | 0 |
AutoViML/AutoViz | scikit-learn | 80 | Filename is an empty string or file not able to be loaded | I get this error with even the simplest csv input file
```
a,b
1,2
3,4
```
providing full path to the filename, using and specifying different separators... nothing seems to work. | closed | 2023-01-17T12:04:02Z | 2023-01-23T23:08:06Z | https://github.com/AutoViML/AutoViz/issues/80 | [] | delocalizer | 2 |
kizniche/Mycodo | automation | 946 | Cannot save MQTT input configuration changes | I am using Mycodo 8.9.0. Whenever I add an MQTT input, click the (+) sign and then click "Save" - no changes made at all - I receive the following error :
Error: Modify Input: '<' not supported between instances of 'NoneType' and 'float'
The error happens regardless of which fields I change or attempt to modify (... | closed | 2021-03-10T16:31:38Z | 2021-03-16T02:41:56Z | https://github.com/kizniche/Mycodo/issues/946 | [
"bug",
"Fixed and Committed"
] | danielfppps | 5 |
qubvel-org/segmentation_models.pytorch | computer-vision | 997 | Mention NVIDIA non-commercial in top LICENSE section | Could you mention NVIDIA license, which is written in encoders/mix_transformer.py, in the top LICENSE section?
This can cause a problem for commercial use including Kaggle, in which the competition rule often requires commercial use. I misunderstood that segFormer had become completely MIT.
For example, mmcv has ... | closed | 2024-12-05T00:39:25Z | 2024-12-15T00:37:46Z | https://github.com/qubvel-org/segmentation_models.pytorch/issues/997 | [] | junkoda | 3 |
python-restx/flask-restx | api | 196 | Swagger's preauthorize_apikey feature | Currently there is no "flask_restx" way to use the Swagger ``preauthorize_apikey`` feature. (You can always patch the javascript returned by apidoc using the Api.documentation decorator, but it seems to be the worst way to do it)
We needed this feature, in order to display Swagger documentation allready "populated" ... | open | 2020-08-13T13:07:10Z | 2020-08-13T13:07:10Z | https://github.com/python-restx/flask-restx/issues/196 | [
"enhancement"
] | yweber | 0 |
TheKevJames/coveralls-python | pytest | 41 | Missing 'url' key raises uncaught KeyError on coveralls.io 503 response | Could not reproduce with `coveralls debug` as coveralls.io had evidently fixed its server-side error by this time. Traceback from original run below:
```
Submitting coverage to coveralls.io...
Coverage submitted!
Failure to submit data. Response [503]: <!DOCTYPE html>
<html>
<head>
<style type="text/css... | closed | 2014-02-13T19:26:56Z | 2014-05-05T17:47:00Z | https://github.com/TheKevJames/coveralls-python/issues/41 | [] | isms | 7 |
allure-framework/allure-python | pytest | 236 | Change folder strucutre from `src` to module name | [//]: # (
. Note: for support questions, please use Stackoverflow or Gitter**.
. This repository's issues are reserved for feature requests and bug reports.
.
. In case of any problems with Allure Jenkins plugin** please use the following repository
. to create an issue: https://github.com/jenkinsci/allure-plugi... | closed | 2018-05-25T10:14:35Z | 2022-12-05T17:32:14Z | https://github.com/allure-framework/allure-python/issues/236 | [] | Sup3rGeo | 8 |
mljar/mljar-supervised | scikit-learn | 650 | Invalid comparison between dtype=timedelta64[ns] and float64 | Traceback (most recent call last):
File "/opt/conda/lib/python3.11/site-packages/pandas/core/arrays/datetimelike.py", line 935, in _cmp_method
other = self._validate_comparison_value(other)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/conda/lib/python3.11/site-packages/pandas/core/arrays/da... | open | 2023-09-12T15:11:19Z | 2023-09-12T15:13:49Z | https://github.com/mljar/mljar-supervised/issues/650 | [] | adrienpacifico | 1 |
microsoft/qlib | machine-learning | 1,428 | Anyone successfully run a US benchmark yet? There seem to be a bug with US version, instrument variable got evaluated to NAN. | ## 🐛 Bug Description
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
1. take any yaml file under examples/benchmark. I'll take workflow_config_lightgbm_Alpha158.yaml for example.
2. Change all fields from china version to US version:
2.1 chan... | open | 2023-01-28T10:01:03Z | 2023-07-22T11:45:39Z | https://github.com/microsoft/qlib/issues/1428 | [
"bug"
] | tianlongwang | 4 |
coqui-ai/TTS | pytorch | 3,731 | [Feature request] GPU Mac Silicon Chip | I would like to use the GPU from my Mac Silicon Chip. :) | closed | 2024-05-11T04:27:35Z | 2024-07-19T05:21:06Z | https://github.com/coqui-ai/TTS/issues/3731 | [
"wontfix",
"feature request"
] | kabelklaus | 3 |
Johnserf-Seed/TikTokDownload | api | 247 | 下载的时候会直接把cpu拉满 | 下载的时候会直接把cpu拉满,可以有个数值输入框控制一下cpu的占用嘛 | closed | 2022-11-11T15:44:25Z | 2022-11-27T11:46:45Z | https://github.com/Johnserf-Seed/TikTokDownload/issues/247 | [
"额外求助(help wanted)",
"无效(invalid)"
] | HelloZhou3301 | 1 |
aminalaee/sqladmin | asyncio | 700 | Add messages support | ### Checklist
- [X] There are no similar issues or pull requests for this yet.
### Is your feature related to a problem? Please describe.
I would like to display feedback to users after a form submission, not just error messages. This would allow for warnings and success messages.
### Describe the solution ... | open | 2024-01-19T23:25:17Z | 2024-05-15T20:07:55Z | https://github.com/aminalaee/sqladmin/issues/700 | [] | jonocodes | 11 |
sergree/matchering | numpy | 32 | [Discussion] Desktop Application 🖥 | I've been looking into different technologies for making Rust desktop applications because that's personally something I want to get into. I think that [Flutter](https://flutter.dev) is one of the most promising GUI frameworks around right now, and I just yesterday discovered [nativeshell](https://github.com/nativeshel... | closed | 2021-06-08T16:23:36Z | 2024-10-23T19:28:22Z | https://github.com/sergree/matchering/issues/32 | [
"enhancement"
] | zicklag | 3 |
waditu/tushare | pandas | 1,538 | 请求接入公募基金净值数据接口(fund_nav) | 你好管理员,
新近注册Tushare,承蒙照顾,以博士在读身份获得了千余的初始积分。但还是厚颜地想再请求一下。
我在做一些个人投资,想提取场外公募基金的净值数据,稍微做一些均线分析。说来惭愧,我也是2020年底入市的这批韭菜之一。单就这个接口,需要2000积分,想问问有没可能再补个500积分。或者有没有别的解决办法。
ID: 435618. | open | 2021-04-11T14:53:07Z | 2021-05-20T11:08:53Z | https://github.com/waditu/tushare/issues/1538 | [] | LiuGuanTing | 1 |
opengeos/leafmap | plotly | 927 | Problem with save_draw_features | <!-- Please search existing issues to avoid creating duplicates. -->
### Environment Information
- leafmap version: 0.38.5
- Python version: 3.10.13
- Operating System: Ubuntu 22.04
### Description
```
{
"name": "ValueError",
"message": "Assigning CRS to a GeoDataFrame without a geometry column i... | closed | 2024-10-21T15:43:45Z | 2024-10-21T19:58:41Z | https://github.com/opengeos/leafmap/issues/927 | [
"bug"
] | automataIA | 1 |
deepset-ai/haystack | pytorch | 8,089 | Mermaid Crashes If trying to draw a large pipeline | Thanks in advance for your help :)
**Describe the bug**
I was building a huge pipeline, 30 components and 35 connections, and for debugging proposes I wanted to display the diagram, but both .draw() and .show() methods failed. It still works with small pipelines by the way.
**Error message**
```
Failed to draw... | closed | 2024-07-25T22:08:43Z | 2025-01-28T11:18:55Z | https://github.com/deepset-ai/haystack/issues/8089 | [
"P3"
] | CarlosFerLo | 10 |
Lightning-AI/pytorch-lightning | data-science | 20,027 | [Fabric Lightning] Named barriers | ### Description & Motivation
To prevent ranks losing alignment due to user error -- it would be beneficial to have named barriers with lightning allowing nodes to move forward only if same barrier name is met.
### Pitch
For example:
```
if fabric.global_rank == 0:
fabric.barrier("rank_0")
else:
fa... | open | 2024-06-28T11:14:00Z | 2024-06-28T12:25:44Z | https://github.com/Lightning-AI/pytorch-lightning/issues/20027 | [
"feature",
"help wanted",
"distributed"
] | tesslerc | 1 |
awesto/django-shop | django | 579 | Payment modul | I have a question about creating a payment module for one of the operators.
The operator I want to integrate requires that POST data to the transaction log after it returns a token for further authorization.
One of these data is OrderId, which can be sent only once to the payment system.
After this authorization and... | closed | 2017-05-15T08:12:25Z | 2017-08-25T12:03:14Z | https://github.com/awesto/django-shop/issues/579 | [] | maltitco | 21 |
python-restx/flask-restx | flask | 535 | Choices Property Does Not Work For JSON List | When defining choices for a list in the JSON data input, validation does not work. This is true if type is `list` or if type is `str` and action is `"append"`.
### **Code**
```python
import flask
from flask_restx import Api, Namespace, Resource
from flask_restx import reqparse
from flask_restx import Api
... | open | 2023-04-03T19:13:31Z | 2023-04-12T18:54:06Z | https://github.com/python-restx/flask-restx/issues/535 | [
"bug"
] | pype-leila | 2 |
CorentinJ/Real-Time-Voice-Cloning | pytorch | 1,163 | vocoder.pt drive link is not working. | Getting 404 error while trying to download the vocoder model for the drive link: https://drive.google.com/uc?ixd=1cf2NO6FtI0jDuy8AV3Xgn6leO6dHjIgu | open | 2023-02-14T14:57:09Z | 2023-02-14T14:57:09Z | https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/1163 | [] | seriesscar | 0 |
google/trax | numpy | 1,065 | ConvTranspose Layer | It would be nice to have a **Transpose Convolution Layer** added to the ```trax.layers.convolution``` class. | closed | 2020-10-03T06:18:03Z | 2020-12-10T16:18:00Z | https://github.com/google/trax/issues/1065 | [
"enhancement",
"good first issue"
] | SauravMaheshkar | 3 |
ymcui/Chinese-BERT-wwm | nlp | 144 | transformer2.2.2 加载参数失败 | 直接加载会报错
OSError: Model name '/Users/wonbyron/bert/chinese_roberta_wwm_large_ext_pytorch/' was not found in model name list (bert-base-uncased, bert-large-uncased, bert-base-cased, bert-large-cased, bert-base-multilingual-uncased, bert-base-multilingual-cased, bert-base-chinese, bert-base-german-cased, bert-large-uncas... | closed | 2020-09-15T02:04:20Z | 2020-09-21T07:38:11Z | https://github.com/ymcui/Chinese-BERT-wwm/issues/144 | [] | RoacherM | 4 |
KevinMusgrave/pytorch-metric-learning | computer-vision | 505 | using pytorch training reference script with pytorch-metric-learning | Hi @KevinMusgrave !
I have recently been using the reference scripts pytorch provides to train my models (which is wonderful btw) BUT, I would love to use pytorch-metric-learning with this reference script.
The training script and blog re this is here:
https://github.com/pytorch/vision/tree/main/references/class... | closed | 2022-07-28T07:07:13Z | 2022-08-02T18:24:20Z | https://github.com/KevinMusgrave/pytorch-metric-learning/issues/505 | [
"question"
] | abaqusstudent | 2 |
amidaware/tacticalrmm | django | 1,406 | Feature Request: Expose agent errors in the TRMM console | **Is your feature request related to a problem? Please describe.**
The `agent.log` has some errors that indicate possible problems but you don't know they are problems until you work with that specific agent.
**Describe the solution you'd like**
It would be nice if these system level or agent level errors were exp... | open | 2023-01-18T14:36:30Z | 2023-02-05T21:50:21Z | https://github.com/amidaware/tacticalrmm/issues/1406 | [
"enhancement"
] | NiceGuyIT | 0 |
ydataai/ydata-profiling | jupyter | 981 | TypeError From ProfileReport in Google Colab | ### Current Behaviour
In Google Colab the `.to_notebook_iframe` method on `ProfileReport` throws an error:
```Python
TypeError: concat() got an unexpected keyword argument 'join_axes'
```
This issue has been spotted in other contexts and there are questions in StackOverflow: https://stackoverflow.com/questio... | closed | 2022-05-13T19:00:16Z | 2022-05-16T18:06:54Z | https://github.com/ydataai/ydata-profiling/issues/981 | [
"documentation 📖"
] | adamrossnelson | 3 |
deepset-ai/haystack | machine-learning | 8,171 | Outdated documentation | Most of the examples provided in your documentation do not seem to be functioning correctly. Even on your website’s first page, under the “Quick Start” section (https://haystack.deepset.ai/overview/quick-start), there appears to be an error regarding the “PredefinedPipeline.” The line “from haystack import Pipeline, Pr... | closed | 2024-08-08T04:13:33Z | 2024-09-07T22:52:48Z | https://github.com/deepset-ai/haystack/issues/8171 | [
"type:documentation",
"community-triage"
] | dariush-saberi | 4 |
autogluon/autogluon | data-science | 3,856 | [BUG]image classification doesn't work | Ubuntu 20.04
autogluon 1.0.0
My original train_df had column labels 'img' and 'lbl'. This code failed:
```
from autogluon.multimodal import MultiModalPredictor
predictor = MultiModalPredictor(label='lbl', problem_type='multiclass', presets='medium_quality', path='models/mq')
predictor.fit(train_data=train_... | closed | 2024-01-11T20:34:06Z | 2024-01-11T21:49:06Z | https://github.com/autogluon/autogluon/issues/3856 | [
"bug: unconfirmed",
"Needs Triage"
] | rxjx | 1 |
Avaiga/taipy | automation | 1,685 | [BUG] Investigate Azure issue | ### What would you like to share or ask?
From a user feedback:
We’re having some odd issues with Taipy App deployment. The Taipy App uses the Taipy framework and has an external connection (i.e., Azure Cosmos).
1. Create WebApp and Deploy Taipy App using Azure CLI
a. Create WebApp resource and Deploy T... | open | 2024-08-20T10:39:43Z | 2025-02-07T13:33:25Z | https://github.com/Avaiga/taipy/issues/1685 | [
"🖧 Devops",
"💥Malfunction",
"🆘 Help wanted",
"🟧 Priority: High"
] | FlorianJacta | 0 |
MentatInnovations/datastream.io | jupyter | 33 | Use correct library versions in requirements.txt | Datastream.io is not working because some of the library dependencies are not set to the correct version (tornado and elasticsearch in my case).
Here is the pip freeze (python3.5) of the fully working datastream.io:
`bokeh==1.3.0
dateparser==0.7.1
-e git+https://github.com/MentatInnovations/datastream.io@a243b89... | open | 2019-07-31T07:21:04Z | 2019-07-31T07:21:04Z | https://github.com/MentatInnovations/datastream.io/issues/33 | [] | Aid91 | 0 |
OpenInterpreter/open-interpreter | python | 616 | azure openai api version support in yaml config file | ### Is your feature request related to a problem? Please describe.
Currently using open-interpreter version 0.1.7 together with azure openai, I need to specify the api_version as an environment
variable in my shell configuration file, e.g:
export: AZURE_API_VERSION=2023-08-01-preview
### Describe the solution y... | closed | 2023-10-10T08:55:20Z | 2024-03-18T19:51:13Z | https://github.com/OpenInterpreter/open-interpreter/issues/616 | [
"Enhancement",
"Good First issue"
] | rasmusstrong | 2 |
kizniche/Mycodo | automation | 652 | Internet not detect | ## Mycodo Issue Report:
- Specific Mycodo Version: 7.4.2
#### Problem Description
Please list: Internet is not detected even if internet is accessible.

Eth0 connection is straight to a laptop to i... | closed | 2019-04-25T19:46:15Z | 2019-06-07T19:13:25Z | https://github.com/kizniche/Mycodo/issues/652 | [] | pigelb | 3 |
horovod/horovod | deep-learning | 3,866 | How to create a tensor variable on the chief worker? | I need a scalar variable to count something. In parameter server mode, I created it on the first ps node and all the workers can run `add_op` to update it. It works fine.
```
with tf.device('/job:ps/task:0/cpu:0'):
var_for_count = tf.get_variable('count_variable', (), tf.int32, initializer=tf.zeros_initializer)
... | closed | 2023-03-20T10:46:39Z | 2023-03-20T18:01:01Z | https://github.com/horovod/horovod/issues/3866 | [] | formath | 0 |
PokemonGoF/PokemonGo-Bot | automation | 5,816 | How to run bot with mutliple users ? | Hello,
I install "Bot" and "Web UI" both and then they work pretty good now. Because I saw the top right corner of the design of [my web page](http://imgur.com/UhKua95) showing "Bots", I wonder if we can run more bots and display on the same page? | closed | 2016-11-15T17:49:25Z | 2016-11-16T08:59:39Z | https://github.com/PokemonGoF/PokemonGo-Bot/issues/5816 | [] | jamiekuo | 3 |
sgl-project/sglang | pytorch | 3,769 | sgl-kernel for aarch64 | Hello,
Thank you very much for your great work on SGLang!
I was wondering if it would be possible to release wheels for `sgl-kernel` for aarch64 (the one on pypi right now only supports x86_64). Alternatively, it would be very helpful if you could provide instructions on how to build `sgl-kernel` from source as well! | open | 2025-02-21T17:19:00Z | 2025-03-12T16:10:08Z | https://github.com/sgl-project/sglang/issues/3769 | [
"help wanted"
] | GeorgiosSmyrnis | 2 |
tfranzel/drf-spectacular | rest-api | 1,251 | Wrong Type for FileField based fields in POST type bodies | **Describe the bug**
If I have a model with a models.FileField field, the type of this field is 'url' since the GET Request would include a url to the image, which is right. But when doing post requests, you don't have to provide an url but an file.
**To Reproduce**
It would be most helpful to provide a small sni... | closed | 2024-06-05T16:44:11Z | 2024-06-08T09:47:44Z | https://github.com/tfranzel/drf-spectacular/issues/1251 | [] | autoantwort | 2 |
OpenInterpreter/open-interpreter | python | 611 | download language model | ### Is your feature request related to a problem? Please describe.
i need to download language model when use local. but disk space available
How to change the download path ?
Download to `C:\Users\z\AppData\Local\Open Interpreter\Open Interpreter\models`?
[?] (Y/n): y
You do not have enough disk space av... | closed | 2023-10-09T20:21:50Z | 2023-10-10T00:14:08Z | https://github.com/OpenInterpreter/open-interpreter/issues/611 | [
"Enhancement"
] | While941 | 3 |
jofpin/trape | flask | 396 | Validation of User Input for Port and URL (Lines 138, 139) | https://github.com/jofpin/trape/blob/6baae245691997742a51979767254d7da580eadd/core/trape.py#L138C4-L138C37
**Potential Issue:** User inputs for the `port` and `URL` fields are currently not validated, which could lead to errors or potential security risks.
**Suggestion:** Add validation checks for port ranges and... | open | 2024-11-06T22:49:25Z | 2024-11-06T22:49:25Z | https://github.com/jofpin/trape/issues/396 | [] | nitish-yaddala | 0 |
ploomber/ploomber | jupyter | 418 | Building online APIs from pipelines with scripts/notebooks | we only support exporting online APIs from pipelines with Python functions | closed | 2021-11-12T16:37:24Z | 2022-08-19T19:26:38Z | https://github.com/ploomber/ploomber/issues/418 | [] | edublancas | 0 |
sebp/scikit-survival | scikit-learn | 94 | What is the origin of time for predict function? | Based on the docs:
> If samples are ordered according to their predicted risk score (in ascending order), one obtains the sequence of events, as predicted by the model. This is the return value of the predict() method of all survival models in scikit-survival.
In my use case I need to predict the order in which i... | closed | 2020-02-20T13:45:01Z | 2021-04-01T09:58:19Z | https://github.com/sebp/scikit-survival/issues/94 | [
"question"
] | mateuszbuda | 4 |
home-assistant/core | python | 141,038 | Fritzboxtool: wlan with Fritzbox 5690pro | ### The problem
Some actions doesnt work correctly:
Swiching wifi 5 ghz on or off applies to 6 ghz band
Action for the 5ghz band are missing. This box supports 5, 6 and 2.4 ghz but you can only swich 2 bands.
Furher feature request: I would like to limit the wifi to 50% in the night but there is no action for.
### W... | open | 2025-03-21T04:46:11Z | 2025-03-23T10:57:22Z | https://github.com/home-assistant/core/issues/141038 | [
"integration: fritz",
"feature-request"
] | fif81 | 4 |
tartiflette/tartiflette | graphql | 209 | Exception raised in arguments coercer doesn't returns expected error | * **Tartiflette version:** 0.8.3
* **Python version:** 3.7.1
* **Executed in docker:** No
* **Is a regression from a previous versions?** No
SDL example:
```graphql
directive @validateLimit(
limit: Int!
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
type Query {
aList(
nbItems: Int! @validateL... | closed | 2019-04-16T12:39:32Z | 2019-04-16T12:52:58Z | https://github.com/tartiflette/tartiflette/issues/209 | [
"bug"
] | Maximilien-R | 0 |
sanic-org/sanic | asyncio | 2,664 | Dark mode / custom CSS for Sanic's own output | ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Is your feature request related to a problem? Please describe.
Sanic currently creates error pages and assuming that PR #2662 is merged will be producing file listings with bright white background.
The Internet is moving to dar... | closed | 2023-01-25T13:22:48Z | 2023-03-21T18:53:34Z | https://github.com/sanic-org/sanic/issues/2664 | [
"feature request"
] | Tronic | 2 |
litestar-org/litestar | pydantic | 3,646 | Bug: order of types in openapi spec is not consistent in json rendering | ### Description
We are seeing the order of types change in openapi generation, which makes comparing golden versions of the openapi spec problematic. I think the specific problem we are seeing comes from https://github.com/litestar-org/litestar/blob/ffaf5616b19f6f0f4128209c8b49dbcb41568aa2/litestar/_openapi/schema_ge... | open | 2024-07-25T13:57:31Z | 2025-03-20T15:54:50Z | https://github.com/litestar-org/litestar/issues/3646 | [
"Bug :bug:",
"OpenAPI"
] | atom-andrew | 2 |
mirumee/ariadne | api | 478 | Update project docs to point to Github discussions instead of Spectrum | Starting August 2021 Spectrum will become read-only and its sprit lives on as GitHub Discussions.
Readme, issue template and website should be updated to direct users to discussions page, and announcement should be made on spectrum about this. | closed | 2021-03-01T22:59:35Z | 2021-03-19T13:20:11Z | https://github.com/mirumee/ariadne/issues/478 | [
"docs",
"meta"
] | rafalp | 0 |
sloria/TextBlob | nlp | 267 | Center word with negative polarity | Hello,
Why does the word have negative polarity. ? | open | 2019-05-22T17:08:34Z | 2019-05-22T17:08:34Z | https://github.com/sloria/TextBlob/issues/267 | [] | jahnavipatel2 | 0 |
sqlalchemy/alembic | sqlalchemy | 634 | Server default not matching for `func.now()` with SQLite | My model has
```python
created = Column(DateTime, server_default=func.now())
```
And every time I invoke `autogenerate` with `compare_server_default=True` on sqlite, it generates the same migrations that do nothing:
```python
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###... | closed | 2019-12-10T12:57:40Z | 2020-03-11T16:45:52Z | https://github.com/sqlalchemy/alembic/issues/634 | [
"question"
] | tdaff | 10 |
deepinsight/insightface | pytorch | 1,736 | CUDA version | When importing insightface I'm keep having
'libcudart.s.0.11.0 : cannot open shared object file : No such file or directory ' error
I think this is because of CUDA version.
So my question is what version of insightface is using under CUDA 10 version? | open | 2021-08-30T16:27:19Z | 2021-08-31T00:40:45Z | https://github.com/deepinsight/insightface/issues/1736 | [] | dlwjddms | 2 |
mckinsey/vizro | plotly | 770 | How to custom action for selector feature | ### Question
Dear all,
I hope to use click data on the scatter plot to control the input of another figure. I can use the control component to achieve the function of control the figure. I am also able to extract clickData from the action. However, not sure how to pass the information in the custom action to anoth... | closed | 2024-10-01T23:02:16Z | 2024-11-26T08:38:58Z | https://github.com/mckinsey/vizro/issues/770 | [
"General Question :question:"
] | yaoyi92 | 6 |
nschloe/tikzplotlib | matplotlib | 261 | Percent in Axis label produces hard to read error. need to escape '%' or Warning? | Regarding #50
When assigning a axis label, I was describing a percent, and used the percent symbol. Everything was produced fine in python, and went as expected.
However, I could not figure out why it kept crashing in latex a week later. It took me around an hour and a half, as the latex error output was not hel... | closed | 2018-12-08T01:16:36Z | 2019-03-17T13:27:18Z | https://github.com/nschloe/tikzplotlib/issues/261 | [] | RichardLettich | 4 |
PeterL1n/BackgroundMattingV2 | computer-vision | 207 | 请问V2版本resnet怎么转成onnx模型? | 转了好久没通过 | open | 2024-02-22T06:23:55Z | 2024-02-22T06:23:55Z | https://github.com/PeterL1n/BackgroundMattingV2/issues/207 | [] | cnywt | 0 |
sinaptik-ai/pandas-ai | pandas | 961 | Add Faker into white list or add ability to expand white list. | ### 🚀 The feature
Add Faker into white list or add ability to expand white list.
### Motivation, pitch
I've asked question "Generate me 10 new synthetic rows based on provided examples" and got error:
Generated code includes import of faker which is not in whitelist.
Log:
```
Question: Generate me 10 new... | closed | 2024-02-26T19:04:48Z | 2024-03-03T13:56:58Z | https://github.com/sinaptik-ai/pandas-ai/issues/961 | [] | PavelAgurov | 2 |
ageitgey/face_recognition | python | 735 | Does Zeropadding requires a memory in neural network? | Hello guys, i want to know does zero padding requires a memory in neural network?
I red **VGGNet in detail** section in http://cs231n.github.io/convolutional-networks/
But it doesn't contains zero padding.
Any body? | closed | 2019-02-04T22:20:24Z | 2019-02-04T22:26:46Z | https://github.com/ageitgey/face_recognition/issues/735 | [] | flyingduck92 | 0 |
Teemu/pytest-sugar | pytest | 222 | invalid reports when used with `-rA`, repeats 3 times with instafail | pytest-sugar reports strange things when used with `-rA`
#### Command used to run pytest
````pytest test_example.py````
#### Test file
````python
def test_example():
print(1)
pass
````
#### Output
````
Test session starts (platform: linux, Python 3.8.5, pytest 6.2.2, pytest-sugar 0.9.4)
rootdi... | closed | 2021-04-05T01:52:56Z | 2022-11-14T16:45:11Z | https://github.com/Teemu/pytest-sugar/issues/222 | [] | stas00 | 4 |
RomelTorres/alpha_vantage | pandas | 89 | Date range for intraday data | Hello everyone! I wondered if it is possible to change the date range for intraday data of a stock or currency. I've already used outputsize='full', but I need something larger in order to use machine learning methods. It's for my thesis, in which I'm building a trading algorithm based in neural networks, but I need hu... | closed | 2018-10-11T21:33:00Z | 2019-02-11T21:59:42Z | https://github.com/RomelTorres/alpha_vantage/issues/89 | [
"question"
] | CarlosT93 | 0 |
jina-ai/serve | deep-learning | 5,916 | Streaming for gRPC for Deployment | closed | 2023-06-19T13:01:35Z | 2023-07-25T10:07:37Z | https://github.com/jina-ai/serve/issues/5916 | [] | alaeddine-13 | 0 | |
Avaiga/taipy | data-visualization | 1,982 | Add back to top functionality | ### Description
As the total height of website is long so back to top button is much needed for easy navigation.
So assign this issue to be under Hacktoberfest.
### Acceptance Criteria
- [ ] Ensure new code is unit tested, and check code coverage is at least 90%.
- [ ] Create related issue in taipy-doc for docum... | closed | 2024-10-09T09:16:21Z | 2024-10-09T12:24:12Z | https://github.com/Avaiga/taipy/issues/1982 | [
"✨New feature"
] | Rajput-xv | 1 |
kaliiiiiiiiii/Selenium-Driverless | web-scraping | 292 | [Feature request] add request history to network_interceptor | Why this feature is needed:
We need it to parsing requests for certain actions without creating crutches and global variables
We open the Interceptor together with the history request
execute our code and then just get the request history and analyze what happened during the execution of this or that code.
You ... | closed | 2024-12-08T12:41:57Z | 2024-12-09T07:21:36Z | https://github.com/kaliiiiiiiiii/Selenium-Driverless/issues/292 | [
"question",
"wontfix"
] | Toxenskiy | 5 |
aiortc/aioquic | asyncio | 18 | Can server create stream? | Hi,
I am using aioquic to develop a software. I want to create a one-way stream from the server to transfer data in the existing session, but I don't seem to find a way to create a stream on the server.
Who can give me a solution?
Thanks. | closed | 2019-07-29T17:38:47Z | 2019-09-04T06:14:02Z | https://github.com/aiortc/aioquic/issues/18 | [] | lRoccoon | 2 |
fastapi-users/fastapi-users | asyncio | 751 | Cannot extend the User model to use nested objects with Ormar | `OrmarUserDatabase.create()` will not save declared nested models/relationships. They do still appear in the OpenAPI schema docs, but the relationships cannot be saved or retrieved.
Steps to reproduce the behavior:
1. Extend your models with a relational field. I have used roles:
```python
class PublicMeta(orma... | closed | 2021-10-04T12:59:46Z | 2022-05-05T13:21:24Z | https://github.com/fastapi-users/fastapi-users/issues/751 | [
"bug"
] | LonelyVikingMichael | 0 |
ultralytics/ultralytics | pytorch | 19,751 | How to use my own class name when predict? | ### Search before asking
- [ ] 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
How to use my own class name when predict?
### Additional
_No response_ | open | 2025-03-18T03:59:20Z | 2025-03-18T06:38:03Z | https://github.com/ultralytics/ultralytics/issues/19751 | [
"question"
] | ChineseFootball10 | 3 |
roboflow/supervision | deep-learning | 1,463 | Notebook not found: Serialise Detections to a CSV File | ### Search before asking
- [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar bug report.
### Bug
The Colab in this [cookbook](https://supervision.roboflow.com/develop/notebooks/serialise-detections-to-csv/) is not found.
<img width="1118" al... | closed | 2024-08-19T20:22:59Z | 2024-08-20T14:08:37Z | https://github.com/roboflow/supervision/issues/1463 | [
"bug"
] | ediardo | 2 |
yt-dlp/yt-dlp | python | 11,766 | --keep-fragments doesn't work with livestreams | ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [X] I'm reporting that yt-dlp is broken on a **supported** site
- [X] I've verified that I have **updated yt-dlp to nightly or master** ([update ... | closed | 2024-12-08T14:00:32Z | 2024-12-09T14:05:18Z | https://github.com/yt-dlp/yt-dlp/issues/11766 | [
"question"
] | billsenxu | 4 |
tensorflow/tensor2tensor | machine-learning | 1,506 | t2t_decoder hangs when dot_product_relative_v2 is used | Hello,
I am trying to train a custom Transformer model that has a decoder only (with a custom bottom['targets']), for sequence generation. I was able to train and generate from the model when I had not specified any other special params. However, the generated sequences frequently had a failure mode where certain to... | closed | 2019-03-20T18:20:27Z | 2019-03-22T03:03:26Z | https://github.com/tensorflow/tensor2tensor/issues/1506 | [] | vidavakil | 2 |
youfou/wxpy | api | 63 | AttributeError: 'Bot' object has no attribute 'enable_puid' | 现在是没有enable_puid这个方法了?
```
raceback (most recent call last):
File "C:/Users/Administrator/PycharmProjects/example/weixin/1.py", line 7, in <module>
bot.enable_puid('wxpy_puid.pkl')
AttributeError: 'Bot' object has no attribute 'enable_puid'
```
我的代码是
```
# -*- coding:utf-8 -*-
from wxpy import *
# 初始... | closed | 2017-05-25T02:09:50Z | 2017-05-27T07:55:54Z | https://github.com/youfou/wxpy/issues/63 | [] | seozed | 1 |
comfyanonymous/ComfyUI | pytorch | 6,314 | ComfyUI seems to ignore the --reserve-vram and/or --disable-smart-memory ? Is there anything going wrong ? | ### Your question
So I am using everything to reduce the vram usage amount.
`ComfyUI_windows_portable>.\python_embeded\python.exe -s ComfyUI\main.py --windows-standalone-build --lowvram --force-fp16 --reserve-vram 2.4 --disable-smart-memory`
However I keep seeing that the memory usage of the loaded model is incre... | open | 2025-01-02T03:20:01Z | 2025-03-17T22:56:43Z | https://github.com/comfyanonymous/ComfyUI/issues/6314 | [
"User Support"
] | SagnikDe2024 | 5 |
OWASP/Nettacker | automation | 702 | x_powered_by_vuln module to log/show the header value | we now have the ability to log response results - need to update the module to log/display the x-powered-by header value | closed | 2023-07-04T17:17:51Z | 2023-07-04T17:41:23Z | https://github.com/OWASP/Nettacker/issues/702 | [] | securestep9 | 0 |
gradio-app/gradio | deep-learning | 9,972 | Issue with Gradio assets not loading through Nginx reverse proxy | ### Describe the bug
When accessing a Gradio application through Nginx reverse proxy, the main page loads but static assets (JS/CSS) fail to load with 404 errors when the page attempts to fetch them automatically.
### Have you searched existing issues? 🔎
- [X] I have searched and found no existing issues
... | open | 2024-11-16T18:34:18Z | 2025-02-28T17:53:19Z | https://github.com/gradio-app/gradio/issues/9972 | [
"bug",
"cloud"
] | shiertier | 3 |
airtai/faststream | asyncio | 1,713 | docs: add How-To section placeholder to all brokers pages | I think, we should add such placeholder to all specific broker sections: RabbitMQ, NATS, Redis.
Also we should edit the current Kafka placeholder and add detail information, how user should add the section to navigation exactly | open | 2024-08-21T19:27:06Z | 2024-08-21T19:27:06Z | https://github.com/airtai/faststream/issues/1713 | [
"documentation"
] | Lancetnik | 0 |
ray-project/ray | tensorflow | 50,939 | Release test long_running_many_tasks.aws failed | Release test **long_running_many_tasks.aws** failed. See https://buildkite.com/ray-project/release/builds/34295#01954657-cbe0-487c-b8a5-d54e567f3856 for more details.
Managed by OSS Test Policy | closed | 2025-02-27T08:15:02Z | 2025-02-28T06:09:26Z | https://github.com/ray-project/ray/issues/50939 | [
"bug",
"P0",
"triage",
"core",
"release-test",
"ray-test-bot",
"weekly-release-blocker",
"stability"
] | can-anyscale | 1 |
postmanlabs/httpbin | api | 376 | Difficult response after request from an TLS client which not supporting TLS SNI | We did some tests with `openssl s_client -connect 23.23.115.5:443` to simulate our embedded client.
We can't get an connection successfully with this method and got always "Internal_error" . After digging deeper we found `openssl s_client -connect 23.23.115.5:443 -servername www.httpbin.org` is working fine.
The h... | open | 2017-08-17T11:54:01Z | 2018-08-05T07:35:44Z | https://github.com/postmanlabs/httpbin/issues/376 | [] | wodo | 4 |
home-assistant/core | python | 140,883 | Emulated Hue error since 2025.3.x | ### The problem
Emulated hue devices are offline in Harmony HUB, repair or refresh doesn't fix it.
Accessing http://haip:8300/api/v2/lights throws a 500 Internal Server Error.
### What version of Home Assistant Core has the issue?
core-2025.3.3
### What was the last working version of Home Assistant Core?
core-202... | open | 2025-03-18T17:06:05Z | 2025-03-18T17:06:12Z | https://github.com/home-assistant/core/issues/140883 | [
"integration: emulated_hue"
] | aurelmarius | 1 |
SYSTRAN/faster-whisper | deep-learning | 1,179 | BatchedInferencePipeline degrades transcription quality heavily | At first the new `BatchedInferencePipeline` seems great. It produces around 2X speed improvement compared to the normal pipeline. But after some more testing I discovered for some audio files the transcription quality is highly degraded. Whole segments are missing compared to the normal pipeline. Some segments switch l... | open | 2024-11-28T11:22:07Z | 2024-12-10T15:54:30Z | https://github.com/SYSTRAN/faster-whisper/issues/1179 | [] | Appfinity-development | 11 |
neuml/txtai | nlp | 749 | Support `<pre>` blocks with Textractor | Update the Textractor pipeline to handle `<pre>` blocks. These blocks should be converted to Markdown code blocks.
| closed | 2024-07-21T16:18:16Z | 2024-07-21T16:22:53Z | https://github.com/neuml/txtai/issues/749 | [] | davidmezzetti | 0 |
feature-engine/feature_engine | scikit-learn | 295 | add functionality to detect introduction of NAN in transform method of discretizers | For the arbitrary, equal width and equal frequency, we should include in the transform method a check to see if NaN are being introduced accidentally.
This can happen if a value is outside the boundaries entered by the user in the arbitrary, or of the variable is too skewed for the other transformers.
The catch s... | closed | 2021-07-18T09:08:10Z | 2022-01-04T13:29:39Z | https://github.com/feature-engine/feature_engine/issues/295 | [
"priority"
] | solegalli | 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.