From 96b53be703eefa5920fd2dcc9f21e3788ca63ec8 Mon Sep 17 00:00:00 2001 From: Hayo <632244510@qq.com> Date: Wed, 17 Apr 2024 17:33:01 +0800 Subject: [PATCH] Update api.py (#979) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复SynthesizerTrn kwargs 传递异常。 --- api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api.py b/api.py index ea0e39d..015299a 100644 --- a/api.py +++ b/api.py @@ -174,11 +174,12 @@ def change_sovits_weights(sovits_path): hps = dict_s2["config"] hps = DictToAttrRecursive(hps) hps.model.semantic_frame_rate = "25hz" + model_params_dict = vars(hps.model) vq_model = SynthesizerTrn( hps.data.filter_length // 2 + 1, hps.train.segment_size // hps.data.hop_length, n_speakers=hps.data.n_speakers, - **hps.model + **model_params_dict ) if ("pretrained" not in sovits_path): del vq_model.enc_q