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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
liangliangyy/DjangoBlog | django | 136 | 在建立数据库的时候出现了一个错误,我找了许久没找到解决方法。 | Traceback (most recent call last):
File "manage.py", line 22, in <module>
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.6/site-packages/django/... | closed | 2018-07-18T06:57:50Z | 2018-10-14T06:26:04Z | https://github.com/liangliangyy/DjangoBlog/issues/136 | [] | gnaiqgnaw | 2 |
getsentry/sentry | python | 87,018 | [User Feedback] Delete button on feedback details header is disabled, and there's no tooltip explaining why | This is disabled and i don't know why. If there's a good reason then we should add that to a tooltip.
 | open | 2025-03-13T19:49:17Z | 2025-03-13T19:50:24Z | https://github.com/getsentry/sentry/issues/87018 | [
"Product Area: User Feedback"
] | ryan953 | 1 |
jupyter-widgets-contrib/ipycanvas | jupyter | 121 | Version: 0.5.1 MultiCanvas mouse event still not work | Version: 0.5.1 MultiCanvas mouse event still not work | closed | 2020-09-14T15:34:34Z | 2020-09-15T06:12:18Z | https://github.com/jupyter-widgets-contrib/ipycanvas/issues/121 | [] | Bookaa | 3 |
kennethreitz/responder | graphql | 211 | Use Starlette's `concurrency.run_in_threadpool` | You probably want to use Starlette's `async run_in_threadpool(func, *args, **kwargs)` available from 0.7.4 onwards.
This will ensure that `contextvars` support is correctly handled, and ensure that you've got good support for things like the Sentry SDK, which needs it in order to tie together logging, messages, and ... | closed | 2018-11-07T13:46:27Z | 2018-11-15T11:25:33Z | https://github.com/kennethreitz/responder/issues/211 | [] | tomchristie | 1 |
facebookresearch/fairseq | pytorch | 5,333 | Why is architecture of all the other NLLB models (600M,1.3B and 3B ) other than the NLLB-54B MOE m2mforcondtional Generation? | When I was trying to finetune the NLLB distilled 600M model, i checked the config.json file, which states the Architecture as "M2M100ForConditionalGeneration". Then i went to all the variants of the NLLB models and did the same procedure. I found out only the 54B parameter model architecture is called "NllbMoeModel" a... | open | 2023-09-22T09:51:02Z | 2023-09-22T09:51:02Z | https://github.com/facebookresearch/fairseq/issues/5333 | [
"question",
"needs triage"
] | vmenan | 0 |
huggingface/datasets | numpy | 6,752 | Precision being changed from float16 to float32 unexpectedly | ### Describe the bug
I'm loading a HuggingFace Dataset for images.
I'm running a preprocessing (map operation) step that runs a few operations, one of them being conversion to float16. The Dataset features also say that the 'img' is of type float16. Whenever I take an image from that HuggingFace Dataset instance... | open | 2024-03-23T20:53:56Z | 2024-04-10T15:21:33Z | https://github.com/huggingface/datasets/issues/6752 | [] | gcervantes8 | 1 |
oegedijk/explainerdashboard | dash | 123 | ClassifierModelSummaryComponent not present in documentation | Hi Oege,
In building a custom dashboard i tried to find the documentation for the ClassifierModelSummaryComponent in the custom components section of the documentation https://explainerdashboard.readthedocs.io/en/latest/components.html , however it not present.
| closed | 2021-06-10T14:53:47Z | 2021-12-23T15:27:00Z | https://github.com/oegedijk/explainerdashboard/issues/123 | [] | hugocool | 1 |
scrapy/scrapy | web-scraping | 6,023 | formatted string to KeyError exception . | at the `scrapy/scrapy/spiderloader.py` at line `89`, the f string is passed directly as exception arg.
which looks like this when the error is trigered.
<img width="877" alt="Screenshot 2023-08-26 at 20 47 15" src="https://github.com/scrapy/scrapy/assets/106245122/eb819645-e2b4-49cd-9156-ed4e71acf669"> | closed | 2023-08-26T17:52:11Z | 2023-08-27T11:43:31Z | https://github.com/scrapy/scrapy/issues/6023 | [
"needs more info"
] | ma-habibi | 2 |
dsdanielpark/Bard-API | nlp | 268 | Some code errors in README examples , os module import | While working on some project , I found your tool and it is great thanks
Also while going through multiple examples in README
I found that there was unnecessarily `os` module was imported in many examples
And in some examples like `Reusable session object` part the `os` module was used but not imported
and th... | closed | 2024-01-21T11:11:42Z | 2024-03-05T08:23:54Z | https://github.com/dsdanielpark/Bard-API/issues/268 | [] | rudransh61 | 4 |
amidaware/tacticalrmm | django | 1,689 | Winget command via remote background | 
Cant use the winget command to try and uninstall software remotely, any suggestion? | closed | 2023-11-27T16:57:08Z | 2023-11-27T16:57:59Z | https://github.com/amidaware/tacticalrmm/issues/1689 | [] | djbotelho | 0 |
tflearn/tflearn | data-science | 934 | custom activation function | I was trying to build a custom activation function using tflearn by making following changes:
add my custom activation function to activation.py
```
def my_activation(x):
return tf.where(x >= 0.0, tf.div( x**2 , x + tf.constant(0.6)) , 0.01*x)
```
and add it to the __init__.py
```
from .activations im... | open | 2017-10-14T11:51:56Z | 2017-10-14T11:51:56Z | https://github.com/tflearn/tflearn/issues/934 | [] | baidut | 0 |
grillazz/fastapi-sqlalchemy-asyncpg | sqlalchemy | 63 | asyncpg.exceptions._base.InterfaceError: cannot perform operation: another operation is in progress | Hey,
I'm using your boilerplate to setup my fastapi with sqlalchemy and asyncpg.
Now when I do some load testing on my API, after a few concurrent requests , I have the following issue:
asyncpg.exceptions._base.InterfaceError: cannot perform operation: another operation is in progress
How can I prevent this ?
Than... | closed | 2022-11-04T13:28:53Z | 2022-11-14T11:37:49Z | https://github.com/grillazz/fastapi-sqlalchemy-asyncpg/issues/63 | [] | hhertogh | 6 |
CorentinJ/Real-Time-Voice-Cloning | pytorch | 1,177 | How to swap in hifigan? | Has anyone successfully swapped in hifigan for better inference performance? | open | 2023-03-20T00:36:26Z | 2023-05-14T15:13:47Z | https://github.com/CorentinJ/Real-Time-Voice-Cloning/issues/1177 | [] | pmcanneny | 2 |
jupyter/nbviewer | jupyter | 191 | CA certificates no longer include PositiveSSL | Since moving to Rackspace the CA certificate files appear to have changed so they no longer cover PositiveSSL certificates (e.g. from Namecheap https://www.namecheap.com/security/ssl-certificates/domain-validation.aspx )
These used to work and are valid in every browser I've tried, so I can't think of any particular r... | closed | 2014-02-13T19:45:25Z | 2014-02-17T16:15:17Z | https://github.com/jupyter/nbviewer/issues/191 | [] | adamgreig | 7 |
pytest-dev/pytest-cov | pytest | 666 | `pytest-cov` emits hundreds of megabytes of `AstArcAnalyzer` | Struggling to create a minimal implementation of this, but it seems that when we're using `pytest-cov`, mocking out `os`, and then have an internal pytest error we have hundreds of megabytes of AST data printed out because `os.getenv("COVERAGE_TRACK_ARCS")` gets accidentally set to a truthy value.
Working on a minim... | open | 2024-11-14T02:12:55Z | 2024-11-14T18:10:06Z | https://github.com/pytest-dev/pytest-cov/issues/666 | [] | imnotjames | 8 |
junyanz/pytorch-CycleGAN-and-pix2pix | deep-learning | 890 | No models saved in Colab | I was using the PyTorch Colab notebook of CycleGAN. I trained the network using `!python train.py --dataroot ./datasets/horse2zebra --name horse2zebra --model cycle_gan --display_id -1 --n_epochs 5 --n_epochs_decay 5` but it didn't saved any model (I'm using default settings to save every 5000 iterations, in fact it pr... | closed | 2020-01-03T01:59:05Z | 2022-04-28T21:33:35Z | https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix/issues/890 | [] | domef | 6 |
taverntesting/tavern | pytest | 511 | request header | Hey,
I have tests which are for same url(endpoint) , The url is valid only if there is a particular header passed with the request.
Problem statement: Define header once and pass the value/url to requests for multiple tests/stages across a test.
Ex:
```
test_name: Test status codes
stages:
- name: Tes... | closed | 2020-01-23T23:30:02Z | 2020-01-25T15:51:07Z | https://github.com/taverntesting/tavern/issues/511 | [
"Type: Question"
] | ParthVividSeats | 3 |
huggingface/transformers | machine-learning | 36,657 | Cannot run backward with tensor parallel | ### System Info
- `transformers` version: 4.49.0
- Platform: Linux-6.8.0-1021-aws-x86_64-with-glibc2.35
- Python version: 3.11.11
- Huggingface_hub version: 0.29.3
- Safetensors version: 0.5.3
- Accelerate version: 1.4.0
- Accelerate config: not found
- DeepSpeed version: not installed
- PyTorch version (GPU?): 2.5.1... | open | 2025-03-12T06:37:09Z | 2025-03-13T16:00:49Z | https://github.com/huggingface/transformers/issues/36657 | [
"bug"
] | leoleoasd | 2 |
postmanlabs/httpbin | api | 562 | Endpoint /cache does not follow expected RFC format for ETag | According to [RFC 7232, section 2.3](https://tools.ietf.org/html/rfc7232#section-2.3); the ETag's format must be "opaque quoted string" (using double quotes).
`/cache` without `If-Modified-Since` or `If-None-Match` header does not comply with this format, where other endpoints do. It would be great to have this fixe... | open | 2019-07-02T20:04:23Z | 2019-07-03T14:17:56Z | https://github.com/postmanlabs/httpbin/issues/562 | [] | fortizpenaloza | 1 |
CatchTheTornado/text-extract-api | api | 72 | [feat] Implement a universal logger | We need a logger that works well both locally (for devs) and in production (like containerized setups). It should be configurable, support multiple outputs (file/stdout/stderr), and handle different formats (plain text, JSON). Also, it should be easy to configure via env vars.
## Requirements
- [ ] **Environment-... | open | 2025-01-12T01:05:28Z | 2025-01-19T16:55:23Z | https://github.com/CatchTheTornado/text-extract-api/issues/72 | [] | choinek | 0 |
ultralytics/ultralytics | deep-learning | 19,121 | Yolo predict mode Memory not reclaimed? | ### 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
I want to detect 150 images, When I make two predictions, the memory usage k... | open | 2025-02-07T07:52:45Z | 2025-02-10T11:22:37Z | https://github.com/ultralytics/ultralytics/issues/19121 | [
"question",
"detect"
] | p781709996 | 4 |
pydata/xarray | pandas | 9,261 | odd multidimensional extrapolation behaviour with interp | ### What happened?
When using `interp` on a 3-dimensional `DataArray` to extract values on a 2-dimensional surface, there is no extrapolation along one of the dimensions of the 2D plane (but the other dimension works). In the MWE, I have created a 5x5x5 cube centred on the origin where x, y, and z run from -2 to 2, ... | open | 2024-07-20T06:55:46Z | 2024-11-09T18:55:23Z | https://github.com/pydata/xarray/issues/9261 | [
"bug",
"topic-interpolation"
] | tom-new | 3 |
pywinauto/pywinauto | automation | 1,392 | How to handle embedded dialog boxes in pywinauto with python | ## Expected Behavior
We should see next screen window after installation is complete
## Actual Behavior
I am not able to handle **embedded dialog boxes** in pywinauto
after clicking next button in port screen main window
Installing apache please wait embedded window is appeared and installation it t... | open | 2024-05-21T08:58:57Z | 2024-05-21T08:58:57Z | https://github.com/pywinauto/pywinauto/issues/1392 | [] | mohangajjala | 0 |
voila-dashboards/voila | jupyter | 1,145 | Download a dynamic content not working in Voila | Hi everyone,
I am following the code example from https://stackoverflow.com/questions/61708701/how-to-download-a-file-using-ipywidget-button/68683463#68683463 to implement an ipywidget button that download the dynamic content from user. The code is copied and pasted as below.
```
import base64
import hashlib
f... | closed | 2022-04-19T04:44:25Z | 2022-04-19T14:16:30Z | https://github.com/voila-dashboards/voila/issues/1145 | [] | curieshicy | 2 |
FlareSolverr/FlareSolverr | api | 1,218 | [yggtorrent] (testing) Exception (yggtorrent): FlareSolverr was unable to process the request, please check FlareSolverr logs. Message: Error: Error solving the challenge. Timeout after 120.0 seconds.: The operation was canceled. | ### Have you checked our README?
- [X] I have checked the README
### Have you followed our Troubleshooting?
- [X] I have followed your Troubleshooting
### Is there already an issue for your problem?
- [X] I have checked older issues, open and closed
### Have you checked the discussions?
- [X] I have read the Dis... | closed | 2024-06-20T15:50:09Z | 2024-06-21T09:34:41Z | https://github.com/FlareSolverr/FlareSolverr/issues/1218 | [
"duplicate"
] | charliik | 1 |
oegedijk/explainerdashboard | dash | 35 | Understanding depth/topx in ShapContributionsGraphComponent | Depth (resp. topx) is supposed to show the top contributing variables only. However, in my example, only 9 variables are relevant (i.e. abs(SHAP)>0 in total), so that if I choose depth >= 10 every variable is displayed. Is this intended? Shouldn't it show *depth* variables anyway, e.g. randomly choosing among the varia... | closed | 2020-12-02T17:08:44Z | 2020-12-10T12:50:52Z | https://github.com/oegedijk/explainerdashboard/issues/35 | [] | hkoppen | 4 |
OpenInterpreter/open-interpreter | python | 784 | Always in debug_mode? | ### Is your feature request related to a problem? Please describe.
Maybe I'm missing something but missing config for default interpreter (installed via pip3 install open-interpreter), like setting it to azure openai, setting it to -y for auto continue or disable debug. Now interpreter is running continuously in deb... | closed | 2023-11-22T16:50:15Z | 2024-03-18T21:06:08Z | https://github.com/OpenInterpreter/open-interpreter/issues/784 | [
"Needs Verification"
] | stevenbaert | 2 |
plotly/dash | jupyter | 2,595 | Responsive Graphs Ignore "uirevision" | **Describe your context**
Please provide us your environment, so we can easily reproduce the issue.
Python 3.11
- replace the result of `pip list | grep dash` below
```
dash 2.11.1
dash-core-components 2.0.0
dash-html-components 2.0.0
dash-table 5.0.0
plotly 5.15.0
```
- if f... | open | 2023-07-11T20:57:12Z | 2024-08-13T19:35:42Z | https://github.com/plotly/dash/issues/2595 | [
"bug",
"P3"
] | fnight128 | 0 |
pydantic/logfire | fastapi | 213 | ConnectionErrors and ReadTimeouts | ### Description
I have installed logfire in my Django app that I have running on my Raspberry Pi. From what I can tell the logs are all showing up correctly in Logfire, but I'm constantly seeing exceptions in Sentry.
<img width="1464" alt="Screenshot 2024-05-25 at 22 51 49" src="https://github.com/pydantic/logfire/... | closed | 2024-05-25T20:58:09Z | 2024-05-27T20:42:47Z | https://github.com/pydantic/logfire/issues/213 | [
"bug"
] | anze3db | 4 |
amdegroot/ssd.pytorch | computer-vision | 146 | why the image format should converted to RGB? | I know that caffe use opencv, so the image format is BGR, so if you transfer the original caffe weights to the pytorch's, is that just bgr? or that means the VGG16 pre_training weights is trained in rgb? | open | 2018-04-15T12:45:02Z | 2018-04-15T12:51:08Z | https://github.com/amdegroot/ssd.pytorch/issues/146 | [] | zzzzzz0407 | 1 |
ionelmc/pytest-benchmark | pytest | 2 | Save results to file and compare | ```
16:36 <hpk> ionelmc: what i'd need would be a way to compare agsinst prior benchmarks
16:37 <ionelmc> hpk: that means you'd need a way to measure relative times against a "control benchmark"
16:37 <hpk> ionelmc: i.e. "py.test --bench-compare path-to-old-benchmarkresults"
16:37 <ionelmc> because machines don't have ... | closed | 2014-10-11T03:05:44Z | 2015-08-11T01:11:27Z | https://github.com/ionelmc/pytest-benchmark/issues/2 | [] | ionelmc | 1 |
xonsh/xonsh | data-science | 5,701 | Windows: Unable to use COMSPEC to set xonsh as the default shell | ## Current Behavior
In https://github.com/vercel/hyper/issues/8041, I'm attempting to set xonsh as the default shell on Windows. I'm trying to do it for my whole profile, so regardless which terminal I'm using, xonsh will be the shell (so that I don't have to hard-code the path to the shell in each terminal). Fortun... | closed | 2024-10-08T20:52:56Z | 2025-02-26T18:23:24Z | https://github.com/xonsh/xonsh/issues/5701 | [
"windows",
"xonsh-as-default-shell"
] | jaraco | 8 |
aleju/imgaug | deep-learning | 728 | how to switch the axis off | open | 2020-10-29T19:36:42Z | 2020-10-29T19:37:46Z | https://github.com/aleju/imgaug/issues/728 | [] | aishwaryaM16 | 1 | |
KaiyangZhou/deep-person-reid | computer-vision | 382 | 请问怎么使用多gpu进行训练? | closed | 2020-10-31T03:24:04Z | 2020-10-31T03:34:01Z | https://github.com/KaiyangZhou/deep-person-reid/issues/382 | [] | huangzhic | 0 | |
PaddlePaddle/PaddleHub | nlp | 1,361 | 支持ppyolo | 希望可以支持百度自研的ppyolo模型 | open | 2021-04-14T15:21:33Z | 2021-04-21T03:34:51Z | https://github.com/PaddlePaddle/PaddleHub/issues/1361 | [
"enhancement"
] | Lie-huo | 1 |
iMerica/dj-rest-auth | rest-api | 565 | pkg_resources is deprecated | closed | 2023-11-08T05:03:03Z | 2023-11-08T05:04:50Z | https://github.com/iMerica/dj-rest-auth/issues/565 | [] | robd003 | 0 | |
pydantic/logfire | pydantic | 484 | Improve search for alternative backends/clients | Ideas based on https://pydanticlogfire.slack.com/archives/C06EDRBSAH3/p1728466950149999:
1. Searching for "opentelemetry" should return https://logfire.pydantic.dev/docs/guides/advanced/alternative-clients/ and https://logfire.pydantic.dev/docs/guides/advanced/alternative-backends/ as the first results
2. https://l... | open | 2024-10-09T10:14:29Z | 2024-10-09T10:14:38Z | https://github.com/pydantic/logfire/issues/484 | [
"documentation",
"good first issue"
] | alexmojaki | 0 |
aleju/imgaug | machine-learning | 682 | unorderable types: str() >= int() and unsupported operand type(s) for -: 'int' and 'str' | I'm using the 0.2.9 version (don't know why neither anaconda or pip don't upgrade the package to the 0.4.0 version)
and when I use some augmenters I nearly always fall on that kind of error. The only augmenters that are actually working for me are the Affine and Fliplr.
The augmenter that give me these errors are ... | open | 2020-05-30T10:10:24Z | 2020-06-07T23:49:35Z | https://github.com/aleju/imgaug/issues/682 | [] | NoxTheXelor | 2 |
ckan/ckan | api | 7,593 | Type casting for envvar config values | ## CKAN version
2.10
## Describe the bug
I'm not sure the new config declaration setup is properly casting config values set through environment variables to the declared type. We are setting the CKAN_MAX_UPLOAD_SIZE_MB environment variable, which overrides the `ckan.max_resource_size` config value. It is being im... | closed | 2023-05-17T12:37:04Z | 2023-11-15T21:25:02Z | https://github.com/ckan/ckan/issues/7593 | [] | jonathansberry | 6 |
dynaconf/dynaconf | flask | 403 | [bug] Cannot get secrets from vault | **Describe the bug**
When trying to retrieve secrets from hashicorp vault without setting os envs the settings only contain the default dynaconf settings.
**To Reproduce**
Steps to reproduce the behavior:
1. Run local vault server as described in the documentation
2. Store some secrets in vault
3.Run this... | closed | 2020-09-02T11:17:43Z | 2020-10-23T18:57:28Z | https://github.com/dynaconf/dynaconf/issues/403 | [
"hacktoberfest",
"Docs"
] | clanzett | 4 |
ymcui/Chinese-BERT-wwm | tensorflow | 208 | The way to get Chinese Word Embedding. | For some reason I need to get the Chinese word embedding based on PLM, would you offor some ways to get them based on the existing trained models? Thanks :) | closed | 2021-12-17T07:55:37Z | 2021-12-29T04:01:00Z | https://github.com/ymcui/Chinese-BERT-wwm/issues/208 | [
"stale"
] | qhd1996 | 4 |
521xueweihan/HelloGitHub | python | 2,520 | 【开源自荐】信息管理系统:基于Koa2 + Vue2.7 + Vite3.x + Vuex + Vue-router + mysql开发的信息管理系统 | 项目名称:信息管理系统
基于Koa2 + Vue2.7(composition-api) + Vite3.x + vuex + vue-router + mysql开发的信息管理系统。
在当今信息化数据时代,个人信息属于个人财产的一部分,当然在这个时代会产生各种各样的数据,人的记忆力有限,所以很多时候都会忘记很多数据,使用本系统可以将个人信息数据进行管理。
如果大家觉得本项目不错的话,还望**点个star**,让我们共同进步!!!!
**项目地址**
- github: https://github.com/ischenliang/info-manage
- gitee: https://gitee.com... | closed | 2023-03-14T04:56:39Z | 2023-03-24T13:13:09Z | https://github.com/521xueweihan/HelloGitHub/issues/2520 | [] | ischenliang | 0 |
cleanlab/cleanlab | data-science | 808 | extend non-iid issue check in Datalab | Currently Datalab's non-iid issue type is only detected based on `features`:
https://docs.cleanlab.ai/master/cleanlab/datalab/guide/issue_type_description.html#non-iid-issue
If the user does not input `features`, but does provide` pred_probs`, run this same check based on the `pred_probs` instead (just treat them a... | closed | 2023-08-12T00:11:08Z | 2023-10-30T02:55:55Z | https://github.com/cleanlab/cleanlab/issues/808 | [
"enhancement",
"good first issue",
"help-wanted",
"hacktoberfest"
] | jwmueller | 3 |
Lightning-AI/LitServe | rest-api | 431 | Failing tests with `wrap_litserve_start` Never exit | ## 🐛 Bug: Failing tests with `wrap_litserve_start` Never exit
<!-- A clear and concise description of what the bug is. -->
### To Reproduce
1. Modify any test that uses `wrap_litserve_start` to force a failure.
2. Run the test and observe that it never exits.
<!-- If you have a code sample, error messages, stack tr... | closed | 2025-02-18T05:47:19Z | 2025-02-18T10:18:10Z | https://github.com/Lightning-AI/LitServe/issues/431 | [
"bug",
"help wanted"
] | bhimrazy | 0 |
adamerose/PandasGUI | pandas | 22 | Running it as an application | Sorry for noob question but I am trying to run the application on VS Code but once I execute show(df) as specified on the demo.py file, the GUI screen opens and closes right away. I am not sure if this tool is intended to run that way. Am I missing something?
I am also getting the following message:
MatplotlibDepre... | closed | 2020-07-17T05:02:21Z | 2020-07-19T18:57:51Z | https://github.com/adamerose/PandasGUI/issues/22 | [] | someoneonboard1 | 4 |
Lightning-AI/pytorch-lightning | pytorch | 19,761 | Apply the ignore of the `save_hyperparameters` function to args | ### Description & Motivation
Currently, the ignore parameter of the `save_hyperparameters` function only filters its own arguments.
Can we apply `hp = {k: v for k, v in hp.items() if k not in ignore}` before `obj._set_hparams(hp)`?

