text stringlengths 20 57.3k | labels class label 4
classes |
|---|---|
Title: 'TextClassifier' object has no attribute 'embeddings'
Body: TARSClassifier.load error
AttributeError Traceback (most recent call last)
<ipython-input-13-710c2b4d40e4> in <module>
----> 1 tars = TARSClassifier.load('/content/drive/MyDrive/Text_classification/final-model.pt')
2 ... | 1medium |
Title: How to plot Matplotlib's surfaces?
Body: I'm exploring the possibility to use K3D-Jupyter as a plotting library for [SymPy](https://github.com/sympy/sympy/), instead of relying on Matplotlib which is quite slow in a notebook. However, it seems like there is no function/object capable of using the data format use... | 1medium |
Title: Support stable diffusion model
Body: can i use stable diffusion model with petals? | 1medium |
Title: RAM consumption of TimeSeriesDataset
Body: I have a dataframe that consumes aprox 10 G in memory. when i try to build the TimeSeriesDataset, it consumes >30G in memory (making explode my RAM). I know It makes sense because the time series dataset is a bigger structure than the dataframe.
How much can the mem... | 1medium |
Title: size mismatch error
Body: When I run the "python3 app.py" for demo, it cannot load the pretrained model naver-clova-ix/donut-base-finetuned-docvqa, there is a size miss match error
pretrained_model = DonutModel.from_pretrained(args.pretrained_path)
File "/home/local/Project/chart/donut/donut/model.py",... | 1medium |
Title: quiet mode execution
Body: Currently there are a ton of messages are printed. Is there a way to mute all or part of the messages? | 1medium |
Title: The resend_activation endpoint discloses if a user with a given email exists
Body: The `resend_activation` endpoint returns a 400 response if the given email does not belong to an (inactive) user.
This endpoint re-uses the password reset serializer (#555) but does not respect the `PASSWORD_RESET_SHOW_EMAIL_NO... | 1medium |
Title: ModuleNotFoundError: No module named 'models.yolo'.
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
I have finetuned my mode... | 1medium |
Title: [Bug]: Auto Run script fails with error
Body: ### Commit before submitting
- [x] I understand that Issues are used to provide feedback and solve problems, not to complain in the comments section, and will provide more information to help solve the problem.
- [x] I have checked the top Issue and searched for exi... | 1medium |
Title: Bug: Spigo demo in Python3
Body: Change import to:
```
try:
import urllib.request as urllib2
except ImportError:
import urllib2
``` | 0easy |
Title: Issue running vwap with dataframe index from yFinance data
Body: **Which version are you running? The lastest version is on Github. Pip is for major releases.**
```python
import pandas_ta as ta
print(ta.version)
```
0.3.14b0
**Do you have _TA Lib_ also installed in your environment?**
```sh
$ pip list
... | 1medium |
Title: generate template error: Stopping generation because post_gen_project hook script didn't exit successfully
Body: # Image

# Error Info
`
E:\Code>fastapi_template
Project name: fastapi_template_t... | 1medium |
Title: ManyToMany for SQLAlchemy
Body: I've trying to get M2M field working with SQLAlchemy. Following the documentation
```
class LandingPageFactory(alchemy.SQLAlchemyModelFactory):
FACTORY_FOR = LandingPage
FACTORY_SESSION = db.session
name = Sequence(lambda n: u'Landing Page %d' % n)
class LPRotatorFa... | 1medium |
Title: module 'keras.utils' has no attribute 'PyDataset'
Body: I have correctly installed version 3.0.5 of keras and used pytorch for the backend, but it always prompts module 'keras. utils' has no attribute' PyDataset '. How can I solve this problem? | 1medium |
Title: favorable
Body: coolest idea | 3misc |
Title: top10_floatholders 和 top10_holders 接口缺少 2006 年数据
Body: top10_floatholders 和 top10_holders 接口缺少 2006 年数据的 4 个季度数据,其他年份正常
tushare id: 224776

| 1medium |
Title: Geocoder with own locations
Body: Greetings, i slightly edited geocoder such that it can now accept your own places.
https://github.com/JohnyCarrot/folium-geocoder-own-locations
Hope someone find it usefull. | 3misc |
Title: How to compute metrics for each class in multi class segmentation
Body: I would compute the metrics individually for each class so I would like to have in output a (1xC) vector where C is the number of classes, I was trying like this but it throws me an error:
```
output = torch.rand([10, 3, 256, 256])
target... | 1medium |
Title: Websockets RuntimeError "This event loop is already running"
Body: When I'm trying to run a websocket, then in some time stop it, and run a new websocket, the following error occurs:
Exception in thread Thread-2:
Traceback (most recent call last):
File "D:\python\Python39\lib\threading.py", line 950, in... | 1medium |
Title: 以界面模式启动,程序未响应后关闭重新启动,无法显示出界面
Body: **Summary[问题简述(一句话)]**
以界面模式启动,程序未响应后关闭重新启动,无法显示出界面
**Env & To Reproduce[复现与环境]**
python3.7.9
`python demo_toolbox.py -d dataset` 以界面模式启动后,点击 load above 然后在右侧输入框输入文字时候卡住,程序未响应。关闭后再次启动程序则不出现界面。
**Screenshots[截图(如有)]**
. The image's (0,0) is defined as the top left of the image. I'd like the y slider to start with 0 at the top, and end with the height of the image at... | 1medium |
Title: Update c-ares version to 1.19.1
Body: * gevent version: 22.10.2 from PyPI
* Python version: python 3.11.3
* Operating System: docker python:latest
### Description:
Update c-ares version to 1.19.1 (it is the latest version as of today: https://c-ares.org). It is not a bug with the gevent itself, but with ... | 1medium |
Title: training failed
Body: we have a large dataset that contains 1m tables..tained on yolov11x model..
```
def model_train(data_yaml_path):
model = YOLO('yolo11x.pt')
data = Path(data_yaml_path)
results = model.train(data=data, epochs=10, imgsz=800, patience=2, cls=0.25, box=0.05, project="final-table-de... | 2hard |
Title: [Feature request] Add apply_to_batch
Body: There is request how to apply to video or to batch.
Albumentations was not originally designed to be applied to batch.
But it looks like we can add such functionality without too much pain, by just looping over frames with annotations.
Related to:
https://git... | 1medium |
Title: Question - how do I mark fields as minLength 0 and nullable?
Body: I have an app using DRF 3.8.2, Django 1.11.16, and drf-yasg 1.10.2. Schema generation works, but I tried to add automated test cases to verify that the response matches the generated schema.
I have a CharField on a ModelSerializer that is... | 1medium |
Title: better dependency manager for project
Body: currently marzban use pip to manage dependencies.
using pip can lead to some problems and always we need some 3rd party programs as venv
we can replace pip with [uv ](https://docs.astral.sh/uv/) to avoid this and have better dependency manager. | 1medium |
Title: parameter alpha in focal loss is not the same as that of paper
Body: ### Describe the bug
The parameter alpha in focal loss is a scalor, so it couldn't has the effect of balanced the different classes. I think alpha should be a tensor with n_classses element and every value refers to the weiht of this class
#... | 1medium |
Title: Reconsider HttpClient interface
Body: As of now, the python `BaseHttpClient` look like this:
https://github.com/apify/crawlee-python/blob/beac9fa0eb415caafc04cdaef2888e77fad915e0/src/crawlee/http_clients/_base.py#L55
It has two methods, `send_request` and `crawl`. This is the first iteration of decoupled H... | 2hard |
Title: 训练时出错:RuntimeError: Error(s) in loading state_dict for Tacotron:
Body: Arguments:
run_id: mandarin
syn_dir: k:/mockingbird/datame/SV2TTS/synthesizer
models_dir: synthesizer/saved_models/
save_every: 1000
backup_every: 25000
log_every: 200
for... | 1medium |
Title: Cannot install cartopy in Scientific Linux
Body: ### Description
<!-- Please provide a general introduction to the issue/proposal. -->
Cartopy cannot be installed on Scientific Linux because the newest available version of `proj` is 4.8.0 and cartopy requires 4.9.0. I'm not sure why `setup.py` checks the syste... | 1medium |
Title: Loading up Json_files built and trained in Keras 2 for Keras 3
Body: Using Keras 3, I am trying to load up a built and trained model from Keras 2 API that is stored in .json with weights stored in .h5. The model file is the following: [cnn_model.json](https://github.com/user-attachments/files/16462021/cnn_model... | 2hard |
Title: Instance Segmentation vs Object Detection
Body: I would like to find out whether it is better to use instance segmentation or object detection to classify vehicles and count them, in the case of traffic congestion.
From my experience, traffic congestion has a lot of occlusion for bounding box to be accurate... | 1medium |
Title: Router cannot find endpoint with id parameter
Body: ### Issue
When trying to hit an endpoint with an integer variable in the URL, flask-restx responds with
`{
"message": "The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again. You have reque... | 1medium |
Title: Code for simple for throws PydanticImportError
Body: <!--
Thanks for reporting a bug 🙌 ❤️
Before opening a new issue, please make sure that we do not have any duplicates already open. You can ensure this by searching the issue list for this repository. If there is a duplicate, please close your issue and ad... | 1medium |
Title: Does tracking mode support NMS threshold?
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/discussions) and found no similar questions.
### Question
I'm currently using Y... | 1medium |
Title: Card layouts break and overlap when in a container of a constrained size and expanded
Body: <details>
<summary>Software Version Info</summary>
```plaintext
panel == 1.6.1
```
</details>
#### Description of expected behavior and the observed behavior
I expect the cards to respect the overflow property of th... | 1medium |
Title: bug: "include" returns deleted relationships also
Body: I have a one to many relationship between Track and Session i.e. a Track can have multiple associated sessions but a session has only one associated Track.
**TrackSchema**
```Python
sessions = Relationship(attribute='sessions',
... | 1medium |
Title: load_dataset("livecodebench/code_generation_lite", version_tag="release_v2") TypeError: 'NoneType' object is not callable
Body: ### Describe the bug
from datasets import load_dataset
lcb_codegen = load_dataset("livecodebench/code_generation_lite", version_tag="release_v2")
or
configs = get_dataset_config_name... | 1medium |
Title: 'deepface.commons.functions' has no attribute 'preprocess_face'
Body: I'm trying to call DeepFace.stream() (library 0.0.78 installed from pip)
but get an error message
```
AttributeError: module 'deepface.commons.functions' has no attribute 'preprocess_face'
``` | 1medium |
Title: Support multithreaded profiling
Body: Thanks for pyintrument - it's incredibly useful
I had need to trace a multithreaded python app and examine the relationship between threads. Obviously in some cases multithreading can be a little interesting in python, but in this particular case works well.
I have ex... | 2hard |
Title: MIME Type of the generated xlsx file
Body: Title: Issue with MIME Type of the generated xlsx file
Hello,
I am using XlsxWriter to generate excel files (obviously), no problem on the generation part but when I check the MIME type of the generated file, it's not what it should be.
I am using Python versio... | 1medium |
Title: How patch chromedriver.exe with your package?
Body: Hello, could you please guide me on how I can patch the chromedriver.exe file using your package and use that Chrome driver file in a project that is not in Python? Thank you. | 1medium |
Title: [BUG] xdeepfm error in AzureML test
Body: ### Description
<!--- Describe your issue/bug/request in detail -->
```
@pytest.mark.gpu
@pytest.mark.notebooks
@pytest.mark.integration
@pytest.mark.parametrize(
"syn_epochs, criteo_epochs, expected_values, seed",
[
(... | 2hard |
Title: Populate Slack Welcome message
Body: Context:
Currently, we will send the user a welcome message when user joins the Ploomber Slack Workspace.
We may consider to provide the list of our current links.
Example - Ideal After:
<img width="768" alt="Screenshot 2023-01-02 at 9 26 32 PM" src="https://user-images... | 1medium |
Title: Unable to install requirements.txt missing
Body: ### Description
Unable to install on windows 10
### Steps to Reproduce
pip install Scrappy
**Expected behavior:** [What you expect to happen]
No Errores
**Actual behavior:** [What actually happens]
Collecting Scrappy
Using cached Scrappy-0.3.0.... | 1medium |
Title: Incorrect model schema generation
Body: Hi, I made a dynamic model serializer `UserCouponSerializer`, the fields of which vary according to `fields` argument passed when it initialized. If `fields` is None, it includes all fields of its model. The code is below.
```
class DynamicFieldsModelSerializer(seriali... | 2hard |
Title: Redesign SQLAlchemy dialect layout
Body: https://github.com/sqlalchemy/sqlalchemy/blob/main/README.dialects.rst | 2hard |
Title: Django Admin not loading css
Body: **Server Info (please complete the following information):**
- OS: Debian 11
- Browser: Chrome
- RMM Version (as shown in top left of web UI): v0.15.12
**Installation Method:**
- [X] Standard
- [ ] Docker
**Describe the bug**
The Django Admin page doesn't loa... | 1medium |
Title: Gradio Block() can't detect imported library like numpy in jupyter notebook
Body: ### Describe the bug
Exact issue described here is still valid but I cannot reopen this ticket https://github.com/gradio-app/gradio/issues/3625
Gradio fails to pull imports on reload
### Have you searched existing issues? 🔎
-... | 1medium |
Title: [BUG] Beanie projection and Pydantic Schema do not play well together
Body: **Describe the bug**
Beanie projections are expecting an "_id" field, but Pydantic schema expect "id". This makes it impossible to use the same Schema and create duplicated code (unless I’m missing the proper method to do it)
**To Re... | 1medium |
Title: Empty report when running GPTR on Docker with Windows
Body: **Describe the bug**
I'm running gpt-researcher with Docker. When I try to use Deep Researcher, it runs with no problems, but the output that it produces is empty. So, it provides a doc file that is empty.
**To Reproduce**
I have not made any changes, ... | 1medium |
Title: Non-deterministic results based on group_max_seq_len in NaViT
Body: I'm having trouble understanding what the various parameters do, even after reading the source code.
Specifically, I'm wondering what group_max_seq_len does, and why it has non-deterministic results? For example:
```
v = NaViT(patch_size=60... | 2hard |
Title: Random 'Segmentation fault (core dumped)' error when training for long spancat
Body: Hi,
I am getting 'Segmentation fault (core dumped)' when trying to train model for long SpanCat. I know this error could be related to OOM issues but this does not seem the case here. I tried to reduce [nlp] batch_size and [tra... | 2hard |
Title: Please install TA-Lib to use 2crows. (pip install TA-Lib) message ...
Body: **Which version are you running? The lastest version is on Github. Pip is for major releases.**
```python
import pandas_ta as ta
print(ta.version)
```
0.3.14b0
**Do you have _TA Lib_ also installed in your environment?**
```sh
... | 1medium |
Title: CockroachDB + SQLAlchemy trouble
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 reproduces
the pr... | 1medium |
Title: TypeError: cannot unpack non-iterable NoneType object
Body: ## generating video: 1 => ./storage/tasks/a240439d-b011-484d-8aa8-a223665691ee/final-1.mp4
2024-04-12 16:01:33 | INFO | "./app/services/video.py:183": generate_video - start, video size: 1080 x 1920
2024-04-12 16:01:33 | INFO | "./app/services/video.p... | 1medium |
Title: Pack rule operator exists / nexists should not have criteria pattern mandatory
Body: ## SUMMARY
When using exists / nexists rule operator, we need to provide a criteria pattern which is not correct, as the value of this pattern needs to be null / should not be there.
### STACKSTORM VERSION
st2 3.7.0, on... | 1medium |
Title: Continuous Driver download problem
Body: Every time I run it it downloads the driver as in the image, does it have to do this every time?
<img width="1017" alt="image" src="https://github.com/seleniumbase/SeleniumBase/assets/88004617/99ee1baa-440f-41be-a930-fe71a8f2d1c8">
| 1medium |
Title: Access to application
Body: **Describe the bug**
A clear and concise description of what the bug is. Please include timestamps and HTTP status codes.
If possible include the [httpie](https://httpie.org/) or `curl` request and response.
Please include the verbose flag. `-v`
**To Reproduce**
`httpie/curl` ... | 1medium |
Title: Configure OAuthClient with OpenID Discovery configuration
Body: https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
| 1medium |
Title: On the clang-format check of the project
Body: I noticed that horovod use [clang-format](https://clang.llvm.org/docs/ClangFormat.html) to format C++ code.
But when I check the project with clang-format-12, I still got many errors. The cmd I used as below:
```bash
#!/usr/bin/env bash
for src in $(find ./h... | 1medium |
Title: possible to escape already jsonified string ?
Body: I am working with pandas objects that have a very fast to_json() method to serialise pandas.Series.
I need to serialize a dict with some elements which are pandas objects, e.g.:
`{ "data": pandas.Series(...) }`
I would like to be able to transform the dict a... | 1medium |
Title: How to change a response timezone based on a query parameter?
Body: Hi, I want to know how to change a response timezone based on a query parmeter like https:://example.com?timezone=utc , https://example.com?timezone=Asia/Tokyo ,or https://exampl.com?timezone=Asia/Kolkata?
I think the answer of https://github... | 1medium |
Title: Resolve incorrect handling of configuration overrides in pydantic
Body: https://github.com/pydantic/pydantic-settings/issues/180 - we probably want to make the sources in [`_settings_build_values`](https://github.com/pydantic/pydantic-settings/blob/8c5a45e43cca4e88a6d65fcb280529499fc6200a/pydantic_settings/main.... | 1medium |
Title: Feature request: Support client side keepalives
Body: <!-- Enter your issue details below this comment. -->
I have been using version 0.20.1. I was able to configure server side TCP keepalives via the server_settings dict object, but I can't seem to find the place where I can set client side keepalives fro... | 1medium |
Title: python custom ops tutorial stopped working in PyTorch 2.7 RC1
Body: Get PyTorch 2.7 RC1. Repro in next comment.
Error looks like:
```py
Traceback (most recent call last):
File "/home/rzou/dev/2.7/pco.py", line 124, in <module>
cropped_img = f(img)
^^^^^^
File "/home/rzou/dev/2.7/env/li... | 2hard |
Title: 报错
Body: ### Expected Behavior
报错
### Actual Behavior
Trimap did not contain background values
### Steps to Reproduce
Trimap did not contain background values
### Debug Logs
```powershell
Trimap did not contain background values
```
### Other
_No response_ | 1medium |
Title: TypeError raised from hidden_tag() on Jinja 3.0.0rc1
Body: # Requirements
```
click==8.0.0rc1
Flask==2.0.0rc1
Flask-WTF==0.14.3
itsdangerous==2.0.0rc2
Jinja2==3.0.0rc1
MarkupSafe==2.0.0rc2
Werkzeug==2.0.0rc4
WTForms==2.3.3
```
# Example
```
import os
from flask import Flask, render_template_strin... | 1medium |
Title: pipe.disable_model_cpu_offload
Body: **Is your feature request related to a problem? Please describe.**
If I enable the following in Gradio interface
sana_pipe.enable_model_cpu_offload()
and during next generation I want to disable cpu offload, how to do it? I mentioned Gradio specifically as command line... | 1medium |
Title: Postgresql Problem
Body: Hello, I am using trying to connect PostgreSQL on my fastapi-admin project.
Is this possible? I'm getting an error about timeout:
File "/usr/local/lib/python3.9/asyncio/tasks.py", line 492, in wait_for
raise exceptions.TimeoutError() from exc
asyncio.exceptions.TimeoutError
On... | 1medium |
Title: Missing Validation Set
Body: Is there a validation set used for choosing the best model before testing the accuracy on the test set?
From what I see from the code, the model with Best Rank 1 is chosen based on test set result. Won't this mean that the Best Rank 1 result is overfitting on the test set? | 1medium |
Title: sample inference code for llama sft 7 model
Body: Hello,
Can you send me the inference sample python code snippet of llama sft 7 model that shows how to do inference with llama model?
I know about <assistant> <prompter> these special tokens from code are used to learn model differences between user & assistant... | 1medium |
Title: model.load(..., weights_only=True) dose not load batch normalization weights
Body: when I'm using model.load(..., weights_only=True), the weights correspond to BN layers are not loaded. that's why when I use model.predict the output of the classifier is completely different and incorrect. How can I load the wei... | 1medium |
Title: Allow applying patterns to single values
Body: Context: plotly.express.timeline
Looking at (and neighboring lines which perform analogous checks) https://github.com/plotly/plotly.py/blob/216fca2a7ed14d2e58f5423557b6e731e2a0f575/packages/python/plotly/plotly/express/_core.py#L973, there is no way to set `patte... | 1medium |
Title: Support for LocalAI
Body: Hey :wave: LocalAI (https://github.com/mudler/LocalAI) author here - nice project!
**Is your feature request related to a problem? Please describe.**
I'd like to run this locally with LocalAI - only Ollama seems to be supported.
**Describe the solution you'd like**
LocalAI prov... | 1medium |
Title: Darkflow - YOLOv1 - Loss function
Body: Hi, Guys
Can someone explain how the loss function is working? Because from what I can tell it's being called cli.py builds the model, creates a framework and does a single pass to build the network. Then Train is called and calls the loss function and the training beg... | 1medium |
Title: Fix failing builds: https://travis-ci.org/github/man-group/arctic/jobs/762598165
Body: On a quick glance, some failing tests seem to be returning None, both VersionStore and ChunkStore. Need to take a proper look at this, as it's blocking quite a few PRs | 2hard |
Title: A question about loss backward
Body: Thank you for sharing the well organized code. I learned a lot from the code. Now I would like to ask you a question about loss.backward. For the classification problem, the final output of the model is a classification vector, such as 1 x M vector, your code is also targeted... | 1medium |
Title: djcelery出错.
Body:
![Uploading image.png…]()
Request Method: | GET
-- | --
https://csds.nkhdkj.com/admin/djcelery/periodictask/
2.1.8
TypeError
Object of type '__proxy__' is not JSON serializable
| 1medium |
Title: Visual glitches with thick line(>1) on version 0.12.4
Body: <!-- In the following, please describe your issue in detail! -->
<!-- If some of the sections do not apply, just remove them. -->
### Short description
When setting line width thicker than 1, zooming in causes some line to fill up a large area
htt... | 1medium |
Title: [BUG] File not found in autotuner cache in multi-node setting on SLURM
Body: **Describe the bug**
I am training an LLM using DeepSpeed and 12 nodes a 8 V100s per node. My training is generally working well (thanks DeepSpeed), but when I run multiple training runs in parallel, I run into trouble.
I am getting t... | 2hard |
Title: [Feature request] using pre-extracted SE files(se.pt)
Body: Can't I use xtts using pre-extracted SE files(se.pt)? I want to apply it and do a voice clone | 1medium |
Title: [Question] How could I hide the "Finding best initial lr" message from pytorch_lightning when using Darts' Torch Forecasting Models?
Body: I am unable to hide the `Finding best initial lr` message when calling the [`lr_find` method](https://github.com/unit8co/darts/blob/c3a611236690f0704ced6078982adf20b0a33886/d... | 1medium |
Title: The DataFrame serialisation is slower than in v1
Body: Using python pandas. Version 1 i used this:
```python
def dbpop_influx(data, dbname, measurement, columns):
## constants:
dbclient = DataFrameClient(host='localhost', port=8086, username='root', password='root', database=dbname)
n_import_c... | 1medium |
Title: Civit AI flux model razor-8step-rapid-real not working with diffusers single file
Body: ### Describe the bug
We have this civit AI model: https://civitai.com/models/849864/razor-8step-rapid-real which we want to run using `from_single_file`, but it errors out
### Reproduction
1) First create your CivitAI API ... | 2hard |
Title: Current version of chromedriver breaks pinned version of selenium
Body: Running the tests on my Ubuntu 20.4 server against tag `5d` resulted in
```
test_admin_home_page (test_selenium.SeleniumTestCase) ... skipped 'Web browser not available'
```
So I hacked `tests/test_selenium.py` to add code to re-rais... | 1medium |
Title: [BUG] For an nrms model, run_fast_eval does not return the correct prediction scores
Body: ### Description
I believe that for the nrms model, the output of `run_fast_eval` is incorrect. (See code [here](https://github.com/microsoft/recommenders/blob/98d661edc6a9965c7f42b76dc5317af3ae74d5e0/recommenders/models... | 1medium |
Title: Troubles regarding removing the progress bar after loop
Body: Hi,
I want to use tqdm in a nested loop and it would help if the progress bar for the inner loop can be removed after finishing the inner loop. I try to pass the parameter "leave=False" as doc said. It did remove the progress bar at the end, but leav... | 1medium |
Title: Generate lists of pages based on tag metadata
Body: It would be useful if users could attach **tags** to certain pages, and then use these tags to generate lists of pages that fall under that tag. This is a common thing to do in blogging platforms, and may be useful here as well.
[ABlog kind-of supports this]... | 1medium |
Title: Not able to index when using List[str] in custom document class
Body: System: `macOS 13.3.1`
Python version: `3.11.0`
IPython version: `8.10.0`
In the latest docarray version, when building hnsw index from the following simple document class:
```python
from docarray import BaseDoc
from docarray.index imp... | 2hard |
Title: Saving Early Stopping Patience Value in last.pt Checkpoint
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
Hello,
I have... | 1medium |
Title: How to use pandarallel_apply with multiple arguments?
Body: I have code like below:
```
def similarity(txt1, txt2):
return xxxxxxx
vSimilarity = np.vectorize(similarity)
vSimilarity(df['var1'], df['var2'])
```
How to convert it to utilize parallel_apply? Below does not work.
`(df['var1'... | 1medium |
Title: Alpine Linux
Body: Have you considered using alpine linux? | 3misc |
Title: Connection Error When Using By-pass Proxies
Body: ### Describe the bug
I'm currently using Clash for Windows as my proxy tunnel, after exporting HTTP_PROXY and HTTPS_PROXY to the port that clash provides🤔, it runs into a connection error saying "Couldn't reach https://raw.githubusercontent.com/huggingface/data... | 1medium |
Title: AttributeError: module 'keras._tf_keras.keras.layers' has no attribute 'LocallyConnected1D'
Body: AttributeError: module 'keras._tf_keras.keras.layers' has no attribute 'LocallyConnected1D'

| 2hard |
Title: After resolving python circular import error, docs not working.
Body: Using odmantic 0.3.5 with this model:
person.py
```
from __future__ import annotations
from typing import Optional
from odmantic import Field , Model
# from pydantic import Field, BaseModel as Model <-- docs work fine but odmantic... | 2hard |
Title: HTTP Request Interception
Body: I'm trying the code below and it keeps giving me the following error: `No module named 'blinker._saferef'`
How can I fix it? Also it would be great if I could change the request's parameters/headers, like changing a certain header before continuing the request like in playwright/... | 1medium |
Title: Documentation / help: where is the config stored
Body: Running http --help should state where the config file is. The man page should also state that. It should also state the format of the config file.
| 0easy |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.