Update api.py (#979)

修复SynthesizerTrn kwargs 传递异常。
This commit is contained in:
Hayo 2024-04-17 17:33:01 +08:00 committed by GitHub
parent 9c4ba08ccb
commit 96b53be703
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

3
api.py
View File

@ -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