2021-08-07 11:56:00 +08:00
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
def check_model_paths(encoder_path: Path, synthesizer_path: Path, vocoder_path: Path):
|
|
|
|
# This function tests the model paths and makes sure at least one is valid.
|
|
|
|
if encoder_path.is_file() or encoder_path.is_dir():
|
|
|
|
return
|
|
|
|
if synthesizer_path.is_file() or synthesizer_path.is_dir():
|
|
|
|
return
|
|
|
|
if vocoder_path.is_file() or vocoder_path.is_dir():
|
|
|
|
return
|
|
|
|
|
|
|
|
# If none of the paths exist, remind the user to download models if needed
|
|
|
|
print("********************************************************************************")
|
2021-10-12 19:43:29 +08:00
|
|
|
print("Error: Model files not found. Please download the models")
|
2021-08-07 11:56:00 +08:00
|
|
|
print("********************************************************************************\n")
|
|
|
|
quit(-1)
|