tts-service / rvc /train /process /change_info.py
Jesus Lopez
feat: applio
a8c39f5
raw
history blame contribute delete
382 Bytes
import os
import torch
def change_info(path, info, name):
try:
ckpt = torch.load(path, map_location="cpu")
ckpt["info"] = info
if name == "":
name = os.path.basename(path)
torch.save(ckpt, f"logs/{name}/{name}")
return "Success."
except Exception as error:
print(f"An error occurred changing the info: {error}")