mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-05 19:41:56 +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
@ -33,13 +33,13 @@ from time import time as ttime
|
|||||||
import shutil
|
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)
|
||||||
torch.save(fea, tmp_path)
|
tmp_path="%s%s.pth"%(ttime(),i_part)
|
||||||
shutil.move(tmp_path, "%s/%s" % (dir, name))
|
torch.save(fea,tmp_path)
|
||||||
|
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)
|
||||||
|
@ -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