已解决,部署GPTSoVITS报错‘AsyncRequest‘ object has no attribute ‘_json_response_data‘

部署GPTSoVITS过程中,开启一键三连进程发生,报错'AsyncRequest' object has no attribute '_json_response_data'

具体报错内容为

(GPTSoVITS) PS D:\Code\GPT-SoVITS-beta0706> python webui.py
Running on local URL:  http://0.0.0.0:9874
IMPORTANT: You are using gradio version 3.38.0, however version 4.44.1 is available, please upgrade.
--------
"D:\ProgramData\anaconda3\envs\GPTSoVITS\python.exe" GPT_SoVITS/prepare_datasets/1-get-text.py
"D:\ProgramData\anaconda3\envs\GPTSoVITS\python.exe" GPT_SoVITS/prepare_datasets/1-get-text.py
'AsyncRequest' object has no attribute '_json_response_data'
D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\_utils.py:831: UserWarning: TypedStorage is deprecated. It will be removed in the future and UntypedStorage will be the only storage class. This should only matter to you if you are using storages directly.  To access UntypedStorage directly, use tensor.untyped_storage() instead of tensor.storage()return self.fget.__get__(instance, owner)()
D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\_utils.py:831: UserWarning: TypedStorage is deprecated. It will be removed in the future and UntypedStorage will be the only storage class. This should only matter to you if you are using storages directly.  To access UntypedStorage directly, use tensor.untyped_storage() instead of tensor.storage()return self.fget.__get__(instance, owner)()
BertForMaskedLM has generative capabilities, as `prepare_inputs_for_generation` is explicitly overwritten. However, it doesn't directly inherit from `GenerationMixin`. From 👉v4.50👈 onwards, `PreTrainedModel` will NOT inherit from `GenerationMixin`, and this model will lose the ability to call `generate` and other related functions.- If you're using `trust_remote_code=True`, you can get rid of this warning by loading the model with an auto class. See https://huggingface.co/docs/transformers/en/model_doc/auto#auto-classes- If you are the owner of the model architecture code, please modify your model class such that it inherits from `GenerationMixin` (after `PreTrainedModel`, otherwise you'll get an exception).- If you are not the owner of the model architecture class, please contact the model code owner to update it.
BertForMaskedLM has generative capabilities, as `prepare_inputs_for_generation` is explicitly overwritten. However, it doesn't directly inherit from `GenerationMixin`. From 👉v4.50👈 onwards, `PreTrainedModel` will NOT inherit from `GenerationMixin`, and this model will lose the ability to call `generate` and other related functions.- If you're using `trust_remote_code=True`, you can get rid of this warning by loading the model with an auto class. See https://huggingface.co/docs/transformers/en/model_doc/auto#auto-classes- If you are the owner of the model architecture code, please modify your model class such that it inherits from `GenerationMixin` (after `PreTrainedModel`, otherwise you'll get an exception).- If you are not the owner of the model architecture class, please contact the model code owner to update it.
Building prefix dict from the default dictionary ...
Loading model from cache D:\Code\GPT-SoVITS-beta0706\TEMP\jieba.cache
Building prefix dict from the default dictionary ...
Loading model from cache D:\Code\GPT-SoVITS-beta0706\TEMP\jieba.cache
Loading model cost 0.521 seconds.
Prefix dict has been built succesfully.
Loading model cost 0.512 seconds.
Prefix dict has been built succesfully.
"D:\ProgramData\anaconda3\envs\GPTSoVITS\python.exe" GPT_SoVITS/s2_train.py --config "D:\Code\GPT-SoVITS-beta0706\TEMP/tmp_s2.json"
'AsyncRequest' object has no attribute '_json_response_data'
INFO:test:{'train': {'log_interval': 100, 'eval_interval': 500, 'seed': 1234, 'epochs': 8, 'learning_rate': 0.0001, 'betas': [0.8, 0.99], 'eps': 1e-09, 'batch_size': 3, 'fp16_run': True, 'lr_decay': 0.999875, 'segment_size': 20480, 
'init_lr_ratio': 1, 'warmup_epochs': 0, 'c_mel': 45, 'c_kl': 1.0, 'text_low_lr_rate': 0.4, 'pretrained_s2G': 'GPT_SoVITS/pretrained_models/s2G488k.pth', 'pretrained_s2D': 'GPT_SoVITS/pretrained_models/s2D488k.pth', 'if_save_latest':True, 'if_save_every_weights': True, 'save_every_epoch': 4, 'gpu_numbers': '0'}, 'data': {'max_wav_value': 32768.0, 'sampling_rate': 32000, 'filter_length': 2048, 'hop_length': 640, 'win_length': 2048, 'n_mel_channels': 128, 'mel_f
min': 0.0, 'mel_fmax': None, 'add_blank': True, 'n_speakers': 300, 'cleaned_text': True, 'exp_dir': 'logs/test'}, 'model': {'inter_channels': 192, 'hidden_channels': 192, 'filter_channels': 768, 'n_heads': 2, 'n_layers': 6, 'kernel_
size': 3, 'p_dropout': 0.1, 'resblock': '1', 'resblock_kernel_sizes': [3, 7, 11], 'resblock_dilation_sizes': [[1, 3, 5], [1, 3, 5], [1, 3, 5]], 'upsample_rates': [10, 8, 2, 2, 2], 'upsample_initial_channel': 512, 'upsample_kernel_si
zes': [16, 16, 8, 2, 2], 'n_layers_q': 3, 'use_spectral_norm': False, 'gin_channels': 512, 'semantic_frame_rate': '25hz', 'freeze_quantizer': True}, 's2_ckpt_dir': 'logs/test', 'content_module': 'cnhubert', 'save_weight_dir': 'SoVITS_weights', 'name': 'test', 'pretrain': None, 'resume_step': None}
Traceback (most recent call last):File "D:\Code\GPT-SoVITS-beta0706\GPT_SoVITS\s2_train.py", line 600, in <module>main()mp.spawn(File "D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\multiprocessing\spawn.py", line 246, in spawnreturn start_processes(fn, args, nprocs, join, daemon, start_method="spawn")File "D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\multiprocessing\spawn.py", line 202, in start_processeswhile not context.join():File "D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\multiprocessing\spawn.py", line 163, in joinraise ProcessRaisedException(msg, error_index, failed_process.pid)
torch.multiprocessing.spawn.ProcessRaisedException:-- Process 0 terminated with the following error:
Traceback (most recent call last):File "D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\multiprocessing\spawn.py", line 74, in _wrapfn(i, *args)File "D:\Code\GPT-SoVITS-beta0706\GPT_SoVITS\s2_train.py", line 85, in runtrain_dataset = TextAudioSpeakerLoader(hps.data)  ########File "D:\Code\GPT-SoVITS-beta0706\GPT_SoVITS\module\data_utils.py", line 36, in __init__assert os.path.exists(self.path4)
AssertionError

 报错的地方出现的py包为gradio,因此第一debug思路为换个gradio版本,优先考虑最新版本

首先

pip list

看到当前的gradio版本为3.38.0

(GPTSoVITS) PS D:\Code\GPT-SoVITS-beta0706> pip list
Package                   Version
------------------------- ------------
absl-py                   2.1.0
addict                    2.4.0
aiofiles                  23.2.1
aiohappyeyeballs          2.4.3
aiohttp                   3.10.10
aiosignal                 1.3.1
aliyun-python-sdk-core    2.16.0
aliyun-python-sdk-kms     2.16.5
altair                    5.4.1
annotated-types           0.7.0
antlr4-python3-runtime    4.9.3
anyio                     4.6.2.post1
async-timeout             4.0.3
attrs                     24.2.0
audioread                 3.0.1
av                        12.3.0
certifi                   2022.12.7
cffi                      1.17.1
chardet                   5.2.0
charset-normalizer        2.1.1
click                     8.1.7
cn2an                     0.5.22
colorama                  0.4.6
coloredlogs               15.0.1
contourpy                 1.3.0
crcmod                    1.7
cryptography              43.0.3
ctranslate2               4.5.0
cycler                    0.12.1
datasets                  3.0.2
decorator                 5.1.1
dill                      0.3.8
Distance                  0.1.3
editdistance              0.8.1
einops                    0.8.0
exceptiongroup            1.2.2
fastapi                   0.115.4
faster-whisper            1.0.3
ffmpeg-python             0.2.0
ffmpy                     0.4.0
filelock                  3.13.1
flatbuffers               24.3.25
fonttools                 4.54.1
frozenlist                1.5.0
fsspec                    2024.2.0
funasr                    1.0.0
future                    1.0.0
g2p-en                    2.1.0
gast                      0.6.0
gradio                    3.38.0
gradio_client             0.8.1
grpcio                    1.67.1
h11                       0.14.0
hdbscan                   0.8.39
httpcore                  1.0.6
httpx                     0.27.2
huggingface-hub           0.26.2
humanfriendly             10.0
hydra-core                1.3.2
idna                      3.4
importlib_metadata        8.5.0
inflect                   7.4.0
jaconv                    0.4.0
jamo                      0.4.1
jieba                     0.42.1
jieba_fast                0.53
Jinja2                    3.1.3
jmespath                  0.10.0
joblib                    1.4.2
jsonschema                4.23.0
jsonschema-specifications 2024.10.1
kaldiio                   2.18.0
kiwisolver                1.4.7
LangSegment               0.3.5
librosa                   0.9.2
lightning-utilities       0.11.8
linkify-it-py             2.0.3
llvmlite                  0.39.1
Markdown                  3.7
markdown-it-py            2.2.0
MarkupSafe                2.1.5
matplotlib                3.9.2
mdit-py-plugins           0.3.3
mdurl                     0.1.2
modelscope                1.10.0
more-itertools            10.5.0
mpmath                    1.3.0
multidict                 6.1.0
multiprocess              0.70.16
narwhals                  1.12.1
networkx                  3.2.1
nltk                      3.9.1
numba                     0.56.4
numpy                     1.23.5
omegaconf                 2.3.0
onnxruntime               1.19.2
orjson                    3.10.10
oss2                      2.19.1
packaging                 24.1
pandas                    2.2.3
pillow                    10.2.0
pip                       24.2
platformdirs              4.3.6
pooch                     1.8.2
proces                    0.1.7
propcache                 0.2.0
protobuf                  5.28.3
psutil                    6.1.0
py3langid                 0.2.2
pyarrow                   18.0.0
pycparser                 2.22
pycryptodome              3.21.0
pydantic                  2.9.2
pydantic_core             2.23.4
pydub                     0.25.1
pyopenjtalk               0.3.4
pyparsing                 3.2.0
pypinyin                  0.53.0
pyreadline3               3.5.4
python-dateutil           2.9.0.post0
python-multipart          0.0.16
pytorch-lightning         2.4.0
pytorch-wpe               0.0.1
pytz                      2024.2
PyYAML                    6.0.2
referencing               0.35.1
regex                     2024.9.11
requests                  2.32.3
resampy                   0.4.3
rpds-py                   0.20.0
safetensors               0.4.5
scikit-learn              1.5.2
scipy                     1.14.1
semantic-version          2.10.0
sentencepiece             0.2.0
setuptools                75.1.0
simplejson                3.19.3
six                       1.16.0
sniffio                   1.3.1
some-package              0.1
sortedcontainers          2.4.0
soundfile                 0.12.1
starlette                 0.41.2
sympy                     1.13.1
tensorboard               2.18.0
tensorboard-data-server   0.7.2
threadpoolctl             3.5.0
tokenizers                0.20.1
tomli                     2.0.2
torch                     2.1.2+cu121
torchaudio                2.1.2+cu121
torchmetrics              1.5.1
torchvision               0.16.2+cu121
tqdm                      4.66.6
transformers              4.46.1
typeguard                 4.4.0
typing_extensions         4.12.2
tzdata                    2024.2
uc-micro-py               1.0.3
umap                      0.1.1
urllib3                   1.26.13
uvicorn                   0.32.0
Werkzeug                  3.0.6
wheel                     0.44.0
wordsegment               1.3.1
xxhash                    3.5.0
yapf                      0.40.2
yarl                      1.17.0
zipp                      3.20.2

接下来

pip install gradio==99999
ERROR: Ignored the following yanked versions: 2.8.0, 3.0.7, 3.1.2, 3.13.1, 4.7.0
ERROR: Could not find a version that satisfies the requirement gradio==99999 (from versions: 0.1.0, 0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7, 0.1.8, 0.1.9, 0.2.0, 0.2.1, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.4.0, 0.4.1,
.2, 1.0.0a1, 1.0.0a3, 1.0.0a4, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.0.6, 1.0.7, 1.1.0, 1.1.1, 1.1.2, 1.1.3, 1.1.4, 1.1.5, 1.1.6, 1.1.8, 1.1.8.1, 1.1.9, 1.2.2, 1.2.3, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.4.2, 1.4.3, 1.4.4, 1.5.0, 1.5.1, 1.5.3, 1.5.4, 1.6.0, 1.6.1, 1.6.2, 1.6.3, 1.6.4, 1.7.0, 1.7.1, 1.7.2, 1.7.3, 1.7.4, 1.7.5, 1.7.6, 1.7.7, 2.0.0, 2.0.1, 2.0.2, 2.0.4, 2.0.5, 2.0.6, 2.0.7, 2.0.8, 2.0.9, 2.0.10, 2.1.0, 2.1.1, 2.1.2, 2.1.4, 2.1.6, 2.1.7, 2.2.0, 2.2.1, 2.2.2, 2.2.3, 2.2.4, 2.2.5, 2.2.6, 2.2.7, 2.2.8, 2.2.9a0, 2.2.9a2, 2.2.10, 2.2.11, 2.2.12, 2.2.13, 2.2.14, 2.2.15, 2.3.0a0, 2.3.0b99, 2.3.0b101, 2.3.0b102, 2.3.0, 2.3.3, 2.3.4, 2.3.5b0, 2.3.5, 2.3.6, 2.3.7b0, 2.3.7b1, 2.3.7b2, 2.3.7, 2.3.8b0, 2.3.9, 2.4.0a0, 2.4.0, 2.4.1, 2.4.2, 2.4.4, 2.4.5, 2.4.6, 2.4.7b0, 2.4.7b2, 2.4.7b3, 2.4.7b4, 2.4.7b5, 2.4.7b6, 2.4.7b7, 2.4.7b8, 2.4.7b9, 2.5.0, 2.5.1, 2.5.2, 2.5.3, 2.5.8a0, 2.6.0, 2.6.1a0, 2.6.1b0, 2.6.1b3, 2.6.1, 1, 2.8.2, 2.8.3, 2.8.4, 2.8.5, 2.8.6, 2.8.7, 2.8.8, 2.8.9, 2.8.10, 2.8.11, 2.8.12, 2.8.13, 2.8.14, 2.9.0b0, 2.9.0b1, 2.9.0b2, 2.9.0b3, 2.9.0b5, 2.9.0b6, 2.9.0b7, 2.9.0b8, 2.9.0b9, 2.9.0b10, 2.9b11, 2.9b12, 2.9b13, 2.9b14, 2.9b15, 2.9b20, 2.9b21, 2.9b22, 2.9b23, 2.9b24, 2.9b25, 2.9b26, 2.9b27, 2.9b28, 2.9b30, 2.9b31, 2.9b32, 2.9b33, 2.9b40, 2.9b48, 2.9b50, 2.9.0, 2.9.0.1, 2.9.1, 2.9.2, 2.9.3, 2.9.4, 3.0b0, 3.0b1, 3.0b2, 3.0b5, 3.0b6, 3.0b8, 3.0b9, 3.0b10, 3.0, 3.0.1b120, 3.0.1b121, 3.0.1b300, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.5, 3.0.6b1, 3.0.6b2, 3.0.6b3, 3.0.6, 3.0.8b1, 3.0.8, 3.0.9b10, 3.0.9b11, 3.0.9b20, 3.0.9, 3.0.10b2, 3.0.10b16, 3.0.10, 3.0.11b1, 3.0.11, 3.0.12, 3.0.13b13, 3.0.13b15, 3.0.13b100, 3.0.13, 3.0.14, 3.0.15, 3.0.16, 3.0.17, 3.0.18b0, 3.0.18, 3.0.19b0, 3.0.19b1, 3.0.19b2, 3.0.19, 3.0.20.dev0, 3.0.20, 3.0.21, 3.0.22, 3.0.23.dev1, 3.0.23, 3.0.24, 3.0.25, 3.0.26, 3.1.0, 3.1.1, 3.1.3a0, 3.1.3a2, 3.1.3a3, 3.1.3a4, 3.1.3a5, 3.1.3, 3.1.4b0, 3.1.4b1, 3.1.4b2, 3.1.4b3, 3.1.4b4, 3.1.4b5, 3.1.4, 3.1.5b1, 3.1.5b2, 3.1.5b3, 3.1.5b4, 3.1.5b5, 3.1.5b7, 3.1.5b8, 3.1.5b9, 3.1.5b10, 3.1.5, 3.1.6b1, 3.1.6, 3.1.7, 3.1.8b0, 3.1.8b2, 3.1.8b3, 3.1.8b4, 3.1.8b6, 3.2, 3.2.1b0, 3.2.1b1, 3.2.1b2, 3.3b0, 3.3b1, 3.3, 3.3.1, 3.4b0, 3.4b1, 3.4b2, 3.4b3, 3.4b5, 3.4, 3.4.1, 3.5, 3.6.0b1, 3.6.0b2, 3.6.0b3, 3.6.0b7, 3.6.0b10, 3.6, 3.7, 3.8b1, 3.8b2, 3.8, 3.8.1.dev1, 3.8.1, 3.8.2, 3.9, 3.9.1, 3.10.0, 3.10.1, 3.11.0, 3.12.0b1, 3.12.0b2, 3.12.0b3, 3.12.0b6, 3.12.0b7, 3.12.0, 3.13.0b1, 3.13.0, 3.13.1b0, 3.13.1b1, 3.13.1b2, 3.13.2, 3.14.0a1, 3.14.0, 3.15.0, 3.16.0, 3.16.1b1, 3.16.1, 3.16.2, 3.17.0, 3.17.1b1, 3.17.1b2, 3.17.1, 3.18.0, 3.18.1b1, 3.18.1b2, 3.18.1b3, 3.18.1b4, 3.18.1b5, 3.18.1b6, 3.18.1b7, 3.19.0, 3.19.1, 3.20.0b1, 3.20.0b2, 3.20.0, 3.20.1, 3.21.0, 3.22.0, 3.22.1b1, 3.22.1, 3.23.0, 3.23.1b1, 3.23.1b2, 3.23.1b3, 3.24.0, 3.24.1, 3.25.0, 3.25.1b1, 3.25.1b2, 3.26.0, 3.27.0, 3.28.0, 3.28.1, 3.28.2, 3.28.3, 3.28.4b0, 3.29.0, 3.30.0, 3.31.0, 3.32.0, 3.33.0, 3.33.1, 3.34.0, 3.35.0, 3.35.1, 3.35.2, 3.36.0, 3.36.1, 3.37.0, 3.38.0, 3.39.0, 3.40.0, 3.40.1, 3.41.0, 3.41.1, 3.41.2, 3.42.0, 3.43.0, 3.43.1, 3.43.2, 3.44.0, 3.44.1, 3.44.2, 3.44.3, 3.44.4, 3.45.0b0, 3.45.0b1, 3.45.0b2, 3.45.0b3, 3.45.0b4, 3.45.0b5, 3.45.0b6, 3.45.0b7, 3.45.0b8, 3.45.0b9, 3.45.0b10, 3.45.0b11, 3.45.0b12, 3.45.0b13, 3.45.0, 3.45.1, 3.45.2, 3.46.0, 3.46.1, 3.47.0, 3.47.1, 3.48.0, 3.49.0, 3.50.0, 3.50.1, 3.50.2, 4.0.0b15, 4.0.0, 4.0.1, 4.0.2, 4.1.0, 4.1.1, 4.1.2, 4.2.0, 4.3.0, 4.4.0, 4.4.1, 4.5.0, 4.7.1, 4.8.0, 4.9.0, 4.9.1, 4.10.0, 4.11.0, 4.12.0, 4.13.0, 4.14.0, 4.15.0, 4.16.0, 4.17.0, 4.18.0, 4.19.0, 4.19.1, 4.19.2, 4.20.0, 4.20.1, 4.21.0, 4.22.0, 4.23.0, 4.24.0, 4.25.0, 4.26.0, 4.27.0, 4.28.0, 4.28.1, 4.28.2, 4.28.3, 4.29.0, 4.31.0, 4.31.1, 4.31.2, 4.31.3, 4.31.4, 4.31.5, 4.32.0, 4.32.1, 4.32.2, 4.33.0, 4.35.0, 4.36.0, 4.36.1, 4.37.1, 4.37.2, 4.38.0, 4.38.1, 4.39.0, 4.40.0, 4.41.0, 4.42.0, 4.43.0, 4.44.0, 4.44.1, 5.0.0b1, 5.0.0b5, 5.0.0b6, 5.0.0b7, 5.0.0b8, 5.0.0b9, 5.0.0b10, 5.0.0, 5.0.1, 5.0.2, 5.1.0, 5.3.0, 5.4.0)

然后

pip install gradio==5.4.0

重新运行webui.py在gradio页面中开启一键三连还是报错了

(GPTSoVITS) PS D:\Code\GPT-SoVITS-beta0706> pip install gradio==5.4.0
Collecting gradio==5.4.0Downloading gradio-5.4.0-py3-none-any.whl.metadata (16 kB)
Requirement already satisfied: aiofiles<24.0,>=22.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (23.2.1)
Requirement already satisfied: anyio<5.0,>=3.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (4.6.2.post1)
Requirement already satisfied: fastapi<1.0,>=0.115.2 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (0.115.4)
Requirement already satisfied: ffmpy in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (0.4.0)
Collecting gradio-client==1.4.2 (from gradio==5.4.0)Downloading gradio_client-1.4.2-py3-none-any.whl.metadata (7.1 kB)
Requirement already satisfied: httpx>=0.24.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (0.27.2)
Requirement already satisfied: huggingface-hub>=0.25.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (0.26.2)
Requirement already satisfied: jinja2<4.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (3.1.3)
Requirement already satisfied: markupsafe~=2.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (2.1.5)
Requirement already satisfied: numpy<3.0,>=1.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (1.23.5)
Requirement already satisfied: orjson~=3.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (3.10.10)
Requirement already satisfied: packaging in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (24.1)
Requirement already satisfied: pandas<3.0,>=1.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (2.2.3)
Requirement already satisfied: pillow<12.0,>=8.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (10.2.0)
Requirement already satisfied: pydantic>=2.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (2.9.2)
Requirement already satisfied: pydub in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (0.25.1)
Collecting python-multipart==0.0.12 (from gradio==5.4.0)Downloading python_multipart-0.0.12-py3-none-any.whl.metadata (1.9 kB)
Requirement already satisfied: pyyaml<7.0,>=5.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (6.0.2)
Collecting ruff>=0.2.2 (from gradio==5.4.0)Downloading ruff-0.7.2-py3-none-win_amd64.whl.metadata (25 kB)
Collecting safehttpx<1.0,>=0.1.1 (from gradio==5.4.0)Downloading safehttpx-0.1.1-py3-none-any.whl.metadata (4.1 kB)
Requirement already satisfied: semantic-version~=2.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (2.10.0)
Requirement already satisfied: starlette<1.0,>=0.40.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (0.41.2)
Collecting tomlkit==0.12.0 (from gradio==5.4.0)Using cached tomlkit-0.12.0-py3-none-any.whl.metadata (2.7 kB)
Collecting typer<1.0,>=0.12 (from gradio==5.4.0)Downloading typer-0.12.5-py3-none-any.whl.metadata (15 kB)
Requirement already satisfied: typing-extensions~=4.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (4.12.2)
Requirement already satisfied: uvicorn>=0.14.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==5.4.0) (0.32.0)
Requirement already satisfied: fsspec in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio-client==1.4.2->gradio==5.4.0) (2024.2.0)
Requirement already satisfied: websockets<13.0,>=10.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio-client==1.4.2->gradio==5.4.0) (11.0.3)
Requirement already satisfied: idna>=2.8 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from anyio<5.0,>=3.0->gradio==5.4.0) (3.4)
Requirement already satisfied: sniffio>=1.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from anyio<5.0,>=3.0->gradio==5.4.0) (1.3.1)
Requirement already satisfied: exceptiongroup>=1.0.2 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from anyio<5.0,>=3.0->gradio==5.4.0) (1.2.2)
Requirement already satisfied: certifi in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from httpx>=0.24.1->gradio==5.4.0) (2022.12.7)
Requirement already satisfied: httpcore==1.* in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from httpx>=0.24.1->gradio==5.4.0) (1.0.6)
Requirement already satisfied: h11<0.15,>=0.13 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from httpcore==1.*->httpx>=0.24.1->gradio==5.4.0) (0.14.0)
Requirement already satisfied: filelock in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from huggingface-hub>=0.25.1->gradio==5.4.0) (3.13.1)
Requirement already satisfied: requests in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from huggingface-hub>=0.25.1->gradio==5.4.0) (2.32.3)
Requirement already satisfied: tqdm>=4.42.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from huggingface-hub>=0.25.1->gradio==5.4.0) (4.66.6)
Requirement already satisfied: python-dateutil>=2.8.2 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from pandas<3.0,>=1.0->gradio==5.4.0) (2.9.0.post0)
Requirement already satisfied: pytz>=2020.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from pandas<3.0,>=1.0->gradio==5.4.0) (2024.2)
Requirement already satisfied: tzdata>=2022.7 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from pandas<3.0,>=1.0->gradio==5.4.0) (2024.2)
Requirement already satisfied: annotated-types>=0.6.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from pydantic>=2.0->gradio==5.4.0) (0.7.0)
Requirement already satisfied: pydantic-core==2.23.4 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from pydantic>=2.0->gradio==5.4.0) (2.23.4)
Requirement already satisfied: click>=8.0.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from typer<1.0,>=0.12->gradio==5.4.0) (8.1.7)
Collecting shellingham>=1.3.0 (from typer<1.0,>=0.12->gradio==5.4.0)Using cached shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB)
Collecting rich>=10.11.0 (from typer<1.0,>=0.12->gradio==5.4.0)Downloading rich-13.9.4-py3-none-any.whl.metadata (18 kB)
Requirement already satisfied: colorama in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from click>=8.0.0->typer<1.0,>=0.12->gradio==5.4.0) (0.4.6)
Requirement already satisfied: six>=1.5 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from python-dateutil>=2.8.2->pandas<3.0,>=1.0->gradio==5.4.0) (1.16.0)
Requirement already satisfied: markdown-it-py>=2.2.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from rich>=10.11.0->typer<1.0,>=0.12->gradio==5.4.0) (2.2.0)
Collecting pygments<3.0.0,>=2.13.0 (from rich>=10.11.0->typer<1.0,>=0.12->gradio==5.4.0)Using cached pygments-2.18.0-py3-none-any.whl.metadata (2.5 kB)
Requirement already satisfied: charset-normalizer<4,>=2 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from requests->huggingface-hub>=0.25.1->gradio==5.4.0) (2.1.1)
Requirement already satisfied: urllib3<3,>=1.21.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from requests->huggingface-hub>=0.25.1->gradio==5.4.0) (1.26.13)
Requirement already satisfied: mdurl~=0.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from markdown-it-py>=2.2.0->rich>=10.11.0->typer<1.0,>=0.12->gradio==5.4.0) (0.1.2)
Downloading gradio-5.4.0-py3-none-any.whl (56.7 MB)
Downloading gradio_client-1.4.2-py3-none-any.whl (319 kB)
Downloading python_multipart-0.0.12-py3-none-any.whl (23 kB)
Using cached tomlkit-0.12.0-py3-none-any.whl (37 kB)
Downloading ruff-0.7.2-py3-none-win_amd64.whl (9.4 MB)━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.4/9.4 MB 18.9 MB/s eta 0:00:00
Downloading safehttpx-0.1.1-py3-none-any.whl (8.4 kB)
Downloading typer-0.12.5-py3-none-any.whl (47 kB)
Downloading rich-13.9.4-py3-none-any.whl (242 kB)
Using cached shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB)
Using cached pygments-2.18.0-py3-none-any.whl (1.2 MB)Attempting uninstall: python-multipartFound existing installation: python-multipart 0.0.16Uninstalling python-multipart-0.0.16:Successfully uninstalled python-multipart-0.0.16Attempting uninstall: gradio-clientFound existing installation: gradio_client 0.8.1Uninstalling gradio_client-0.8.1:Successfully uninstalled gradio_client-0.8.1
Successfully installed gradio-5.4.0 gradio-client-1.4.2 pygments-2.18.0 python-multipart-0.0.12 rich-13.9.4 ruff-0.7.2 safehttpx-0.1.1 shellingham-1.5.4 tomlkit-0.12.0 typer-0.12.5
(GPTSoVITS) PS D:\Code\GPT-SoVITS-beta0706> python webui.py
Traceback (most recent call last):File "D:\Code\GPT-SoVITS-beta0706\webui.py", line 875, in <module>app.queue(concurrency_count=511, max_size=1022).launch(
Exception ignored in: <module 'threading' from 'D:\\ProgramData\\anaconda3\\envs\\GPTSoVITS\\lib\\threading.py'>
Traceback (most recent call last):File "D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\threading.py", line 1567, in _shutdownlock.acquire()
KeyboardInterrupt:

因此替换为3.xx.x最后一个版本——3.50.2

pip install gradio=3.50.2

 接下来就可以实现三连进程的正常运行了

(GPTSoVITS) PS D:\Code\GPT-SoVITS-beta0706> pip install gradio==3.50.2
Collecting gradio==3.50.2Downloading gradio-3.50.2-py3-none-any.whl.metadata (17 kB)
Requirement already satisfied: aiofiles<24.0,>=22.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (23.2.1)
Requirement already satisfied: altair<6.0,>=4.2.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (5.4.1)
Requirement already satisfied: fastapi in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (0.115.4)
Requirement already satisfied: ffmpy in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (0.4.0)
Collecting gradio-client==0.6.1 (from gradio==3.50.2)Downloading gradio_client-0.6.1-py3-none-any.whl.metadata (7.1 kB)
Requirement already satisfied: httpx in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (0.27.2)
Requirement already satisfied: huggingface-hub>=0.14.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (0.26.2)
Collecting importlib-resources<7.0,>=1.3 (from gradio==3.50.2)Downloading importlib_resources-6.4.5-py3-none-any.whl.metadata (4.0 kB)
Requirement already satisfied: jinja2<4.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (3.1.3)
Requirement already satisfied: markupsafe~=2.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (2.1.5)
Requirement already satisfied: matplotlib~=3.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (3.9.2)
Requirement already satisfied: numpy~=1.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (1.23.5)
Requirement already satisfied: orjson~=3.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (3.10.10)
Requirement already satisfied: packaging in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (24.1)
Requirement already satisfied: pandas<3.0,>=1.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (2.2.3)
Requirement already satisfied: pillow<11.0,>=8.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (10.2.0)
Requirement already satisfied: pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,<3.0.0,>=1.7.4 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (2.9.2)
Requirement already satisfied: pydub in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (0.25.1)
Requirement already satisfied: python-multipart in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (0.0.12)
Requirement already satisfied: pyyaml<7.0,>=5.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (6.0.2)
Requirement already satisfied: requests~=2.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (2.32.3)
Requirement already satisfied: semantic-version~=2.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (2.10.0)
Requirement already satisfied: typing-extensions~=4.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (4.12.2)
Requirement already satisfied: uvicorn>=0.14.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (0.32.0)
Requirement already satisfied: websockets<12.0,>=10.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio==3.50.2) (11.0.3)
Requirement already satisfied: fsspec in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from gradio-client==0.6.1->gradio==3.50.2) (2024.2.0)
Requirement already satisfied: jsonschema>=3.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from altair<6.0,>=4.2.0->gradio==3.50.2) (4.23.0)
Requirement already satisfied: narwhals>=1.5.2 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from altair<6.0,>=4.2.0->gradio==3.50.2) (1.12.1)
Requirement already satisfied: filelock in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from huggingface-hub>=0.14.0->gradio==3.50.2) (3.13.1)
Requirement already satisfied: tqdm>=4.42.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from huggingface-hub>=0.14.0->gradio==3.50.2) (4.66.6)
Requirement already satisfied: contourpy>=1.0.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from matplotlib~=3.0->gradio==3.50.2) (1.3.0)
Requirement already satisfied: cycler>=0.10 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from matplotlib~=3.0->gradio==3.50.2) (0.12.1)
Requirement already satisfied: fonttools>=4.22.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from matplotlib~=3.0->gradio==3.50.2) (4.54.1)
Requirement already satisfied: kiwisolver>=1.3.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from matplotlib~=3.0->gradio==3.50.2) (1.4.7)
Requirement already satisfied: pyparsing>=2.3.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from matplotlib~=3.0->gradio==3.50.2) (3.2.0)
Requirement already satisfied: python-dateutil>=2.7 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from matplotlib~=3.0->gradio==3.50.2) (2.9.0.post0)
Requirement already satisfied: pytz>=2020.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from pandas<3.0,>=1.0->gradio==3.50.2) (2024.2)
Requirement already satisfied: tzdata>=2022.7 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from pandas<3.0,>=1.0->gradio==3.50.2) (2024.2)
Requirement already satisfied: annotated-types>=0.6.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,<3.0.0,>=1.7.4->gradio==3.50.2) (0.7.0)
Requirement already satisfied: pydantic-core==2.23.4 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,<3.0.0,>=1.7.4->gradio==3.50.2) (2.23.4)
Requirement already satisfied: charset-normalizer<4,>=2 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from requests~=2.0->gradio==3.50.2) (2.1.1)
Requirement already satisfied: idna<4,>=2.5 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from requests~=2.0->gradio==3.50.2) (3.4)
Requirement already satisfied: urllib3<3,>=1.21.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from requests~=2.0->gradio==3.50.2) (1.26.13)
Requirement already satisfied: certifi>=2017.4.17 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from requests~=2.0->gradio==3.50.2) (2022.12.7)
Requirement already satisfied: click>=7.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from uvicorn>=0.14.0->gradio==3.50.2) (8.1.7)
Requirement already satisfied: h11>=0.8 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from uvicorn>=0.14.0->gradio==3.50.2) (0.14.0)
Requirement already satisfied: anyio in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from httpx->gradio==3.50.2) (4.6.2.post1)
Requirement already satisfied: httpcore==1.* in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from httpx->gradio==3.50.2) (1.0.6)
Requirement already satisfied: sniffio in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from httpx->gradio==3.50.2) (1.3.1)
Requirement already satisfied: colorama in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from click>=7.0->uvicorn>=0.14.0->gradio==3.50.2) (0.4.6)
Requirement already satisfied: attrs>=22.2.0 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from jsonschema>=3.0->altair<6.0,>=4.2.0->gradio==3.50.2) (24.2.0)
Requirement already satisfied: jsonschema-specifications>=2023.03.6 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from jsonschema>=3.0->altair<6.0,>=4.2.0->gradio==3.50.2) (2024.10.1)
Requirement already satisfied: referencing>=0.28.4 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from jsonschema>=3.0->altair<6.0,>=4.2.0->gradio==3.50.2) (0.35.1)
Requirement already satisfied: rpds-py>=0.7.1 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from jsonschema>=3.0->altair<6.0,>=4.2.0->gradio==3.50.2) (0.20.0)
Requirement already satisfied: six>=1.5 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from python-dateutil>=2.7->matplotlib~=3.0->gradio==3.50.2) (1.16.0)
Requirement already satisfied: exceptiongroup>=1.0.2 in d:\programdata\anaconda3\envs\gptsovits\lib\site-packages (from anyio->httpx->gradio==3.50.2) (1.2.2)
Downloading gradio-3.50.2-py3-none-any.whl (20.3 MB)━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 20.3/20.3 MB 22.1 MB/s eta 0:00:00
Downloading gradio_client-0.6.1-py3-none-any.whl (299 kB)
Downloading importlib_resources-6.4.5-py3-none-any.whl (36 kB)
Installing collected packages: importlib-resources, gradio-client, gradioAttempting uninstall: gradio-clientFound existing installation: gradio_client 1.4.2Uninstalling gradio_client-1.4.2:Successfully uninstalled gradio_client-1.4.2
Successfully installed gradio-3.50.2 gradio-client-0.6.1 importlib-resources-6.4.5
(GPTSoVITS) PS D:\Code\GPT-SoVITS-beta0706> python webui.py
Running on local URL:  http://0.0.0.0:9874
IMPORTANT: You are using gradio version 3.50.2, however version 4.44.1 is available, please upgrade.
--------
"D:\ProgramData\anaconda3\envs\GPTSoVITS\python.exe" GPT_SoVITS/prepare_datasets/1-get-text.py
"D:\ProgramData\anaconda3\envs\GPTSoVITS\python.exe" GPT_SoVITS/prepare_datasets/1-get-text.py
D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\_utils.py:831: UserWarning: TypedStorage is deprecated. It will be removed in the future and UntypedStorage will be the only storage class. This should only matter to you if you are using storages directly.  To access UntypedStorage directly, use tensor.untyped_storage() instead of tensor.storage()return self.fget.__get__(instance, owner)()
BertForMaskedLM has generative capabilities, as `prepare_inputs_for_generation` is explicitly overwritten. However, it doesn't directly inherit from `GenerationMixin`. From 👉v4.50👈 onwards, `PreTrainedModel` will NOT inherit from `GenerationMixin`, and this model will lose the ability to call `generate` and other related functions.- If you're using `trust_remote_code=True`, you can get rid of this warning by loading the model with an auto class. See https://huggingface.co/docs/transformers/en/model_doc/auto#auto-classes- If you are the owner of the model architecture code, please modify your model class such that it inherits from `GenerationMixin` (after `PreTrainedModel`, otherwise you'll get an exception).- If you are not the owner of the model architecture class, please contact the model code owner to update it.
D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\_utils.py:831: UserWarning: TypedStorage is deprecated. It will be removed in the future and UntypedStorage will be the only storage class. This should only matter to you if you are using storages directly.  To access UntypedStorage directly, use tensor.untyped_storage() instead of tensor.storage()return self.fget.__get__(instance, owner)()
BertForMaskedLM has generative capabilities, as `prepare_inputs_for_generation` is explicitly overwritten. However, it doesn't directly inherit from `GenerationMixin`. From 👉v4.50👈 onwards, `PreTrainedModel` will NOT inherit from `GenerationMixin`, and this model will lose the ability to call `generate` and other related functions.- If you're using `trust_remote_code=True`, you can get rid of this warning by loading the model with an auto class. See https://huggingface.co/docs/transformers/en/model_doc/auto#auto-classes- If you are the owner of the model architecture code, please modify your model class such that it inherits from `GenerationMixin` (after `PreTrainedModel`, otherwise you'll get an exception).- If you are not the owner of the model architecture class, please contact the model code owner to update it.
Building prefix dict from the default dictionary ...
Loading model from cache D:\Code\GPT-SoVITS-beta0706\TEMP\jieba.cache
Building prefix dict from the default dictionary ...
Loading model from cache D:\Code\GPT-SoVITS-beta0706\TEMP\jieba.cache
Loading model cost 0.495 seconds.
Prefix dict has been built succesfully.
Loading model cost 0.489 seconds.
Prefix dict has been built succesfully.
"D:\ProgramData\anaconda3\envs\GPTSoVITS\python.exe" GPT_SoVITS/prepare_datasets/2-get-hubert-wav32k.py
"D:\ProgramData\anaconda3\envs\GPTSoVITS\python.exe" GPT_SoVITS/prepare_datasets/2-get-hubert-wav32k.py
D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\_utils.py:831: UserWarning: TypedStorage is deprecated. It will be removed in the future and UntypedStorage will be the only storage class. This should only matter to you if you are using storages directly.  To access UntypedStorage directly, use tensor.untyped_storage() instead of tensor.storage()return self.fget.__get__(instance, owner)()
D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\_utils.py:831: UserWarning: TypedStorage is deprecated. It will be removed in the future and UntypedStorage will be the only storage class. This should only matter to you if you are using storages directly.  To access UntypedStorage directly, use tensor.untyped_storage() instead of tensor.storage()return self.fget.__get__(instance, owner)()
"D:\ProgramData\anaconda3\envs\GPTSoVITS\python.exe" GPT_SoVITS/prepare_datasets/3-get-semantic.py
"D:\ProgramData\anaconda3\envs\GPTSoVITS\python.exe" GPT_SoVITS/prepare_datasets/3-get-semantic.py
D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\nn\utils\weight_norm.py:30: UserWarning: torch.nn.utils.weight_norm is deprecated in favor of torch.nn.utils.parametrizations.weight_norm.warnings.warn("torch.nn.utils.weight_norm is deprecated in favor of torch.nn.utils.parametrizations.weight_norm.")
D:\ProgramData\anaconda3\envs\GPTSoVITS\lib\site-packages\torch\nn\utils\weight_norm.py:30: UserWarning: torch.nn.utils.weight_norm is deprecated in favor of torch.nn.utils.parametrizations.weight_norm.warnings.warn("torch.nn.utils.weight_norm is deprecated in favor of torch.nn.utils.parametrizations.weight_norm.")
<All keys matched successfully>
<All keys matched successfully>

