已解决,部署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.rhkb.cn/news/464407.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Chrome 130 版本开发者工具(DevTools)更新内容

Chrome 130 版本开发者工具&#xff08;DevTools&#xff09;更新内容 一、网络&#xff08;Network&#xff09;面板更新 1. 重新定义网络过滤器 网络面板获新增了一些过滤条件&#xff0c;这些过滤条件是根据反馈重新设计的&#xff0c;特定于类型的过滤条件保持不变&…

Java之包,抽象类,接口

目录 包 导入包 静态导入 将类放入包 常见的系统包 抽象类 语法规则 注意事项&#xff1a; 抽象类的作用 接口 实现多个接口 接口间的继承 接口使用实例 &#xff08;法一&#xff09;实现Comparable接口的compareTo()方法 &#xff08;法二&#xff09;实现Comp…

【linux】HTTPS 协议原理

1. 了解 HTTPS 协议原理 &#xff08;一&#xff09;认识 HTTPS HTTPS 也是一种应用层协议&#xff0c;是在 HTTP 协议的基础上引入了一个加密层 因为 HTTP协议的内容都是按照文本的方式进行传输的&#xff0c;这个过程中&#xff0c;可能会出现一些篡改的情况 &#xff08;…

sql server 文件备份恢复

备份情况 在备份 lys_log_1324.bak 日志文件前&#xff0c;删除table_1表 现在恢复文件 恢复文件&#xff08;使用norecovery&#xff09; RESTORE DATABASE [lys] FILE Nlys, FILE Nlys_02 FROM DISK ND:\liyuanshuai\lys_filegroup.bak WITH FILE 1, NORECOVERY, …

Docker-安装

操作系统&#xff1a;Ubuntu 20.04.6 LTS 更新apt sudo apt update 删除旧版本docker sudo apt-get remove docker docker-engine docker.io 安装docker sudo apt install docker.io 查看docker版本 docker --version 启动docker 启动docker sudo systemctl start docker 启用…

CM API方式设置YARN队列资源

简述 对于CDH版本我们可以参考Fayson的文章,本次是CDP7.1.7 CM7.4.4 ,下面只演示一个设置队列容量百分比的示例,其他请参考cloudera官网。 获取cookies文件 生成cookies.txt文件 curl -i -k -v -c cookies.txt -u admin:admin http://192.168.242.100:7180/api/v44/clusters …

Openlayers高级交互(18/20):根据feature,将图形适配到最可视化窗口

本示例的目的是介绍如何在vue+openlayers中使用extent,使用feature fit的方式来适配窗口。当加载到页面上几个图形要充分展示在窗口的时候,可以用这种方式来平铺到页面中。 效果图 专栏名称内容介绍Openlayers基础实战 (72篇)专栏提供73篇文章,为小白群体提供基础知识及示…

鸿蒙HarmonyOS开发:给应用添加基础类型通知和进度条类型通知(API 12)

文章目录 一、通知介绍1、通知表现形式2、通知结构3、请求通知授权 二、创建通知1、发布基础类型通知2、发布进度类型通知3、更新通知4、移除通知 三、设置通知通道1、通知通道类型 四、创建通知组五、为通知添加行为意图1、导入模块。2、创建WantAgentInfo信息。4、创建WantAg…

Armv8的安全启动

目录 1. Trust Firmware 2. TF-A启动流程 3. TF-M启动流程 3.1 BL1 3.2 BL2 4.小结 在之前汽车信息安全 -- 再谈车规MCU的安全启动文章里&#xff0c;我们详细描述了TC3xx 、RH850、NXPS32K3的安全启动流程&#xff0c;而在车控类ECU中&#xff0c;我们也基本按照这个流程…

CAN总线学习笔记(1、CAN总线定义)

CAN总线学习笔记&#xff08;1、CAN总线定义&#xff09; 江协科技CAN总线入门教程视频学习笔记 CAN特性 两根通信线&#xff08;CAN_H\CAN_L&#xff09;,两根线&#xff0c;无需工地 差分信号&#xff0c;抗干扰能力强 高速CAN&#xff08;ISO11898&#xff09;&#xff…

【算法】【优选算法】双指针(下)