### Basic Example
Route that returns the current authenticated user o... | open | 2024-09-06T18:02:19Z | 2025-03-20T15:54:54Z | https://github.com/litestar-org/litestar/issues/3720 | [
"Enhancement"
] | gsakkis | 3 |
JaidedAI/EasyOCR | pytorch | 1,098 | AttributeError: 'ListDataset' object has no attribute 'folders' | Error happened under ubuntu 22.04. I had no problem with the same code in Windows
img=cv2.imread('res/image0.png',cv2.IMREAD_GRAYSCALE)
reader = easyocr.Reader(['en'])
result = reader.readtext(img,detail=0)
print(result) | open | 2023-07-28T05:34:44Z | 2023-07-28T05:34:44Z | https://github.com/JaidedAI/EasyOCR/issues/1098 | [] | hellohr11 | 0 |
ckan/ckan | api | 7,582 | ckanext-saml2auth | Hi,
I am trying to use the "SAML2 Authentication" extension in my CKAN 2.9.7 version. It is giving me some error, while this url work perfectly: https://dev-33rd3qjmd1757pd7.us.auth0.com/samlp/NMnoJCAIzfeARNrECDxYLRPbkguPnDI3
File "/usr/lib/ckan/venv/lib/python3.8/site-packages/saml2/mdstore.py", line 873, in loa... | closed | 2023-05-11T11:14:37Z | 2023-05-12T04:55:53Z | https://github.com/ckan/ckan/issues/7582 | [] | jktittalom | 2 |
AutoGPTQ/AutoGPTQ | nlp | 739 | Symptom Deployment using vllm fails after qwen_vl quantization: Using Exllamav2 backend will reorder the weights offline, thus you will not be able to save the model with the right weights.Setting `disable_exllama=True`. You should only use Exllamav2 backend for inference. | **quantization mode:**
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
gptq_config = GPTQConfig(bits=4, dataset=data_list, tokenizer=tokenizer, exllama=True, disable_exllama=True)
model = AutoModelForCausalLM.from_pretrained(model_id, quantization_config=gptq_config, trust_remote_code=Tru... | open | 2024-10-23T08:24:37Z | 2024-10-23T08:24:37Z | https://github.com/AutoGPTQ/AutoGPTQ/issues/739 | [] | Stark-zheng | 0 |
iperov/DeepFaceLab | deep-learning | 5,566 | RTX 2060 vs RTX 3060 Which One is better ? | Hi all,
Could anyone please suggest which gpu is better for DFL either rtx 2060 or rtx 3060? Is currently 3060 supported? | closed | 2022-09-22T14:30:59Z | 2022-09-23T15:35:44Z | https://github.com/iperov/DeepFaceLab/issues/5566 | [] | jacksparrow757 | 2 |
huggingface/datasets | pytorch | 7,241 | `push_to_hub` overwrite argument | ### Feature request
Add an `overwrite` argument to the `push_to_hub` method.
### Motivation
I want to overwrite a repo without deleting it on Hugging Face. Is this possible? I couldn't find anything in the documentation or tutorials.
### Your contribution
I can create a PR. | closed | 2024-10-20T03:23:26Z | 2024-10-24T17:39:08Z | https://github.com/huggingface/datasets/issues/7241 | [
"enhancement"
] | ceferisbarov | 9 |
svc-develop-team/so-vits-svc | deep-learning | 13 | cuda out of memory | File "D:\so-vits-svc\inference_main.py", line 51, in <module>
out_audio, out_sr = svc_model.infer(spk, tran, raw_path)
File "D:\so-vits-svc\inference\infer_tool.py", line 224, in infer
audio = self.net_g_ms.infer(x_tst, f0=f0, g=sid)[0,0].data.float()
File "D:\so-vits-svc\models.py", line 346, in infe... | closed | 2023-03-12T13:21:31Z | 2023-03-14T08:27:33Z | https://github.com/svc-develop-team/so-vits-svc/issues/13 | [] | ronrah20 | 1 |
graphql-python/graphene-django | graphql | 649 | Filtering using Django Integer Choices | Hey guys, I am a real noob with GraphQL, but I think I found a bug, I am trying to filter using an integer choice, below you will see the definitions:
*models.py*
```python
class Event(models.Model):
KIND_XXX = 1
KIND_CHOICES = (
(KIND_XXX, "Dummy description"),
)
name = models.CharFie... | closed | 2019-05-24T03:56:04Z | 2019-05-31T17:46:00Z | https://github.com/graphql-python/graphene-django/issues/649 | [
"🐛bug",
"help wanted"
] | robertpro | 13 |
ultralytics/ultralytics | pytorch | 19,647 | Why does accuracy drop to 0.0 during training? | ### 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
With my dataset I have this training history:
 on training the base ECAPA-TDNN model as... | open | 2024-05-29T14:45:16Z | 2024-05-29T14:45:16Z | https://github.com/microsoft/unilm/issues/1568 | [] | stevehuang52 | 0 |
Lightning-AI/pytorch-lightning | machine-learning | 20,586 | Setting num_sanity_val_steps = -1 Disables Sanity Check Instead of Running All Batches | ### 📚 Documentation
**Description:**
The [documentation](https://github.com/Lightning-AI/pytorch-lightning/blob/2.5.0/src/lightning/pytorch/trainer/trainer.py#L211) indicates that `setting num_sanity_val_steps` to `-1` a sanity check is run on all validation batches. However, in [Trainer._run_sanity_check](https://gi... | open | 2025-02-12T09:57:00Z | 2025-02-12T09:58:57Z | https://github.com/Lightning-AI/pytorch-lightning/issues/20586 | [
"docs",
"needs triage"
] | RaphaelLilt | 0 |
PokeAPI/pokeapi | graphql | 414 | Meltan and Melmetal Pokémon Missing | Database is missing Meltan (808) and Melmetal (809) originally discovered in Pokemon GO, usable in Pokemon Lets Go. | closed | 2019-02-03T15:00:58Z | 2019-05-15T07:14:23Z | https://github.com/PokeAPI/pokeapi/issues/414 | [] | shilangyu | 6 |
pandas-dev/pandas | data-science | 60,348 | DOC (string dtype): update user guide page "Working with text data" | With the new default string dtype in pandas 3.0, we should update the documentation to properly reflect this. The main page about working with string data is https://pandas.pydata.org/pandas-docs/version/2.2/user_guide/text.html
This page currently mentions `object` dtype vs nullable `StringDtype`, some differences,... | open | 2024-11-17T12:38:51Z | 2024-12-10T00:47:22Z | https://github.com/pandas-dev/pandas/issues/60348 | [
"Docs",
"Strings"
] | jorisvandenbossche | 5 |
aeon-toolkit/aeon | scikit-learn | 2,429 | [ENH] Distances cost functions: default to absolute? | ### Describe the feature or idea you want to propose
after discussions with authors of this paper
https://link.springer.com/article/10.1007/s10618-023-00926-8
the point was made that it might be better to make *all* distance functions default to the absolute pointwise difference rather than the squared value. We... | open | 2024-12-08T08:24:41Z | 2025-03-16T12:07:42Z | https://github.com/aeon-toolkit/aeon/issues/2429 | [
"enhancement",
"distances"
] | TonyBagnall | 3 |
giotto-ai/giotto-tda | scikit-learn | 36 | CI pipelines should build wheels only when manually triggered | #### Description
Automatic wheels building takes too much time and his often unnecessary. | closed | 2019-10-18T16:25:53Z | 2019-12-26T22:36:22Z | https://github.com/giotto-ai/giotto-tda/issues/36 | [] | gtauzin | 1 |
nvbn/thefuck | python | 1,112 | [Bug] Key error when running thefuck on termux | ( I will be crossposting it to termux's issues as well because I don't know if it's a problem with termux https://github.com/termux/termux-app/issues/1646 )
<!-- If you have any issue with The Fuck, sorry about that, but we will do what we
can to fix that. Actually, maybe we already have, so first thing to do is to... | open | 2020-07-13T14:01:55Z | 2024-11-02T18:18:09Z | https://github.com/nvbn/thefuck/issues/1112 | [
"documentation"
] | hXtreme | 23 |
jmcnamara/XlsxWriter | pandas | 513 | AttributeError: 'Workbook' object has no attribute 'get_default_url_format' | using version 1.0.2
This code doesn't work
```
url_format = workbook.get_default_url_format()
url_format.set_align('center')
```
But the following code works (and it's not document feature I think):
```
url_format = workbook.default_url_format
url_format.set_align('center')
``` | closed | 2018-04-24T16:48:24Z | 2018-04-24T20:20:25Z | https://github.com/jmcnamara/XlsxWriter/issues/513 | [
"question",
"short term"
] | AleksMeshkov | 1 |
tox-dev/tox | automation | 2,695 | Regression / behaviour change: install_command with empty evaluated value | ## Issue
Somewhere between `tox` versions 3.21.4 and 4.0.8, running `tox` began raising an `IndexError` exception when using the `tox.ini` file provided as a minimal repro case.
## Environment
- Linux
- Python 3.9
- Tox version 4.0.8
```console
$ pip list
Package Version
------------- -------
cachet... | closed | 2022-12-13T13:19:52Z | 2023-06-17T01:18:19Z | https://github.com/tox-dev/tox/issues/2695 | [
"area:documentation",
"help:wanted"
] | jayaddison | 18 |
Lightning-AI/pytorch-lightning | data-science | 19,964 | Documentation: writing custom samplers compatible with multi GPU training | ### 📚 Documentation
Hi,
I'm trying to run distributed training with a custom sampler for the first time. The idea is rather simple (fixed budget for each class) and works fine in single GPU. When moving to multi GPU, unsurprisingly I get an error message, which tells me that I should subclass `BatchSampler`.
```
... | open | 2024-06-10T12:46:47Z | 2024-06-25T20:30:43Z | https://github.com/Lightning-AI/pytorch-lightning/issues/19964 | [
"help wanted",
"docs"
] | fteufel | 0 |
simple-login/app | flask | 1,616 | One-click unsubscribe preservation no longer working | I have the "One-click unsubscribe" feature set to "Preserve the original unsubscribe policy" because certain sieve rules I have are expecting emails from a single sender address but either including or not including a "list-unsubscribe" header.
Since January of 2023, I have noticed that all emails I receive that are... | closed | 2023-03-03T20:01:56Z | 2024-08-05T09:22:34Z | https://github.com/simple-login/app/issues/1616 | [] | AdmiralShinysides | 13 |
ydataai/ydata-profiling | pandas | 935 | `infer_dtypes` doesn't appear to work | **Describe the bug**
My use case is when tables have an _ID_ column that are intergers, but should really just be treated as a categorical variable. When setting `infer_dtypes` for the profile report though, it still ends up treating them as a number.
**To Reproduce*
```python
>>> from string import ascii_low... | open | 2022-03-02T22:04:26Z | 2022-08-27T17:40:02Z | https://github.com/ydataai/ydata-profiling/issues/935 | [
"question/discussion ❓"
] | mbkupfer | 3 |
jina-ai/clip-as-service | pytorch | 176 | How to get lower dimentions of word embedding? | Thank you very much! I use your serving for my work to embed words,but 768 dimension seems too large for my computer to train my model.
I see you replied someone these sentences before: "if you want 256-dimensional vector, either add a dense(num_units=256) then train on some downstream task, or do subsampling directl... | closed | 2019-01-07T07:02:51Z | 2019-01-14T01:48:18Z | https://github.com/jina-ai/clip-as-service/issues/176 | [] | zysNLP | 3 |
dask/dask | pandas | 10,859 | pyright: "read_parquet" is not exported from module "dask.dataframe" | **Describe the issue**:
For those who use `pyright` for type hinting, `dask.dataframe.read_parquet` throws the following `reportPrivateImportUsage` error: `"read_parquet" is not exported from module "dask.dataframe"`
This also occurs with `dask.dataframe.read_csv`. I haven't tested any other IO-related methods.
... | closed | 2024-01-25T14:15:28Z | 2024-01-25T18:47:37Z | https://github.com/dask/dask/issues/10859 | [
"needs triage"
] | dluks | 1 |
ranaroussi/yfinance | pandas | 1,757 | Missing 5 min interval data when prepost is set to True | ### Describe bug
Some of the 5m (5m interval /1day period) candles are missing e.g. 9:15, 9:20, 9:25 candles are missing when prepost is set to true.
### Simple code that reproduces your problem
print("*******************Yahoo Test Start********************")
#### Yahoo Test Start
import yfinance as y... | closed | 2023-12-04T15:21:19Z | 2024-03-16T11:46:08Z | https://github.com/ranaroussi/yfinance/issues/1757 | [] | chotaGit | 4 |
mitmproxy/mitmproxy | python | 6,478 | Add general search capability in CLI | #### Problem Description
I want to search the events view for a particular string of text when using the CLI.
#### Proposal
Add a general search capability in the CLI.
#### Alternatives
Scroll and search manually for whatever I want.
#### Additional context
`f` doesn't do anything in the events view.
| open | 2023-11-12T11:11:42Z | 2023-11-12T11:11:42Z | https://github.com/mitmproxy/mitmproxy/issues/6478 | [
"kind/feature"
] | segevfiner | 0 |
reloadware/reloadium | flask | 76 | Reloadium experienced a fatal error and has to quit. | Hi Reloadium, I have encountered following issue:
## Describe the bug
I would like to use reloadium in order to debug my remote code. Unfortunately, when I click on debug I get the following error:
<img width="777" alt="image" src="https://user-images.githubusercontent.com/44685678/205290701-89ada685-d320-4ea0-a... | closed | 2022-12-02T12:19:02Z | 2023-05-28T17:04:21Z | https://github.com/reloadware/reloadium/issues/76 | [] | TS9001 | 12 |
biolab/orange3 | data-visualization | 6,659 | Edit Domain forgets changes on re-loading of saved workflows. | HI, I am working with version 3.36.1 on a windows enviroment and Edit Domain forgot my settings. I had already renamed over 100 values (complex names and categories). This was quite frustrating. It was even more frustrating to find out that it was supposed to have been fixed already.
The work flow goes from import ... | closed | 2023-11-27T19:14:51Z | 2023-11-28T14:06:07Z | https://github.com/biolab/orange3/issues/6659 | [
"bug report"
] | AOSTern | 1 |
iterative/dvc | data-science | 9,860 | Different `train` stage `metrics` and `params` paths relative to Git repo root | I just had a long running queued experiment finish. The results of it are shown in the Experiments table. However, the paths of the `params.yaml` and `metrics.json` file have changed and are different for previously run experiments and this latest one. I haven't changed my `dvc.yaml` file. I have updated my DVC VS Code... | closed | 2023-08-17T20:02:59Z | 2023-10-12T20:44:30Z | https://github.com/iterative/dvc/issues/9860 | [
"bug",
"awaiting response",
"A: experiments"
] | aschuh-hf | 13 |
pennersr/django-allauth | django | 3,396 | Keycloak provider broken in version 0.55 | In version 0.55 of django-allauth, the keycloak provider is broken because the callback url is hardcoded by OpenIDConnectAdapter at https://github.com/pennersr/django-allauth/blob/0.55.0/allauth/socialaccount/providers/openid_connect/views.py#L60, using "openid_connect_callback" URL name instead of "keycloak_callback")... | closed | 2023-08-28T15:46:05Z | 2023-09-07T09:14:13Z | https://github.com/pennersr/django-allauth/issues/3396 | [] | antoinehumbert | 10 |
PaddlePaddle/PaddleHub | nlp | 2,217 | paddlehub和paddlepaddle2.2.0版本numpy冲突 | 安装paddlehub和paddlepaddle,paddlepaddle numpy版本要求<16,paddlehub要求大于>19,这个怎么解决呢 | open | 2023-03-02T06:12:58Z | 2024-02-26T05:00:01Z | https://github.com/PaddlePaddle/PaddleHub/issues/2217 | [] | winbina | 1 |
modelscope/data-juicer | streamlit | 372 | [Bug]: librosa not work with np>1 | The involved OPs, such as `audio_duration_filter` and `audio_nmf_snr_filter`, encounter errors when `np > 1`. Initial diagnosis points to an issue with librosa.

 for similar issues.