此时gradio中出现页面为一键三连进程结束

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.xdnf.cn/news/2777.html

如若内容造成侵权/违法违规/事实不符,请联系一条长河网进行投诉反馈,一经查实,立即删除!

相关文章

ISUP协议视频平台EasyCVR视频融合平台接入各类摄像机的方法

安防视频监控ISUP协议视频平台EasyCVR兼容性强、支持灵活拓展&#xff0c;平台可提供视频远程监控、录像、存储与回放、视频转码、视频快照、告警、云台控制、语音对讲、平台级联等视频能力。 想要将摄像机顺利接入EasyCVR平台&#xff0c;实现视频监控的集中管理和分发&#x…

to_sql报错not all arguments converted during string formatting

报错&#xff1a; DatabaseError: Execution failed on sql SELECT name FROM sqlite_master WHERE typetable AND name?;: not all arguments converted during string formattingb 报错的代码如下&#xff1a; import pymysql import pandas as pd con pymysql.connect(…

7.机器学习--K-means算法(聚类)

聚类分析是在没有给定划分类别的情况下&#xff0c;根据数据相似度进行样本分组的一种方法。与分类模型需要使用有类标记样本构成的训练数据不同&#xff0c;聚类模型可以建立在无类标记的数据上&#xff0c;是一种非监督的学习算法。 聚类的输入是一组未被标记的样本&#xff…