目录 一、611.有效三⻆形的个数1.1 左右指针解法1.2 暴力解法 二、LCR 179.查找总价格为目标值的两个商品2.1 左右指针解法2.2 暴力解法 三、15.三数之和3.1 左右指针解法3.2 暴力解法 四、18.四数之和4.1 左右指针解法4.2 暴力解法 一、611.有效三⻆形的个数 题目链接&#x…

Docker 镜像体积优化实践:从基础镜像重建到层压缩的全流程指南

​ 由于最近在发布的时候发现docker镜像体积变得越来越大&#xff0c;导致整个打包发布流程变得非常耗时了。所以又接到一个差事&#xff0c;优化最终镜像体积。顺便也记录一下docker镜像体积优化的一些步骤。 大概步骤可以分为以下几个步骤&#xff1a; 重做基础镜像&#x…

路径规划 | ROS中多个路径规划算法可视化与性能对比分析

目录 0 专栏介绍1 引言2 禁用局部规划器3 路径规划定性对比实验3.1 加载路径规划器和可视化插件3.2 设置起点和终点3.3 选择规划器规划3.4 不同规划器对比3.5 路径保存和加载 4 路径规划定量对比实验4.1 计算规划耗时4.2 计算规划长度4.3 计算拓展节点数4.4 计算路径曲率4.5 计…

十四届蓝桥杯STEMA考试Python真题试卷第二套第五题

来源:十四届蓝桥杯STEMA考试Python真题试卷第二套编程第五题 本题属于迷宫类问题,适合用DFS算法解决,解析中给出了Python中 map() 和列表推导式的应用技巧。最后介绍了DFS算法的两种常见实现方式——递归实现、栈实现,应用场景——迷宫类问题、图的连通性、树的遍历、拓朴排…

【CSS】——基础入门常见操作

阿华代码&#xff0c;不是逆风&#xff0c;就是我疯 你们的点赞收藏是我前进最大的动力&#xff01;&#xff01; 希望本文内容能够帮助到你&#xff01;&#xff01; 目录 一&#xff1a;CSS引入 二&#xff1a;CSS对元素进行美化 1&#xff1a;style修饰 2&#xff1a;选…

RV1126-SDK学习之OSD实现原理

RV1126-SDK学习之OSD实现原理 前言 本文简单记录一下我在学习RV1126的SDK当中OSD绘制的原理的过程。 在学习OSD的过程当中&#xff0c;可能需要补充的基础知识&#xff1a; OSD是什么&#xff1f; BMP图像文件格式大致组成&#xff1f; 图像调色&#xff08;Palette&#…

Vehicle OS软件平台解决方案

在智能汽车快速迭代的趋势之下&#xff0c;广义操作系统Vehicle OS应运而生&#xff0c;针对应用软件开发周期缩短和底层硬件迭代速度加快的背景&#xff0c;Vehicle OS将应用软件开发和底层硬件迭代解耦。它降低了迭代工作量并节约成本&#xff0c;用标准化的接口来助力软件定…

Chromium Mojo(IPC)进程通信演示 c++(1)

网上搜索关于mojo教程 多数都是理论 加上翻译谷歌mojo文档的&#xff0c;但是如何自定义两个进程使用mojo通信呢&#xff1f;看下面的完整例子介绍&#xff1a;&#xff08;本人也是参考谷歌代码例子改编而成&#xff09; 本文演示了client.exe和service.exe 通过mojo::Incomin…

sparkSQL面试题

一、查询所有数学课程成绩大于语文课程成绩的学生学号 数据 1,yuwen,43 1,shuxue,55 2,yuwen,77 2,shuxue,88 3,yuwen,98 3,shuxue,65 3,yingyu,88 基本步骤&#xff1a; 进行行转列比较语文与数学的成绩 SQL代码&#xff1a; with t1 as(SELECT id,sum(if(name yuwen,sc…

算法|牛客网华为机试21-30C++

牛客网华为机试 上篇&#xff1a;算法|牛客网华为机试10-20C 文章目录 HJ21 简单密码HJ22 汽水瓶HJ23 删除字符串中出现次数最少的字符HJ24 合唱队HJ25 数据分类处理HJ26 字符串排序HJ27 查找兄弟单词HJ28 素数伴侣HJ29 字符串加解密HJ30 字符串合并处理 HJ21 简单密码 题目描…