mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-06 03:57:44 +08:00
修复v3 lora模型的载入问题
This commit is contained in:
parent
a12826ed36
commit
d9fdb57895
@ -158,7 +158,7 @@ default_v3:
|
|||||||
|
|
||||||
def set_seed(seed:int):
|
def set_seed(seed:int):
|
||||||
seed = int(seed)
|
seed = int(seed)
|
||||||
seed = seed if seed != -1 else random.randrange(1 << 32)
|
seed = seed if seed != -1 else random.randint(0, 2**32 - 1)
|
||||||
print(f"Set seed to {seed}")
|
print(f"Set seed to {seed}")
|
||||||
os.environ['PYTHONHASHSEED'] = str(seed)
|
os.environ['PYTHONHASHSEED'] = str(seed)
|
||||||
random.seed(seed)
|
random.seed(seed)
|
||||||
@ -428,7 +428,8 @@ class TTS:
|
|||||||
info= path_sovits_v3 + i18n("SoVITS V3 底模缺失,无法加载相应 LoRA 权重")
|
info= path_sovits_v3 + i18n("SoVITS V3 底模缺失,无法加载相应 LoRA 权重")
|
||||||
raise FileExistsError(info)
|
raise FileExistsError(info)
|
||||||
|
|
||||||
dict_s2 = torch.load(weights_path, map_location=self.configs.device,weights_only=False)
|
# dict_s2 = torch.load(weights_path, map_location=self.configs.device,weights_only=False)
|
||||||
|
dict_s2 = load_sovits_new(weights_path)
|
||||||
hps = dict_s2["config"]
|
hps = dict_s2["config"]
|
||||||
|
|
||||||
hps["model"]["semantic_frame_rate"] = "25hz"
|
hps["model"]["semantic_frame_rate"] = "25hz"
|
||||||
|
@ -130,7 +130,7 @@ def inference(text, text_lang,
|
|||||||
):
|
):
|
||||||
|
|
||||||
seed = -1 if keep_random else seed
|
seed = -1 if keep_random else seed
|
||||||
actual_seed = seed if seed not in [-1, "", None] else random.randrange(1 << 32)
|
actual_seed = seed if seed not in [-1, "", None] else random.randint(0, 2**32 - 1)
|
||||||
inputs={
|
inputs={
|
||||||
"text": text,
|
"text": text,
|
||||||
"text_lang": dict_language[text_lang],
|
"text_lang": dict_language[text_lang],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user