- [x] I added a very descriptive title to this issue.
- [x] I have provided sufficient information below to help reproduce this issue.
### Summary
I'm using Nginx as a reverse proxy for my Str... | closed | 2025-02-04T22:11:57Z | 2025-02-22T04:03:01Z | https://github.com/streamlit/streamlit/issues/10341 | [
"type:bug",
"status:needs-triage"
] | busbaby | 5 |
seleniumbase/SeleniumBase | pytest | 3,578 | Disable the download bubble partial view by default | ## Disable the download bubble partial view by default
That bubble appears when downloading files. It can probably be disabled by default.
<img width="340" alt="Image" src="https://github.com/user-attachments/assets/158948d4-a7f9-4e6e-9703-0d9d00baa341" />
| closed | 2025-03-04T18:52:22Z | 2025-03-05T07:51:31Z | https://github.com/seleniumbase/SeleniumBase/issues/3578 | [
"enhancement"
] | mdmintz | 2 |
gunthercox/ChatterBot | machine-learning | 2,401 | Prince bot | Bot king 👑 | closed | 2025-03-14T15:56:30Z | 2025-03-14T21:21:14Z | https://github.com/gunthercox/ChatterBot/issues/2401 | [] | Farukali0 | 2 |
twopirllc/pandas-ta | pandas | 359 | Increasing using percent parameter while strict = False | Hello,
first things first, thanks for the great work.
However, I think I encountered a probable issue, assuming I understood the function and its parameters correctly, with the function increasing when passing the precent argument while passing strict = False.
**Which version are you running? The lastest version i... | closed | 2021-07-30T16:26:47Z | 2022-02-09T17:18:55Z | https://github.com/twopirllc/pandas-ta/issues/359 | [
"bug"
] | m4rc3l-h3 | 1 |
albumentations-team/albumentations | machine-learning | 1,861 | Image and mask augmentations cause error when converting NumPy to PyTorch - [ValueError: At least one stride in the given numpy array is negative, and tensors with negative strides are not currently supported.] | ## Describe the bug
In versions 1.4.11 and 1.4.12, operations such as `RandomRotate90`, `ChannelShuffle`, and `ToFloat`, sometimes create negative strides. These strides are not supported in PyTorch and result in an error when using `ToTensorV2`.
When using albumentations version 1.4.10, the image and mask transf... | closed | 2024-07-30T15:25:52Z | 2024-07-31T14:25:27Z | https://github.com/albumentations-team/albumentations/issues/1861 | [
"bug"
] | KeithGeorgeCiantar | 5 |
ydataai/ydata-profiling | data-science | 743 | Pandas profiling becoming too slow : un-usable | With 10k rows and 30 columns, it takes more than 2mins to generate a report...
Pandas profiking becomes more and more slow...
Can you run benchmark tests ? | open | 2021-03-31T08:30:48Z | 2023-05-12T02:56:03Z | https://github.com/ydataai/ydata-profiling/issues/743 | [
"performance 🚀"
] | arita37 | 11 |
huggingface/peft | pytorch | 1,457 | Size mismatch error when loading model with added tokens using peft_model.save_pretrained | ### System Info
peft: 0.8.2
accelerate: 0.27.0
transformers: 4.37.2
torch: 2.2.0+cu118
python: 3.10.6
### Who can help?
@pacman100 @younesbelkada
### Information
- [ ] The official example scripts
- [X] My own modified scripts
### Tasks
- [ ] An officially supported task in the `examples` fold... | closed | 2024-02-12T18:58:40Z | 2024-12-17T14:24:47Z | https://github.com/huggingface/peft/issues/1457 | [] | Rizvanov-Rinat | 6 |
numpy/numpy | numpy | 28,038 | TYP: `nditer` does not allow `None`-valued elements in operand sequence | ### Describe the issue:
Passing `None`-valued elements next to array_like-valued elements in a sequence as operands to `nditer` is part of the documented idiom of [iterator-allocated output arrays](https://numpy.org/doc/stable/reference/arrays.nditer.html#iterator-allocated-output-arrays). Mentions of this can also be... | closed | 2024-12-19T15:08:57Z | 2024-12-20T14:09:02Z | https://github.com/numpy/numpy/issues/28038 | [
"41 - Static typing"
] | simonaltrogge | 2 |
deepinsight/insightface | pytorch | 2,543 | Inference code for dml_csr | Hello, I would like to ask if you can provide the inference code of dml_csr? I need to generate pseudo labels for some faces | open | 2024-03-14T07:15:14Z | 2024-03-14T07:15:14Z | https://github.com/deepinsight/insightface/issues/2543 | [] | winner-4 | 0 |
encode/uvicorn | asyncio | 2,000 | Slow reload on Windows 10 using PyCharm | ### Discussed in https://github.com/encode/uvicorn/discussions/1977
<div type='discussions-op-text'>
<sup>Originally posted by **adhihargo** May 14, 2023</sup>
Uvicorn used to work fine in my dev laptop running Windows 10, but now every time there's a modified change, it stuck in this line:
`WARNING: WatchFi... | open | 2023-06-08T12:58:16Z | 2025-03-20T15:01:36Z | https://github.com/encode/uvicorn/issues/2000 | [
"bug"
] | Kludex | 16 |
pallets/quart | asyncio | 350 | Hot reload cause a permission denied error in docker container |
Hot reload cause a permission denied error in docker container:
```
Traceback (most recent call last):
File "/app/z.py", line 9, in <module>
app.run()
File "/usr/local/lib/python3.11/site-packages/quart/app.py", line 864, in run
restart()
File "/usr/local/lib/python3.11/site-packages/quart/util... | open | 2024-06-20T12:07:40Z | 2024-06-25T23:16:20Z | https://github.com/pallets/quart/issues/350 | [] | cooolinx | 2 |
ymcui/Chinese-LLaMA-Alpaca | nlp | 407 | 灾难性遗忘 | 请问各位大佬,你们在用自己的数据继续训练Plus模型,得到的内容会出现模型通用能力变差的情况吗 | closed | 2023-05-22T16:20:58Z | 2023-05-28T09:53:05Z | https://github.com/ymcui/Chinese-LLaMA-Alpaca/issues/407 | [] | zhangatao | 6 |
plotly/dash | data-science | 3,186 | Make sure that external_stylesheets style doesn't apply to the dev tools | See #3185 for an example of an issue that arises when external stylesheets are loaded and can override the css in dev tools | open | 2025-02-24T21:43:35Z | 2025-02-28T17:39:35Z | https://github.com/plotly/dash/issues/3186 | [
"bug",
"P1",
"cs"
] | marthacryan | 2 |
collerek/ormar | pydantic | 554 | enhancement in get_or_create | In Django, we have `get_or_create(defaults=None, **kwargs)`.
It helps when we want to get a object with a specific field but if the object does not exist, create it with some additional values.
This is how it's done in Django:
```python
obj, created = Person.objects.get_or_create(
first_name='John',
... | closed | 2022-01-31T08:22:17Z | 2022-03-28T16:50:31Z | https://github.com/collerek/ormar/issues/554 | [
"enhancement"
] | mojixcoder | 4 |
strawberry-graphql/strawberry | asyncio | 2,781 | SchemaExtension uses different task than query/mutation. | <!-- Provide a general summary of the bug 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 in the final text. -->
## Describe the Bug
<!-- A clear and concise ... | open | 2023-05-24T10:48:44Z | 2025-03-20T15:56:11Z | https://github.com/strawberry-graphql/strawberry/issues/2781 | [
"bug"
] | kkjot88 | 0 |
pandas-dev/pandas | pandas | 60,496 | ENH: astype(object) does not convert numpy strings to str | ### Pandas version checks
- [X] I have checked that this issue has not already been reported.
- [X] I have confirmed this bug exists on the [latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of pandas.
- [X] I have confirmed this bug exists on the [main branch](https://pandas.pydata.org/docs/dev/ge... | open | 2024-12-05T13:02:11Z | 2024-12-09T23:29:05Z | https://github.com/pandas-dev/pandas/issues/60496 | [
"Enhancement",
"Strings",
"Closing Candidate"
] | aktobii | 3 |
tqdm/tqdm | jupyter | 1,250 | Cannot set the float digit number | - [x] I have marked all applicable categories:
+ [x] exception-raising bug
+ [ ] visual output bug
- [x] I have visited the [source website], and in particular
read the [known issues]
- [x] I have searched through the [issue tracker] for duplicates
- [x] I have mentioned version numbers, operating syste... | open | 2021-09-22T11:20:26Z | 2024-11-01T14:46:23Z | https://github.com/tqdm/tqdm/issues/1250 | [] | q-wertz | 3 |
robotframework/robotframework | automation | 4,745 | Impossible to combine 'Templates with FOR loops' and individual Setup invocations | I'd like to find a way to take a variable set of test data and run it trough a test scenario with individual test setup & teardown invocations.
I have a Variables file that lists a number of scenario parameters. I want to have robot run a Test Template with all of the scenarios defined in the file. Optionally skippi... | closed | 2023-04-21T14:25:36Z | 2023-04-24T13:12:16Z | https://github.com/robotframework/robotframework/issues/4745 | [] | dries007 | 2 |
gunthercox/ChatterBot | machine-learning | 1,832 | ChatterBot does not get trained with ubuntu corpus | I can not train the bot with ubuntu corpus.
my code is:
```
# import ChatBot
from chatterbot import ChatBot
# import Trainer
from chatterbot.trainers import UbuntuCorpusTrainer
bot = ChatBot('Zeus')
# Training
trainer = UbuntuCorpusTrainer(bot)
print("url: ", trainer.data_download_url)
print("data dir: "... | open | 2019-10-13T20:49:46Z | 2020-08-25T16:59:10Z | https://github.com/gunthercox/ChatterBot/issues/1832 | [] | demosthenesk | 1 |
PaddlePaddle/models | nlp | 5,735 | paddle LAC模型输出模型报告问题。 | 您好,我在使用LAC实体提取模型,训练后像输出模型报告遇到了问题,他的真实序列和预测序列好像和训练模型的标签不太一致,有什么好的建议么?

| closed | 2023-08-15T03:17:55Z | 2023-08-15T06:41:21Z | https://github.com/PaddlePaddle/models/issues/5735 | [] | rap8 | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.