text
stringlengths
20
57.3k
labels
class label
4 classes
Title: Failed Index Uniqueness Validation for Dask Series Body: **Describe the bug** A clear and concise description of what the bug is. - [X ] I have checked that this issue has not already been reported. - [X ] I have confirmed this bug exists on the latest version of pandera. - [X ] (optional) I have confirme...
1medium
Title: debuginfo output doesn't seem to work with gdb v15 Body: This is true across Numba releases; I tried 0.58 through 0.60. I am setting `NUMBA_DEBUGINFO=1` for profiling (https://github.com/pythonspeed/profila/). 1. On Ubuntu 24.04, gdb v15 doesn't see the symbols generated. lldb _does_ see the symbols, so they ...
1medium
Title: 使用configparser读取.ini配置文件,在部署时报错 Body: 在Scrapy的settings文件中使用configparser读取.ini配置文件, ``` config = RawConfigParser() config_file = os.getcwd() + '/config.ini' config.read(config_file) env = config['env']['env'] ``` 在gerapy中部署时报错,报错信息如下: ``` File "<frozen importlib._bootstrap>", line 994, in _gcd_impo...
1medium
Title: Error handlers on namespaces causes error Body: Flask-restplus=0.9.0 When error handlers are registered on a namespace and afterwards are transfered to api an error occurs. I got it working on my side by adding ".items()" on api.py:398: `for exception, handler in ns.error_handlers.items():` Due to the lack of ...
1medium
Title: Version 2.2.0 crashes when using app.test_client() as a context-manager in multi-threaded tests Body: The following code defines a simple app, and queries it from a test that uses threads: ```py import threading from flask import Flask import pytest def create_app(): app = Flask(__name__) ...
2hard
Title: pytest-xdist rtd documentation site problem Body: It seems that pytest-xdist documentation rtd website exists but never container docs on it, but searching for xdist docs brings https://readthedocs.org/projects/pytest-xdist amont top results which is confusing. Apparently @hpk42 @nicoddemus and @RonnyPfannsch...
1medium
Title: Cyclic imports of db objcect Body: I've run flasky with pylint (I can post the specific pylintrc file, if required) and discovered a lot of cyclic imports ``` app/auth/__init__.py:1:0: R0401: Cyclic import (app -> app.auth -> app.auth.views -> app.models) (cyclic-import) app/auth/__init__.py:1:0: R0401: Cyc...
1medium
Title: forms.MultipleChoiceField doesn't work as it does in default admin site Body: When a use django default admin site, I get the desired MultiChoiceField ![default admin](https://user-images.githubusercontent.com/22144491/39010646-f35f9182-442e-11e8-8ea4-9114e295d6b6.png) but when i switch to django-jet admin ...
1medium
Title: db.session.add(..) but without commit(() Body: Hi, i'm reading your book and at this point in Chapter 10. In model.py the "User" class has several db.session.add(self) but no db.session.commit(). I thought that every time an update in database there should be an commit() in the end but your code works fine. So i...
0easy
Title: Django 3 support Body:
1medium
Title: Python 3.5 on CI tests Body: Refs #133 As I said earlier in my mail, this is absolutely vital to us. We can't have a big part of our production code note run on our tech stack. I'm happy to make the changes, if you tell me how you want it.
1medium
Title: Allowing `UsageError` subclasses Body: Hi, I'm developing a package that exposes magic commands to users. In many cases, the Python traceback is long and uninformative so I only want to display an appropriate error message. I noticed that this can be done with [`UsageError`](https://github.com/ipython/ipyt...
1medium
Title: [Bug]: `identify_dynamic_embeddings` does not work for `DataPair` Body: ### Describe the bug The training util `identify_dynamic_embeddings` does not look properly at the embeddings for the `first` and `second`. It probably makes more sense to have a member function for each `DataPoint` class, instead of checki...
1medium
Title: [Duplicate] With fixed rows, columns are as wide as the data and not the headers Body: If the column headers are wider than the data (which is often the case with numerical tables & text column headers), then the width of the columns is too narrow and the column headers are cut off. Without fixed columns, the...
1medium
Title: TypeError: BoxAnnotator.annotate() got an unexpected keyword argument 'custom_colors_lookup' Body: ### Search before asking - [X] I have searched the Supervision [issues](https://github.com/roboflow/supervision/issues) and found no similar feature requests. ### Question First of all, I really like how...
1medium
Title: INspector view error Body: ``` python TypeError TypeError: 'Database' object is not callable. If you meant to call the '__html__' method on a 'MongoClient' object it is failing because no such method exists. Traceback (most recent call last) File "/home/rochacbruno/.virtualenvs/quokkaclean/lib/python2.7/site-pa...
1medium
Title: Tado new api authentication Body: ### The problem From March 21 todo require MFA on API. https://support.tado.com/en/articles/8565472-how-do-i-authenticate-to-access-the-rest-api Tado integration unable to login. ### What version of Home Assistant Core has the issue? All ### What was the last working versio...
1medium
Title: How to use this with ForeignKey table Body: How to use this with ForeignKey table ,Just like join or inner Sql
1medium
Title: Update documentation with python3.5 features Body: 1) document `async with` for pool/connection/cursor 2) document `async for` iteration over cursor 3) change examples to async/await
1medium
Title: validation loss does not decrease Body: Hello, I have been trying to finetune the donut model on my custom dataset. However, I have encountered an issue where the validation loss does not decrease after a few training epochs. Here are the details of my dataset: Total number of images in the training set...
1medium
Title: I get type error if I use __root__ from pydantic while inheriting from SQLModel 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 ...
1medium
Title: Deadlock when spawning tasks from a function and limiting concurrency Body: ### Bug summary I'm getting what seems to be a deadlock when I have Python functions that aren't tasks "spawning" new tasks (and limiting concurrency). At some point Prefect is just waiting on a bunch of futures but no new tasks get sta...
1medium
Title: get_data_yahoo raise RemoteDataError(msg)! Body: import pandas_datareader as pdr start=datetime(2019,1,1) nio=pdr.get_data_yahoo('NIO',start=start) error: raise RemoteDataError(msg) pandas_datareader._utils.RemoteDataError: Unable to read URL: https://finance.yahoo.com/quote/NIO/history?period1=1546333200...
1medium
Title: Very low-efficiency dataloader when no explicit matrix2numpy conversion using pykaldi+pytorch Body: Thanks to pykaldi. Now it is very easy to incorporate kaldi's feature into pytorch to do NN training related to speaker verification with only few lines of codes. However, I found it is very slow to convert py...
1medium
Title: Armv7l环境运行错误 Body: 设备 树莓派3b 系统 Raspbian 4.x docker镜像 postgres 正常 redis 无限重启,log输出错误 缺失文件 其余两个组件均无法运行 standrad_init_linux.go:195 报错 exec user process caused "exec format error"
2hard
Title: Add `Model-based Deep Reinforcement Learning` to RWKV-LM? Body: What about add some `Model-based Deep Reinforcement Learning` to RWKV-LM?
2hard
Title: I am using. page SetRequestInterception (True), a page doesn't load properly Body: I want to get all the requests and responses on the page through the interceptor, but it prevents the page from loading properly. It's just a simple demo, and I'm just going to listen with an interceptor, and I'm going to pri...
1medium
Title: Assertion on input dim in recurrent model Body: Hi, I'd like to try LSTM with an input size less than 3 but I receive this error: `AssertionError: Input dim should be at least 3.` Does tflearn inherit this from TF? Would the recurrent model still works fine if I remove that assertion?
1medium
Title: [BUG] `sktime` fails if an older version of `polars` is installed Body: Reported by @wirrywoo on discord. If an older version of `polars` is installed, `sktime` fails due to import chains and module level generation of a test fixture with `DataFrame(strict=False)`, where the `strict` argument is not present i...
1medium
Title: cannot import aimstack without aimos package Body: ## ❓Question I'm trying to setup a Langchain debugger on Windows. Since `aimos` cannot be installed on Windows I installed `aimstack` and have the following code: ``` def get_callbacks() -> list: callbacks = [] aimos_url = os.environ["AIMOS_UR...
1medium
Title: Vedo only render the change when I move my mouse on the screen Body: it happens to me that the scene only change when I hover my mouse on the screen which does not make it smooth. Can you help to solve this issue ?
1medium
Title: Key Error: 'ib0' Body: **Environment:** 1. Framework: pytorch 2. Framework version:1.8.0 3. Horovod version:0.21.3 4. MPI version: mpich 3.0.4 5. CUDA version: 10.1 6. NCCL version: 7. Python version: 8. Spark / PySpark version: 9. Ray version: 10. OS and version: 11. GCC version: 12. CMake version:...
1medium
Title: thanks Body: delete thanks
3misc
Title: SingleUtteranceGmmDecoder.feature_pipeline() causes segmentation fault Body: Kaldi: compiled from master (d366a93aad) PyKaldi: pykaldi-cpu 0.1.3 py37h14c3975_1 pykaldi Python: 3.7.11 OS: Manjaro Linux VM When calling `feature_pipeline()` from a `SingleUtteranceGmmDecoder` object twice, a segmentation faul...
2hard
Title: Add raw log endpoint Body: Inspired by http://atlasboard.bitbucket.org
1medium
Title: Database Connection per Schema Body: * GINO version: 0.8.6 * Python version: 3.7.0 * asyncpg version: 0.20.1 * aiocontextvars version: 0.2.2 * PostgreSQL version: 11 ### Description We're trying to implement our database logic to be a single connection to a schema in a database, meaning that we use sc...
2hard
Title: Hi, I created an interactive map with your API, thanks for the dataset! Body: You can visit the map in [COVID-19 Map](https://python.robertocideos.com) Thanks for the hardwork and the dataset!
3misc
Title: `Database access not allowed` when passing function to default foreign key Body: I am getting the following error when I am setting a function as a `default` value for a foreign key. I have the decorator on many tests, but it doesn't even finish loading the first test with the decorator before exploding. ``` ...
1medium
Title: [Bug]: Body: ### Don't skip these steps / 不要跳过这些步骤 - [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field / 我明白,如果我“故意”删除或跳过任何强制性的\*字段,我将被**封锁** - [X] I have checked through the search that there are no similar issues that already exist / 我已经通过搜索仔细检查过没有存在已经创建的相似...
1medium
Title: Add support for HTTP request rewriter Body: Sometimes we need to pass through proxies which have authorizations, and we need to rewrite our HTTP requests to meet those needs. A `request_rewriter` argument can be added to session objects to support this.
1medium
Title: No alignments file found Body: Hi, when i am doing "convert". it tells me No alignments file found. The command I used is: python3 faceswap.py convert -i ~/faceswap/src/trump/ -o ~/faceswap/converted/ -m ~/faceswap/trump_cage_model/ The console output is : 03/11/2020 10:39:30 ERROR No alignments file fo...
1medium
Title: Change warning temp Body: I changed warning temp in v0.4 from 80 to 90 Now I can not find where it was in v0.5 Can you help me please?
1medium
Title: Disabling the GPU causes `--enable-3d-apis` to not work Body: ## Disabling the GPU causes `--enable-3d-apis` to not work The fix for this is simple: If using `--enable-3d-apis` / `enable_3d_apis=True`, then don't disable the GPU, which was being set in places to prevent other issues from happening. The GPU wa...
1medium
Title: Intermittent failing of ONNX model Body: # Bug Report ### Describe the bug I have a script from compiling a `pytorch` model to ONNX that runs inference with the ONNX model, and when running inference on the GPU, it intermittently fails with the error: ```File "/home/ec2-user/anaconda3/envs/onnx/lib/pytho...
2hard
Title: TestClient request mock HttpRequest is missing SessionStore session attribute Body: **AttributeError: Mock object has no attribute 'session'** This error is raised when using TestClient to test a login endpoint that uses `django.contrib.auth.login` because the mock request object as defined here https://github....
1medium
Title: `dataframe.read_parquet` crashed with DefaultAzureCredential cannot be deterministically hashed Body: <!-- Please include a self-contained copy-pastable example that generates the issue if possible. Please be concise with code posted. See guidelines below on how to provide a good bug report: - Craft Minima...
1medium
Title: There is no config.json in pre-trained BERT models by DeepPavlov Body: BERT pre-trained models from http://docs.deeppavlov.ai/en/master/features/pretrained_vectors.html#bert have `bert_config.json` instead of `config.json`. This leads to errors when these models are used with HuggingFace Transformers: ```pyth...
0easy
Title: Cannot close the proxy Body: <!-- Summary. --> In windows pycharm jupyterlab when i open windows system proxy requests will use the proxy i set on windows system. but cannot close this proxy direct to the internet . I try ```python response = requests.post(url, headers=headers, json=data, proxies=None) re...
1medium
Title: Support for Multi-Modality Models (DeepSeek Janus-Pro-7B) Body: ### Feature request I’m requesting support for multi_modality models in transformers, specifically for models like DeepSeek Janus-Pro-7B. Currently, when attempting to load this model using AutoModel.from_pretrained(), I received the following err...
1medium
Title: Navigation bar vanishes in case of protected event in an otherwise unprotected category for logged in user Body: **Describe the bug / how to reprocess** Maybe it's a feature, not a bug, but I'll leave it here, as I find it mildly annoying :sweat_smile: I'm logged in to our Indico instance and can see all th...
1medium
Title: Scattermapbox cluster says “The layer does not exist in the map’s style…” Body: **Describe your context** ``` dash 2.14.1 dash-auth 2.0.0 dash-bootstrap-components 1.4.1 dash-core-components 2.0.0 dash-extensions 1.0.1 dash-html-com...
1medium
Title: [Feature request] checking an input rank is within a specific range Body: ### What is the problem that this feature solves? Please keep in mind I am new to ONNX. I will be missing context on priorities with the code so this might be useless. While looking into extending Microsoft's ORT functionality to a...
1medium
Title: 400 error in Swagger when using POST/PUT through reqparse Body: Hey all, While testing out PUT/POST requests using reqparser through Swagger UI (using _**Try it Out!**_), my application will throw a 400 error with the following message: `{ "message": "The browser (or proxy) sent a request that this ser...
1medium
Title: stats not attributing URLs to discovering modules Body: As an example - ffuf_shortnames discovers URL_UNVERIFIED events which are not tracked in stats, but are then checked by httpx, and some will become URL events. But despite the face that ffuf_shortnames discovered them, it does not get attributed with the UR...
1medium
Title: Keras fails to load TextVectorization layer from .keras file Body: When downloading a model I trained on Kaggle using the `.keras` format it fails to load on my machine. I believe it is a codec error because the TextVectorization layer uses the `utf-8` format, but the error message appears to be using the `charm...
1medium
Title: [ENH]: Registering custom markers Body: ### Problem While working on a library to make styles (with custom colors, etc...) I discovered that there is no easy way to register custom markers, unlike for colors and the like. I found a workaround digging in `markers.py`: ```python from matplotlib.markers import ...
1medium
Title: Pillow (4.3.0) for manylinux1 is not packaged, instead zappa packages Pillow for Windows 64-bit Body: This is almost related to #398 / #841 , but instead no Pillow is packaged at all. ## Context Python 3.6 on Windows (Anaconda) ## Expected Behavior Pillow 4.3.0 is packaged. It seems that lambda-packa...
1medium
Title: Development and Maintance of this package Body: Hey, it seems to me that this package is lacking People to maintain and develop it. I come to this conclusion because many Issues go unanswered and Pull requests not merged. What can we do about it? Who is willing to actively contribute in any way? Are the cur...
3misc
Title: No module named 'thefuck' Body: When I install using the following commands, the terminal say: File "/home/test/.local/bin/fuck", line 7, in <module> from thefuck.not_configured import main ImportError: No module named 'thefuck' I don't know how to do at next, so I create the issue. OS:elementary...
0easy
Title: Update selection when already a selection is made Body: If the plot is made with the `selected features` checkbox, the expression (and the selection) is correct, but it loops in **all** the attribute table and not just in the feature subset. Handling this is quite tricky.
2hard
Title: Properties of images for the best result Body: * face_recognition version: * Python version: * Operating System: ### Description Using images to train the Model with face_recognition ### Query What are all the similar properties (i.e : Image size, resolution) all the image should have So, that face_r...
1medium
Title: GINO don't released the connection after exception in Starlette extension Body: * GINO version: 0.8.3 * Python version: 3.7.4 * asyncpg version: 0.18.3 * aiocontextvars version: 0.2.2 * PostgreSQL version: 11.3 * FastAPI version: 0.36.0 * Starlette version: 0.12.7 * uvicorn version: 0.8.6 * uvloop versio...
1medium
Title: Can we convert this in to ServerResponseError.from_response exception instead of NonXMLResponseError Body: It would be helpful if ServerResponseError.from_response is implemented on line 173 instead NonXMLResponseError. https://github.com/tableau/server-client-python/blob/4259316ef2e2656531b0c65c71d043708b37b...
1medium
Title: Fill in empty space in open mesh Body: ![image](https://user-images.githubusercontent.com/73815944/237020363-fba07136-ff66-4787-8415-8b23208da87a.png) Hi, I have open mesh and want to fill some space. So, I try to create points about empty space. And using reconstruct_surface() to create a mesh filled whit emp...
1medium
Title: what is h_dim in vanilla VAE implementation Body: I tried VAE implementation but did not understand the algo. So I searched for implementations on GitHub and found yours. The problem I am facing with your implementation is to understand 2 things, 1st is what exactly is h_dim and how is the value of it decided? ...
1medium
Title: Travis CI fails for contributor PRs Body: > <a href="https://github.com/dlmiddlecote"><img align="left" height="50" src="https://avatars0.githubusercontent.com/u/9053880?v=4"></a> An issue by [dlmiddlecote](https://github.com/dlmiddlecote) at _2019-07-09 23:00:41+00:00_ > Original URL: https://github.com/...
1medium
Title: unicode issues Body: When I follow the example to retrieve data I'm greeted with the following stacktrace: ``` In [4]: supabase.table("countries").select("*").execute() --------------------------------------------------------------------------- UnicodeEncodeError Traceback (most rece...
1medium
Title: Request.from_curl() with $-prefixed string literals Body: Chrome (and probably other things) sometimes generate curl commands with a [$-prefixed](https://www.gnu.org/software/bash/manual/html_node/ANSI_002dC-Quoting.html) data string, probably when it's easier to represent the string in that way or when it inclu...
1medium
Title: model from_pretrained bug in 4.50.dev0 in these days Body: ### System Info - `transformers` version: 4.50.dev0 - Platform: Linux-5.10.101-1.el8.ssai.x86_64-x86_64-with-glibc2.31 - Python version: 3.10.16 - Huggingface_hub version: 0.29.1 - Safetensors version: 0.5.3 - Accelerate version: 1.4.0 - Accelerate con...
2hard
Title: Trying to Find Bottleneck When Using Nvidia Jetson Nano Body: Hi, Great work on this! It's amazing to see this working! I am testing this software out on a [4 GB NVIDIA Jetson Nano Developer Kit](https://developer.nvidia.com/embedded/jetson-nano-developer-kit), and am seeing ~1 minute needed to synthesize a ...
1medium
Title: AttributeError: 'Doc2VecTrainables' object has no attribute 'vectors_lockf' Body: Python version 3.7.5 gensim version 3.6.0 apache-beam[gcp] 2.20.0 tensorflow==1.14 #### Problem description Trying to create tf records using gensim Doc2Vec. Expected result is to create tf records with the given paramete...
1medium
Title: set encoding parameters in addition to the original encoding Body: ### Is your feature request related to a problem? When writing to disk with `to_netcdf`, the `encoding` argument causes existing encoding to be dropped. This is described in the [docs](https://docs.xarray.dev/en/latest/generated/xarray.Dataset.t...
1medium
Title: [FEATURE] Fix index warning in fugue_dask Body: **Is your feature request related to a problem? Please describe.** ![image](https://user-images.githubusercontent.com/21092479/178210861-36a01095-89c9-4b8d-867a-cc17336fa47a.png) **Describe the solution you'd like** For newer version of pandas we need to do so...
1medium
Title: How do you get the training time on each epoch using TPUEstimator? Body: I am able to see INFO:tensorflow:loss = 134.62343, step = 97 but not the time.
1medium
Title: DiT Licence? Body: What is the Licence for using DiT? I am seeing the whole repository is under MIT Licence, but some of the projects contains difference licensing. As there's no info mentioned for DiT, can you update it?
3misc
Title: Different ways of websocket disconnection effects in task pending Body: **Describe the bug** Hi I am actually seeking for help. I was following this gist https://gist.github.com/ahopkins/5b6d380560d8e9d49e25281ff964ed81 building up a chat server. Now that we have a frontend, I am strucked by a task pending prob...
1medium
Title: Assigning Probability in imgaug OneOf Body: can we have a different probability for selecting augmentations in OneOf? Its use case is for example when you want to select one of the 3 augmentations but with prob = [0.5. 0.25, 0.25] instead of 1/3 for all of them.
1medium
Title: Docs recipe: stream media with range request Body: Hello, i'm tryning to stream mp4 video, with range request support.but i cannot manage to make it work with resp.stream. This code work : ``` def on_get(self, req, resp): media = 'test.mp4' resp.set_header('Content-Type', 'vi...
1medium
Title: import RandomOrder Body: ## Describe the bug RandomOrder is not in [ composition.\_\_all\_\_](https://github.com/albumentations-team/albumentations/blob/526187b98bb8f66b77601e9cb32e2aa24d8a76a3/albumentations/core/composition.py#L27) therefore it is not possible to import it like any other transform ### ...
1medium
Title: skipif mark can't utilize global python variables or vars returned by fixtures Body: Hi, I believe this is a feature request for the `skipif` mark. ### **Issue** I'm trying out the `skipif` mark (see three code examples below), but the `eval()` function is only able to access vars stored in tavern.util.dict...
2hard
Title: Weird window size Body: Even with the example code, the window is small. If I make it fullscreen, the rest of the window is blank
1medium
Title: Getting a KeyError when using IndicatorFactory.run() Body: Hello, I am trying to play around with some simple strategies to learn about the library, so I started with this : ```import vectorbt as vbt import numpy as np import pandas as pd import pytz import talib data = vbt.BinanceData.download('ETHUS...
1medium
Title: Hello everyone, please after training my model how can I fit it to accept a dataset without target column when I want to predict new values. The fact is that in Real life we do not know yet the value we seeking by prediction process Body:
1medium
Title: leafmap add_raster function can't work in windows Body: <!-- Please search existing issues to avoid creating duplicates. --> ### Environment Information - leafmap version:0.22.0 - Python version:3.9 - Operating System:windows 10 ### Description error: 1019 1020 if http_error_...
1medium
Title: Have new multi-process data loader put batches directly on the target device from workers Body:
2hard
Title: 方法 GetChildren() 的可靠性存疑 Body: GetChildren() 实现中用到了 IUIAutomationTreeWalker::GetNextSiblingElement() 这个win32 API 。看microsoft的官网文档( 链接 https://docs.microsoft.com/en-us/windows/win32/api/uiautomationclient/nf-uiautomationclient-iuiautomationtreewalker-getnextsiblingelement )说,“ The structure of the Microsoft UI Aut...
2hard
Title: demo loading failed Body: <img width="1063" alt="image" src="https://github.com/pydantic/FastUI/assets/4550421/8c4fdabf-0dd2-494b-a904-88322f0c4e29">
1medium
Title: How to solve 'utf8' can't decode,because of string:högskolan Body: if there is a string: högskolan in database,then there well be a error: { "errors": [ { "message": "'utf8' codec can't decode byte 0xf6 in position 34: invalid start byte", "locations": [ { ...
1medium
Title: Support SQLAlchemy v2 Body: ### Checklist - [X] There are no similar issues or pull requests for this yet. ### Is your feature related to a problem? Please describe. A few days ago I started using SQLAlchemy for the first time - specifically, v2.0.0rc2 (released 2023-Jan-9). Today I decided to try setting up...
1medium
Title: Request for a Binder example that combines Ploomber and Mlflow Body: I'm using Mlflow, but Mlflow doesn't have pipeline functionality. Therefore, I would like to use a combination of Mlflow and Ploomber. Can I ask you to create the simple notebook example (with Mlflow+Ploomber) that can be reproduced in Binder...
1medium
Title: 马斯克看腻了,加个选项是否显示example吧。或者自定example Body: 马斯克看腻了,加个选项是否显示example吧。或者自定example
0easy
Title: Timeout in seconds not applying Body: ### Discussed in https://github.com/MilesCranmer/PySR/discussions/724 <div type='discussions-op-text'> <sup>Originally posted by **usebi** September 25, 2024</sup> I tried the timeout_in_seconds function of pysr regressor and set the timeout to 12 hours but after many...
1medium
Title: API: return value of `.values` for Series with the future string dtype (numpy array vs extension array) Body: Historically, the `.values` attribute returned a numpy array (except for categoricals). When we added more ExtensionArrays, for certain dtypes (e.g. tz-aware timestamps, or periods, ..) the EA could more...
1medium
Title: Interaction error when working with SAM-2 Body: ### Actions before raising this issue - [X] I searched the existing issues and did not find anything similar. - [X] I read/searched [the docs](https://docs.cvat.ai/docs/) ### Steps to Reproduce 1. Set-up CVAT with serverless functions. 2. Host SAM-2 model. ###...
1medium
Title: Python function not callable from tavern script for saving Body: Hi, I am calling a save function after getting response from my api, now in the response received i need to format string and save only few elements present, ``` response: status_code: 200 save: heade...
1medium
Title: TypeError: set_parent() takes 3 positional arguments but 4 were given Body: When trying the First script example on the Quickstart of the docs, it works correctly when executed on Jupyter notebook, but it won't work as a script directly executed via solara executable. When doing: **solara run .\first_scrip...
1medium
Title: Unexpected "down" after sending ping Body: I have a test check setup on healthchecks.io, configured with Cron Expression | `* 9 * * *` -- | -- Time Zone | America/Los_Angeles Grace Time | 30 minutes This triggers at 9:30AM local time (as expected), and I send a ping to put it back the "up" state. ~30 mi...
1medium
Title: [Bug] AttributeError: 'int' object has no attribute 'device' Body: ### Describe the bug example code gives error when saving. ### To Reproduce ``` import os import time import torch import torchaudio from TTS.tts.configs.xtts_config import XttsConfig from TTS.tts.models.xtts import Xtts print(...
1medium
Title: decoder.yaml sha256 hash mismatch Body: 修改webui代码parser = argparse.ArgumentParser(description="ChatTTS demo Launch") parser.add_argument( "--server_name", type=str, default="0.0.0.0", help="server name" ) parser.add_argument("--server_port", type=int, default=8080, help="server port") ...
1medium
Title: Missing pre-build of the pydantic-core python package for musl lib on armv7. Body: Would be good to have an pre-build of the pydantic-core python package for musl lib on armv7. https://github.com/pydantic/pydantic-core/blob/e3eff5cb8a6dae8914e3831b00c690d9dee4b740/.github/workflows/ci.yml#L430-L436 Related...
1medium