From 87a3b908ee5d8a38e79c9964f7008e515d7d5fc5 Mon Sep 17 00:00:00 2001 From: Abyss-Seeker <112790054+Abyss-Seeker@users.noreply.github.com> Date: Thu, 13 Feb 2025 23:12:43 +0800 Subject: [PATCH] Update inference_webui.py (#2043) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复在Colab使用自行训练的v2模型时可能遇到的UnpicklingError: Weights only load failed. --- GPT_SoVITS/inference_webui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPT_SoVITS/inference_webui.py b/GPT_SoVITS/inference_webui.py index c371f43..ccb4099 100644 --- a/GPT_SoVITS/inference_webui.py +++ b/GPT_SoVITS/inference_webui.py @@ -242,7 +242,7 @@ def change_sovits_weights(sovits_path,prompt_language=None,text_language=None): visible_inp_refs=True yield {'__type__':'update', 'choices':list(dict_language.keys())}, {'__type__':'update', 'choices':list(dict_language.keys())}, prompt_text_update, prompt_language_update, text_update, text_language_update,{"__type__": "update", "visible": visible_sample_steps},{"__type__": "update", "visible": visible_inp_refs},{"__type__": "update", "value": False,"interactive":True if model_version!="v3"else False} - dict_s2 = torch.load(sovits_path, map_location="cpu") + dict_s2 = torch.load(sovits_path, map_location="cpu", weights_only=False) hps = dict_s2["config"] hps = DictToAttrRecursive(hps) hps.model.semantic_frame_rate = "25hz"