Fix error in index file path (#1502)

This commit is contained in:
CNajm 2023-11-05 22:41:25 -08:00 committed by GitHub
parent 2b0971e917
commit 3f7644b56a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -169,18 +169,17 @@ class VC:
if self.hubert_model is None: if self.hubert_model is None:
self.hubert_model = load_hubert(self.config) self.hubert_model = load_hubert(self.config)
file_index = ( if file_index:
( file_index = file_index.strip(" ") \
file_index.strip(" ") .strip('"') \
.strip('"') .strip("\n") \
.strip("\n") .strip('"') \
.strip('"') .strip(" ") \
.strip(" ")
.replace("trained", "added") .replace("trained", "added")
) elif file_index2:
if file_index != "" file_index = file_index2
else file_index2 else:
) # 防止小白写错,自动帮他替换掉 file_index = "" # 防止小白写错,自动帮他替换掉
audio_opt = self.pipeline.pipeline( audio_opt = self.pipeline.pipeline(
self.hubert_model, self.hubert_model,