GPIO子系统层次与数据结构详解

往期内容 本专栏往期内容&#xff1a; Pinctrl子系统和其主要结构体引入Pinctrl子系统pinctrl_desc结构体进一步介绍Pinctrl子系统中client端设备树相关数据结构介绍和解析inctrl子系统中Pincontroller构造过程驱动分析&#xff1a;imx_pinctrl_soc_info结构体Pinctrl子系统中c…

干货丨通信网络与大模型的融合与协同

本文首发《中兴通讯技术》&#xff0c;2024年4月&#xff0c;第30卷第2期&#xff0c;作者&#xff1a;浙江大学在读本科生任天骐&#xff0c;浙江大学信息与电子工程学院副教授李荣鹏&#xff0c;浙江大学兼任教授、博士生导师张宏纲。边缘计算社区经过授权发布&#xff0c;以…

[ vulnhub靶机通关篇 ] 渗透测试综合靶场 DarkHole:1 通关详解 (附靶机搭建教程)

&#x1f36c; 博主介绍 &#x1f468;‍&#x1f393; 博主介绍&#xff1a;大家好&#xff0c;我是 _PowerShell &#xff0c;很高兴认识大家~ ✨主攻领域&#xff1a;【渗透领域】【数据通信】 【通讯安全】 【web安全】【面试分析】 &#x1f389;点赞➕评论➕收藏 养成习…

