路径:/wetts/examples/aishell-3/vits/inference.py、inference_onnx.py
当在run.sh中运行stage和stop_stage为2或者3的时候会分别调用这两个推理文件处理test.txt,在运行到这的时候都会报错,提示:
for line in open(args.test_file):
audio_path, speaker, text = line.strip().split("|")
报错截图:

修改建议:
for line in open(args.test_file):
audio_path, speaker, text,_ = line.strip().split("|")
希望得到您的回复!
路径:/wetts/examples/aishell-3/vits/inference.py、inference_onnx.py

当在run.sh中运行stage和stop_stage为2或者3的时候会分别调用这两个推理文件处理test.txt,在运行到这的时候都会报错,提示:
for line in open(args.test_file):
audio_path, speaker, text = line.strip().split("|")
报错截图:
修改建议:
for line in open(args.test_file):
audio_path, speaker, text,_ = line.strip().split("|")
希望得到您的回复!