text stringlengths 20 57.3k | labels class label 4
classes |
|---|---|
Title: Custom metric for LinearRegression.gridsearch
Body: Hi!
I would like to pass this custom metric to gridsearch:
```
def asymmetric_custom_metric(y_true, y_pred, penalization_factor = 5):
"""
Custom loss function that penalizes predictions below the true value more than predictions above the value... | 1medium |
Title: KeyError: 'LLVMPY_AddSymbol'
Body: <!--
hello, I ran into a problem when using the numba library. when running any code using this library, the following error occurs:
`File "C:\Users\admin\AppData\Local\Programs\Python\Python312\Lib\site-packages\llvmlite\binding\ffi.py", line 141, in __getattr__
return se... | 2hard |
Title: Duplicate Values when use relationship type one-to-many in a JoinConfig with get_multi_joined
Body: **Describe the bug or question**
I'm trying to get data from tables where a user (table 1) can be a part of a company (table 2) and have multiple posts (table 3) on the company's forum. using get_multi_joined ... | 1medium |
Title: model.parameters() return [Parameter containing: tensor([], device='cuda:0', dtype=torch.bfloat16, requires_grad=True)] when using zero3
Body: ### System Info
transformers 4.44.2
accelerate 1.2.1
deepspeed 0.12.2
torch 2.2.2
torchaudio 2.... | 2hard |
Title: [BUG]
Body: On editing source on "text" plugin of cms loses some of the data and changes it to something else.
## Steps to reproduce
1. Create a cms page
2. Click on the add plugin button and add `Text` plugin.
3. Click on the source button and put the source below
```<ul style="color: white;... | 1medium |
Title: [BUG] Time series tabular model always uses fallback method (SeasonalNaive) for time series of length 1
Body: **Bug Report Checklist**
<!-- Please ensure at least one of the following to help the developers troubleshoot the problem: -->
- [x] I provided code that demonstrates a minimal reproducible example. <... | 1medium |
Title: [Feature] window 客户端使用麦克风
Body: ### 产品版本
v4.1
### 版本类型
- [ ] 社区版
- [ ] 企业版
- [x] 企业试用版
### 安装方式
- [ ] 在线安装 (一键命令安装)
- [x] 离线包安装
- [ ] All-in-One
- [ ] 1Panel
- [ ] Kubernetes
- [ ] 源码安装
### ⭐️ 需求描述
我们有远程办公的需求,可使用公司電腦上的Telegram或Whatsapp做通話,麥克風的聲音會傳至公司的電腦透過公司電腦再傳送到對方那嘛(windows 远程桌面客户端)
### 解决方案
sorry
###... | 1medium |
Title: I would like the option to disable the DNS Cache and do name resolution on every request
Body: ## Checklist
- [ ] I've searched for similar feature requests.
---
## Enhancement request
…
---
## Problem it solves
E.g. “I'm always frustrated when […]”, “I’m trying to do […] so that […]”.
--... | 1medium |
Title: image Docker.io
Body: Message in English:
Hello Charles,
I noticed that the official Docker image for sqlite-web on Docker Hub is from 2020. Because of this, I encountered issues with missing Insert and Update buttons, despite these features being present in the latest version on GitHub. After building a new D... | 1medium |
Title: how to get the envirement mesh
Body: it is a great project ,I use the nerf garden dataset to reconstruction and i only get the table in the mesh. but i wanna get all environment in the mesh ,how can i get that ,is there anything i can do to achieve my target | 1medium |
Title: Messagebus send isn't working
Body: ## Software:
* Picroft
* 19.2.13
## Problem
This used to work before, but I've seen some work with refactoring the messagebus code, and that probably broke it.
This is basically my code:
```python
from mycroft.messagebus.send import send
send("skill.communication... | 1medium |
Title: OpenLineage can silently lose Snowflake query_ids and can't support multiple query_ids
Body: ### Apache Airflow Provider(s)
openlineage
### Versions of Apache Airflow Providers
latest
### Apache Airflow version
2.X
### Operating System
macos
### Deployment
Virtualenv installation
### Deployment details... | 1medium |
Title: Validation error on serializer used only for responses
Body: Note: This may be what https://github.com/axnsan12/drf-yasg/issues/51 was trying to get at...
Trying to do this, but getting a validation error ("... 'ssv': "Unresolvable JSON pointer: 'definitions/Detail'")
```
class DetailSerializer(serializers.... | 1medium |
Title: Accessing unselected columns should raise an error rather that return None
Body: Hello!
When one select columns with `Table.select()`, the returned object will have only part of attributes. Currently, gino (0.4.1) would return `None` when accessing attributes that weren't selected. However, accessing unselect... | 1medium |
Title: Logodds: difference between contributions plot and prediction box
Body: From the code

I built an explainer dashboard, which includes the following outputs:
<img width="497" alt="ExplainerDashbo... | 1medium |
Title: Visualization for model interpretation
Body: I took at look at AllenNLP Interpret https://arxiv.org/pdf/1909.09251.pdf, which implements the saliency map for important tokens, and adversarial attacks with input reduction or word hotflip. These methods seem to be quite useful in helping users understand what the... | 1medium |
Title: `word2vec.doesnt_match` numpy vstack deprecation warning
Body: #### Problem description
I followed [this instruction](https://radimrehurek.com/gensim/scripts/glove2word2vec.html) to load GloVe model. When I run: `model.doesnt_match("breakfast cereal dinner lunch".split())` from the [tutorial](https://rare-t... | 0easy |
Title: Having problems using with fairseq
Body: ## ❓Question
The library [fairseq](https://github.com/facebookresearch/fairseq/) has built in support for aim, but I am struggling to get it working. I'm not sure if it's something I'm doing wrong or if maybe the fairseq support is out of date, but the fairseq repo is fa... | 1medium |
Title: order: combining different xarray variables followed by a reduction orders very inefficiently
Body: Lets look at the following example:
```
import xarray as xr
import dask.array as da
size = 50
ds = xr.Dataset(
dict(
u=(
["time", "j", "i"],
da.random.random((size,... | 2hard |
Title: Exporting out of memory dataframe to parquet error
Body: I am trying to export an out of memory dataframe to parquet as in the following code but i keep getting the following error.
Code:
'''
import numpy as np
from matplotlib import pyplot as plt
import vaex as vd
def custom_shift(df, column):
... | 2hard |
Title: Looking for performance metric for cyclegan
Body: Hi, we often apply cycleGAN for unpaired data. So, some of the performance metric will be not applied
- SSIM
- PSNR
For my dataset, I would like to use cyclegan to mapping an image from winter session to spring session and they have no pair data for each ima... | 1medium |
Title: Question about the backward of the quantize function
Body: Usage Questions Only:
I have a question about quantize function in the dorefa paper.

I have confused to the process about fin... | 3misc |
Title: If I want to use /u as a placeholder instead of /t, what do I need to do
Body: | 1medium |
Title: Using `format` as a query parameter for certain URLs causes `requests` to miss the `?` query string separator
Body: <!-- Summary. -->
Using `format` as a query parameter for certain URLs causes `requests` to miss the `?` query string separator
## Expected Result
I expect the `?` separator to be present wh... | 1medium |
Title: force_unicode - py3 compatibility
Body: ```
'jet_tags' is not a valid tag library: ImportError raised loading jet.templatetags.jet_tags: cannot import name 'force_unicode'
```
http://django.readthedocs.org/en/latest/topics/python3.html
| 1medium |
Title: NewConnectionError
Body: When I pass in a request url for a url that does not respond I get a
```python3
request = requests.get(
"url"
proxies=proxies,
)
```
```
Error: SOCKSHTTPSConnectionPool(host='atxdyqbqutne3q0hoidwnjkxzxzyogtw0boudm7ztiwrdxrucedrsolw.oni... | 1medium |
Title: Request to add xgboost
Body: | 1medium |
Title: 50etf(510050.SH)基金复权因子数据缺失
Body: data = ts_api.fund_adj(ts_code='510050.SH', start_date='20190101', end_date='20191231')
50etf(510050.SH)基金复权因子缺失下面几个日期的数据:
20190701
20190807
20190826
20191028
20191029
tushare id: 216155(glhyy11313081@163.com)
| 1medium |
Title: [DOC] Install django-cms by hand instruction is incomplete
Body: ## Description
If you follow the instructions - this will lead to the installation of a broken version of django-cms, because
`pip install django-cms`
will install django 4 as a dependency, which we don't support
* [x] Yes, I want to... | 0easy |
Title: Receive empty list of related resources after upgrade from 0.30.1 to 0.31.x
Body: Such kind of requests always returns empty list:
Request:
`/addresses/43/values`
Response:
`{
"data": [],
"links": {"self": "http://127.0.0.1:5000/address_values"},
"meta": {"count": 0},
"jsonapi": {"version": "1.0"... | 1medium |
Title: After update to 3.4: unknown error: Runtime.evaluate threw exception: SyntaxError: missing ) after argument list
Body: Thanks to the author for writing such a powerful, elegant open source product, I'm happy to update to 3.4 now, but I'm having problems after updating to the new version, as the author says it'... | 2hard |
Title: Documentation: show examples of good docs
Body: # Tasks
* [x] Review existing criterias for documentation
* [x] Suggest own criterias
* [x] Show good examples and explain why | 0easy |
Title: SARIMAX.predict() exog
Body: On SARIMAX.predict(), when you have an exog but the exog is only known today and in the past, how do you predict the endog's next 12 months off just the exog and data known through today? Is that what the SARIMAX.predict() is doing as a default? Example, my exog is SP500 price. I ... | 1medium |
Title: Test dependencies not included in project dependencies?
Body: Is there a reason why [`requirements.txt`](https://github.com/frol/flask-restplus-server-example/blob/27dfdb8791f087b0c35b9e929a98e10f9d24ec21/requirements.txt) does not include `-r tests/requirements.txt`? | 3misc |
Title: Input size does not match
Body: ### 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
The input tensor size is not equal to the model in... | 0easy |
Title: manual update seems don't work
Body: ## ❓ Questions and Help
double confirm if manual daily update don't works. If yes, when it will go back to normal? and warnings frequently pop up when running "collector.py".
logs of warning:
"FutureWarning: A value is trying to be set on a copy of a DataFrame or Series thr... | 1medium |
Title: Tutorial: Creating DB within WSL on Windows
Body: ### First Check
- [X] I added a very descriptive title to this issue.
- [X] I used the GitHub search to find a similar issue and didn't find it.
- [X] I searched the SQLModel documentation, with the integrated search.
- [X] I already searched in Google "How to X... | 0easy |
Title: `test_sftp.SFTPStorageTest` `test_accessed_time` & `test_modified_time` assume EST timezone
Body: Hi,
It seems as though these tests assume a timezone of UTC-5, resulting in e.g.:
```
======================================================================
FAIL: test_accessed_time (tests.test_sftp.SFTPStor... | 1medium |
Title: correctness tests
Body: I'm guessing:
PyGraphistry integration:
- github ci: default off
- github ci: explicit opt-out
- local dev: as part of regular gpu-enabled tests
cuCat repo: ??? | 1medium |
Title: Gensim sort_by_descending_frequency changes most_similar results
Body: <!--
**IMPORTANT**:
- Use the [Gensim mailing list](https://groups.google.com/forum/#!forum/gensim) to ask general or usage questions. Github issues are only for bug reports.
- Check [Recipes&FAQ](https://github.com/RaRe-Technologies/gen... | 1medium |
Title: pip install brokenaxes failed
Body: I see the error:
```
Downloading brokenaxes-0.3.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-m8qZrr/brokenaxes/setup.py", line 10, in <mo... | 1medium |
Title: [question] export annotations of a project in subfolders
Body: Hello!
In CVAT I have a project consisting of jobs (each job is a video with annotations, boxes and class). when I get an export from project labels (Images not included, only labels) the labels get accumulated in a single folder! so a single folder ... | 1medium |
Title: pytest==6.1.0: processing filter warnings is done before django.setup()
Body: Lauching pytest results in the following error:
<details>
<summary><tt>pytest test_foo.py</tt> click to expand</summary>
<pre>
Traceback (most recent call last):
File "/home/presto/.virtualenvs/presto/bin/pytest", line 8, in <mo... | 2hard |
Title: Dataset and Pre-trained Model Files Not Accessible
Body: Dataset and the pre-trained model files are not accessible. Getting 403 Forbidden from the server
`$ sh get_data.sh
mkdir: cannot create directory ‘../data’: File exists
--2022-03-18 12:14:57-- http://sketch-code.s3.amazonaws.com/data/all_data.zip
R... | 1medium |
Title: Error using augmentation
Body: Hi everyone,
I use augmentation as follows:
```
> ``seq = iaa.Sometimes(0.833, iaa.Sequential([
iaa.Fliplr(0.5), # horizontal flips
iaa.Crop(percent=(0, 0.1)), # random crops
# Small gaussian blur with random sigma between 0 and 0.5.
# But we only blur a... | 2hard |
Title: Question about finite difference taps
Body: Hi~Thanks for the great work and provided code!
Is there any difference in the accuracy of finite difference when taps is equal to 6 and 4? Will taps=6 be more accurate? Because it is 6 in the paper, but it is 4 by default in the code. | 3misc |
Title: Code execute raise TypeError: 'PandasConnector' object is not subscriptable, looks PandasConnector not be well linked to a DataFrame.
Body: ### System Info
pandasai==2.0.21
pytho==3.9.19
os==ubuntu
### 🐛 Describe the bug
The bug is PandasConnector isn't well-linked to a Pandas Dataframe, as error me... | 2hard |
Title: Switch to Dark Mode MkDocs
Body: Added the ability to change the appearance to "Dark Mode" and vice versa the document. | 1medium |
Title: Missing tags for latest v3.6.x releases
Body: On PyPI, there are 3.6.4, 3.6.5 and 3.6.6 releases (https://pypi.org/project/pandas-profiling/#history), but no corresponding tags in this repo. Can you add them please? | 0easy |
Title: TFLearn Memory Leak
Body: I'm running the following Flask application to train a DNN similar to AlexNet on some images. After each run I delete everything Python has available to me in memory. However, each run adds about 1GB of memory to the running Python process and produces an OOM exception sooner or later. ... | 2hard |
Title: Adding multiple outputs results in one output appearing until page refresh (master branch)
Body: Problem: Enter 2 in quantity field on output page, select any output, select Add. Only one output is added to the page. Refresh the page and two outputs are there.
Fix: allow multiple outputs to be added via the n... | 1medium |
Title: Tensorflow 2.0 parallel_model problem
Body: I'm trying to use mrcnn today but i had this problem.
do you have an idea for the solution ?
```
model = modellib.MaskRCNN(mode="training", config=config, model_dir=args.logs)
File "/hdd-raid0/home_server/houssem/anaconda3/envs/hxf_env/lib/python3.7/site-pac... | 2hard |
Title: 404 not found 项目链接已经失效!
Body: 最新一期([第97期](https://github.com/521xueweihan/HelloGitHub/blob/master/content/HelloGitHub97.md#%E5%85%B6%E5%AE%83))
<img width="1029" alt="image" src="https://github.com/521xueweihan/HelloGitHub/assets/85916131/2b4b2e8c-ecf2-43db-bc14-46414cd90c33">
点击进去链接都没了。。。
<img width="915" al... | 0easy |
Title: Translate the Darts documentation into Chinese
Body: **I want to translate Darts doc into Chinese , make this great repo more and more popular, anyone there work with me ?**
-> into Chinese:
想把Darts的文档,翻译成中文,有没有人一起,让Darts更加有影响力。
| 1medium |
Title: Project dependencies may have API risk issues
Body: Hi, In **flasgger**, inappropriate dependency versioning constraints can cause risks.
Below are the dependencies and version constraints that the project is using
```
Flask>=0.10
PyYAML>=3.0
jsonschema>=3.0.1
six>=1.10.0
mistune*
werkzeug*
```
The... | 2hard |
Title: Model stored/encoded as a delimited string in the database?
Body: ### First Check
- [X] I added a very descriptive title to this issue.
- [X] I used the GitHub search to find a similar issue and didn't find it.
- [X] I searched the SQLModel documentation, with the integrated search.
- [X] I already searched in ... | 1medium |
Title: mlfromscratch/supervised_learning/__init__.py has references to undefined python files.
Body: Everything you need to know is in the title. ` mlfromscratch/supervised_learning/__init__.py` has references to undefined python files.
To reproduce, run: "python demo.py", you get:
ImportError: No module name... | 0easy |
Title: Processes stopped when passing large objects to function to be parallelized
Body: Problem:
Apply a NLP Deep Learning model for Text Geneartion over the rows of a Pandas Series. The function call is:
`out = text_column.parallel_apply(lambda x: generate_text(args, model, tokenizer, x))`
where `args`, `tok... | 2hard |
Title: Can't place multiple devices in rack with non-racked device (using API)
Body: ### Deployment Type
Self-hosted
### Triage priority
This is preventing me from using NetBox
### NetBox Version
v4.1.4
### Python Version
3.12
### Steps to Reproduce
1. Create site
2. Create rack in the site (for example with ... | 1medium |
Title: SyntaxWarning: "is" with a literal. Did you mean "=="?
Body: Hi all!
If I install python>=3.8.1 and segmentation-models-pytorch==0.32.2, then an warning occurs on import `import segmentation_models_pytorch as smp`. The warning appears in library `pretrainedmodels`.
```
Python 3.9.15 (main, Mar 13 2023, 09... | 1medium |
Title: Error in reading data into a dataframe on encountering an empty cell
Body: I have the following data in an xl sheet, cell A7 onwards
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/R... | 1medium |
Title: Feature req: monthly report of approved and installed updates
Body: monthly report of approved and installed updates per client/site
Just a feature that customers may be willing to pay extra for. and paying means earning, and earning means budget for more sponsorship :)
| 1medium |
Title: Tools-Alignment-Manual broken
Body: Hi torzdf,
I have problems with the Aligments -> Manual, when I call the command flashes the start image briefly and then the process is closed without error message Had previously had small problems with conda. I couldn't make any more proper updates. now everything works. h... | 1medium |
Title: OpenAI API Compatible Endpoints for each Agent (with optional additional arguements)
Body: ### Feature/Improvement Description
So much new dev now is using OpenAI API compatibility. Every time there's a new demo CoLab Notebook for a paper, it simply wants an OpenAI Key and can usually accept an OPEN_AI_BASE or... | 1medium |
Title: Require Python >= 3.9
Body: Python 3.8 is official EOL.
[EOL Announcement](https://discuss.python.org/t/python-3-8-is-now-officially-eol/66983) | [Status of Python versions](https://devguide.python.org/versions/)
The next txtai release will require Python 3.9. The build scripts, docker images and anything ... | 1medium |
Title: strawberry.ext.mypy_plugin PydanticModelField.to_argument error
Body: I think I'm having some issues with strawberry.ext.mypy_plugin when using a pydantic model to make my types
When I enable I get this error (image). If I disable it runs.
## Describe the Bug
When I enable I get this error. If I disable i... | 1medium |
Title: Enhancement request: async execution for a non-defined function
Body: ## Context
My use case is to be able to execute a function ("task") using the async execution in a different lambda. That lambda has a different code base than the calling lambda. In other words, the function ("task") to be executed is not de... | 1medium |
Title: attributes shall be resolveable on registered clients
Body: **Is your feature request related to a problem? Please describe.**
When I register a client like:
```
from authlib.integrations.starlette_client import OAuth,
oauth = OAuth()
oauth.register(
name="example",
client_id=client_id... | 1medium |
Title: Usage of built-in collection type aliases with starlette breaks wiring
Body: ```
from typing import List
from dependency_injector import containers
from dependency_injector.wiring import inject
# MyList = List[int]
MyList = list[int]
class Container(containers.DeclarativeContainer):
pass
... | 2hard |
Title: Word2vec: total loss suspiciously drops with worker count, probably thread-unsafe tallying
Body: <!--
**IMPORTANT**:
- Use the [Gensim mailing list](https://groups.google.com/forum/#!forum/gensim) to ask general or usage questions. Github issues are only for bug reports.
- Check [Recipes&FAQ](https://github... | 2hard |
Title: Hard Limit Recursion Limit on `default_calls`
Body: Is there a specific reason the value `5` was chosen here?
`if self.default_calls > 5` https://github.com/ijl/orjson/blob/master/src/encode.rs#L227
If it's not a hard limit would it be possible to add it as an optional param to `dumps()` to enable the deve... | 1medium |
Title: ENH: Task return values to parameters
Body: **Describe the solution you'd like**
The return values are passable via queue (if multiprocessing) or via direct modification (if thread or main). These values need to be processed in Scheduler. Probably requires a new Argument type.
The argument type can be named ... | 1medium |
Title: [BUG] Removing available option for custom field (of type select) results in undesired data change for many existing documents.
Body: ### Description
It looks like the value of custom select field is stored by it's options index and not value. If we remove any option from the middle of the list, values for this... | 2hard |
Title: Reevaluating Experimental Functions for Streamlit Development
Body: ### Checklist
- [x] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar feature requests.
- [x] I added a descriptive title and summary to this issue.
### Summary
Can someone please elaborate on th... | 1medium |
Title: dnspython3 packages, migration path?
Body: The current dnspython3 package is still [1.12.0 on pypi](https://pypi.python.org/pypi/dnspython3/1.12.0).
I'd like to see new releases there too: Dummy pypi packages which require the new dnspython. So users become aware of the obsolescence.
(For packaging rpm and deb... | 1medium |
Title: Training on older graphics card with custom dataset.
Body: Hey,
I am using the Common-Voice dataset for German language and I am trying to train a synthesizer on my old GTX 660TI with 2G VRAM (Unfortunately :D).
As Cuda Compute Capability 3.0 is not supported by Pytorch, I always built it from source. I've tr... | 2hard |
Title: [Question]: Why youtube stream does not start with writegear?
Body: ### Issue guidelines
- [X] I've read the [Issue Guidelines](https://abhitronix.github.io/vidgear/latest/contribution/issue/#submitting-an-issue-guidelines) and wholeheartedly agree.
### Issue Checklist
- [X] I have read the [Documenta... | 1medium |
Title: DecodeError use is inconsistent with api of AuthlibBaseError
Body: **Describe the bug**
It appears that everywhere that `authlib.jose.errors.DecodeError` is raised, it is raised as e.g. `raise DecodeError('message')`. Due to the API of `AuthlibBaseError` being `(error, description, uri)`, this overwrites the sh... | 1medium |
Title: Slow query with ARRAY in SELECT and in WHERE .. ANY
Body: <!--
Thank you for reporting an issue/feature request.
If this is a feature request, please disregard this template. If this is
a bug report, please answer to the questions below.
It will be much easier for us to fix the issue if a test case that... | 1medium |
Title: [Bug]: Uncaught exception | <class 'ValueError'>; Qwen2_5_VLModel has no vLLM implementation and the Transformers implementation is not compatible with vLLM
Body: ### Your current environment
I just know it's hosted on runpod serverless vLLM latest (today).
### 🐛 Describe the bug
When trying to host my fin... | 2hard |
Title: Prefect Workers crash when server returns 500s
Body: ### Bug summary
We run a pretty big self-hosted installation of Prefect 2.x (20k flow runs/day, 200k tasks) and noticed that when self-hosted API server becomes overloaded, it starts returning HTTP 500s.
That's OK by itself, but this makes Workers (we use Ku... | 1medium |
Title: __version__ in __all__ issue
Body: See KeepSafe/aiohttp#978
| 0easy |
Title: 研报查询无结果error
Body: 
已在群中确认,专门来拿积分的 383606 | 0easy |
Title: What is the proper way to handle dependencies at module load time?
Body: Hello all! Im having a fun time experimenting with this framework, but have found myself stumped on this design issue for a while. In short, if a dependency needs to be used at module load time (e.g. decorators), the init_resources/wiring b... | 2hard |
Title: Have you considered to have docker support?
Body: It would be easier to deploy if using docker, especially in Linux. | 3misc |
Title: Failing to compute gradients, RuntimeError: element 0 of tensors does not require grad and does not have a grad_fn
Body: ### Search before asking
- [x] I have searched the Ultralytics YOLO [issues](https://github.com/ultralytics/ultralytics/issues) and [discussions](https://github.com/orgs/ultralytics/discussio... | 2hard |
Title: Docker marzban xray crashloop
Body: Non stopped restarting:
```
marzban-1 | WARNING: Xray core 1.8.8 started
marzban-1 | WARNING: Restarting Xray core...
marzban-1 | WARNING: Xray core 1.8.8 started
marzban-1 | WARNING: Restarting Xray core...
```
Steps to reproduce the behavior:
1. git clone t... | 1medium |
Title: Feature: Default GraphQL Enums from Python Enums.
Body: <!--- Provide a general summary of the changes you want in the title above. -->
<!--- This template is entirely optional and can be removed, but is here to help both you and us. -->
<!--- Anything on lines wrapped in comments like these will not show up... | 1medium |
Title: When rebasing gitstatus raises "_GSField.updator() takes 2 positional arguments but 3 were given"
Body: ## xonfig
<details>
```
+------------------+-----------------+
| xonsh | 0.13.3 |
| Python | 3.10.7 |
| PLY | 3.11 |
| have readline ... | 2hard |
Title: Task admin - autocomplete_fields
Body: Dropdown select is not easy when you have many users.
I'd like to recommend adding **"autocomplete_fields"** in **workflow/admins.py**
```
@admin.register(Task)
class TaskAdmin(admin.ModelAdmin):
"""List all of viewflow tasks."""
icon = '<i class="material... | 0easy |
Title: [Bug] Cannot login on VPS using Linux Terminal
Body: **Describe the bug**
After installing Openbb Terminal in a remote VPS running Linux, I cannot login.
**To Reproduce**
Installed a fresh copy of openbb and worked properly.
Started the terminal and worked properly.
Went to accounts/login and at this poin... | 1medium |
Title: Document minimum tifffile requirements
Body: ### Description:
I'm looking to update the python-scikit-image package in Fedora and getting the following test failures:
```
_________________________________ test_shapes __________________________________
imgs = <skimage.io.collection.MultiImage object at 0x7f... | 1medium |
Title: execution options param in ORM session hardcoded to immutable dict
Body: ### Discussed in https://github.com/sqlalchemy/sqlalchemy/discussions/10181
```py
from sqlalchemy.orm import Session
session: Session
session.connection(
execution_options={"isolation_level": "REPEATABLE READ"}
)
```
```... | 1medium |
Title: Attribute type change in Mapped[] not detected
Body: **Describe the bug**
<!-- A clear and concise description of what the bug is. -->
If I change the type of an attribute in my model, only defined by the `Mapped` annotation, then I do not get any changes in the resulting upgrade script:
```python
class Fi... | 1medium |
Title: AttributeError: 'Order' object has no attribute 'algoParamsCount'
Body: Hello,
I get AttributeError: 'Order' object has no attribute 'algoParamsCount', after I submit an adaptive algo order, which is contructed (following the instructions at https://interactivebrokers.github.io/tws-api/ibalgos.html#gsc.tab=0) a... | 1medium |
Title: [Tech Debt] Simplify kernel size logic
Body: RIght now all blurs will throw an error if input kernel range has even sides.
We can simplify it by sampling from any interval, and if picking one that close to samped, larger and valid | 1medium |
Title: UserWarning: NVIDIA GeForce RTX 5090 with CUDA capability sm_120 is not compatible with the current PyTorch installation
Body: ### Checklist
- [x] The issue exists after disabling all extensions
- [x] The issue exists on a clean installation of webui
- [ ] The issue is caused by an extension, but I believe it i... | 2hard |
Title: BUG: failed to install doc requirements on Apple M1
Body: ### Describe the bug
The doc requirements include `lightgbm>=3.0.0`. But installing lightgbm on Apple M1 could result in an error.
### To Reproduce
To help us to reproduce this bug, please provide information below:
1. Your Python version
2. The ... | 2hard |
Title: Our tests fail to test workflows
Body: ...except the Qt6 tests.
#6181 had a compatibility issue which we almost did not catch because only Qt6 tests were having problems.
The cause for this is that `tox.ini` for `testenv` includes:
```
# Skip loading of example workflows as that inflates coverage
... | 1medium |
Title: [FEATURE] Add tests in SAR for remove seen feature
Body: ### Description
<!--- Describe your expected feature in detail -->
### Expected behavior with the suggested feature
<!--- For example: -->
<!--- *Adding algorithm xxx will help people understand more about xxx use case scenarios. -->
### Other Co... | 1medium |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.