对于一个STM32外设的应用有哪一些?可以列举一个实际的设计案例吗?

STM32 具有丰富的外设&#xff0c;以下是一些常见的应用&#xff1a; 1. **GPIO&#xff08;通用输入输出&#xff09;**&#xff1a; - 控制 LED 灯的亮灭。 - 读取按键状态。 - 与外部数字设备进行通信&#xff0c;如驱动数码管。 2. **USART&#xff08;通用同步异步收发器…

iDP3——改进3D扩散策略以赋能人形机器人的训练:不再依赖相机校准和点云分割(含DP3、Diff-Control、ControlNet详解)

前言 今天10.23日&#xff0c;明天1024则将作为长沙程序员代表&#xff0c;在CSDN和长沙相关部门举办的1024程序员节开幕式上发言&#xff0c;欢迎广大开发者来长工作 生活 考察 创业&#xff0c;​包括我司七月也一直在招聘大模型与机器人开发人员 后天&#xff0c;则将和相关…

前端 react 面试题(二)

文章目录 hooks的使用规则为什么hooks要确保在函数组件的最顶层,而不能放置在循环或者条件语句中。react的事件模型react的合成事件是如何实现的react事件传参,可以使用箭头函数或bind方法,这两种哪一种更好使用箭头函数:使用`bind`方法:react的事件模型和vue的区别React …

