mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-06 03:57:44 +08:00
support chinese name as model(exp) name
support chinese name as model(exp) name
This commit is contained in:
parent
8ed4d157b3
commit
dd2c4d6d71
@ -36,12 +36,12 @@ import shutil
|
|||||||
def my_save(fea,path):#####fix issue: torch.save doesn't support chinese path
|
def my_save(fea,path):#####fix issue: torch.save doesn't support chinese path
|
||||||
dir=os.path.dirname(path)
|
dir=os.path.dirname(path)
|
||||||
name=os.path.basename(path)
|
name=os.path.basename(path)
|
||||||
tmp_path = "%s/%s%s.pth" % (dir, ttime(), i_part)
|
# tmp_path="%s/%s%s.pth"%(dir,ttime(),i_part)
|
||||||
|
tmp_path="%s%s.pth"%(ttime(),i_part)
|
||||||
torch.save(fea,tmp_path)
|
torch.save(fea,tmp_path)
|
||||||
shutil.move(tmp_path,"%s/%s"%(dir,name))
|
shutil.move(tmp_path,"%s/%s"%(dir,name))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
txt_path = "%s/2-name2text-%s.txt" % (opt_dir, i_part)
|
txt_path = "%s/2-name2text-%s.txt" % (opt_dir, i_part)
|
||||||
if os.path.exists(txt_path) == False:
|
if os.path.exists(txt_path) == False:
|
||||||
bert_dir = "%s/3-bert" % (opt_dir)
|
bert_dir = "%s/3-bert" % (opt_dir)
|
||||||
|
@ -35,7 +35,8 @@ import shutil
|
|||||||
def my_save(fea,path):#####fix issue: torch.save doesn't support chinese path
|
def my_save(fea,path):#####fix issue: torch.save doesn't support chinese path
|
||||||
dir=os.path.dirname(path)
|
dir=os.path.dirname(path)
|
||||||
name=os.path.basename(path)
|
name=os.path.basename(path)
|
||||||
tmp_path="%s/%s%s.pth"%(dir,ttime(),i_part)
|
# tmp_path="%s/%s%s.pth"%(dir,ttime(),i_part)
|
||||||
|
tmp_path="%s%s.pth"%(ttime(),i_part)
|
||||||
torch.save(fea,tmp_path)
|
torch.save(fea,tmp_path)
|
||||||
shutil.move(tmp_path,"%s/%s"%(dir,name))
|
shutil.move(tmp_path,"%s/%s"%(dir,name))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user