【P2-10】ESP8266 WIFI模块连接原子云服务器与原子云APP通信

前言:本节实现ESP8266 WIFI模块连接原子云服务器与原子云APP通信。 演示视频: 【物联网】ESP8266 WIFI模块连接原子云服务器与原子云APP通信 目录 1.WIFI模块连接原子云服务器互相通信 2.WIFI模块与原子云APP通信 1.WIFI模块连接原子云服务器互相通信 原子云服务器登陆入…

2024-11-4 学习人工智能的Day21 openCV(3)

图像滤波 所为图像滤波通过滤波器得到另一个图像 什么是滤波器 在深度学习中&#xff0c;滤波器又称为卷积核&#xff0c;滤波的过程成为卷积 卷积核概念 卷积核大小&#xff0c;一般为奇数&#xff0c;如 3*35*57*7 为什么卷积核大小是奇数&#xff1f; 原因是&…

CSS基础知识六(浮动的高度塌陷问题及解决方案)

目录 1.浮动高度塌陷概念 2.下面是几种解决高度塌陷的几种方案&#xff1a; 解决方案一&#xff1a; 解决方案二&#xff1a; 解决方案三&#xff1a; 1.浮动高度塌陷概念 在CSS中&#xff0c;高度塌陷问题指的是父元素没有正确地根据其内部的浮动元素或绝对定位元素来计…

8、raid磁盘阵列

raid级别及概念 不同分区组成的逻辑硬盘&#xff0c;可以实现高可用&#xff0c;即阵列当中有一个分区的硬盘损坏&#xff0c;不影响整个阵列的使用&#xff0c;可以满足企业级的读写性能的要求。 raid磁盘阵列——raid级别&#xff1a; raid0&#xff0c;raid1&#xff0c;…

hivt实战

argoverse数据集和API forcasting包含tracking的结果&#xff0c;然后结合argo-api去获取hdmap数据 重要的api 数据结构 lane segment argoverse-api/argoverse/map_representation/lane_segment.py at master argoverse/argoverse-api GitHub 练习 get started with th…

CVE-2024-26229 Windows CSC服务权限提升漏洞复现

一、漏洞描述 csc.sys驱动程序中带有METHOD_NEITHER I/O控制代码的IOCTL地址验证不正确&#xff0c;导致任意地址写入漏洞。 METHOD_NEITHER是 Windows 驱动程序中的一种 I/O 控制代码数据传输方法。它允许驱动程序在处理 I/O 请求时&#xff0c;直接从用户模式缓冲区读取或向…

Chrome与傲游在隐私保护上的表现

在数字化时代&#xff0c;浏览器作为我们探索互联网世界的重要工具&#xff0c;其隐私保护功能的强弱直接关系到用户的信息安全。本文将深入对比Chrome与傲游两款主流浏览器在隐私保护方面的表现&#xff0c;并提供实用的教程&#xff0c;帮助用户更好地管理自己的隐私设置。&a…

zip文件加密成图片文件-到解密

加密 1&#xff0c;准备&#xff1a;图片 zip文件 2&#xff0c;新建一个.txt 根据自己的对应文件修改&#xff1a; copy 图片名.后缀/b压缩包名.后缀自定义图片名.后缀注意&#xff0c;图片后缀最后保持一至&#xff0c;测试了 jpg png 压缩包 zip 3&#xff0c;把上…

1-ARM Linux驱动开发-MIO控制

一、前言 MIO也属于是字符设备&#xff0c;将MIO复用为GPIO可以实现对LED等外设的控制&#xff0c;其本质是从寄存器层面对硬件的控制。这次主要记录一下GPIO控制LED的驱动。 官网ZYNQ寄存器手册https://docs.amd.com/r/en-US/ug1087-zynq-ultrascale-registers/Overview 二…

深入解析Sysmon日志:增强网络安全与威胁应对的关键一环

不断演进的网络安全领域中&#xff0c;保持对威胁的及时了解至关重要。Sysmon日志在这方面发挥了至关重要的作用&#xff0c;通过提供有价值的见解&#xff0c;使组织能够加强其安全姿态。Windows在企业环境中是主导的操作系统&#xff0c;因此深入了解Windows事件日志、它们的…

HTMLCSS:呈现的3D树之美

效果演示 这段代码通过HTML和CSS创建了一个具有3D效果的树的图形&#xff0c;包括分支、树干和阴影&#xff0c;通过自定义属性和复杂的变换实现了较为逼真的立体效果。 HTML <div class"container"><div class"tree"><div class"…