You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stop extracting features when hubert_base.pt does not exist. (#535)
* support detection of pretrained model, support train without pretrained model path in web ui
* support detection of pretrained model, support train without pretrained model path in web ui
* support detection of pretrained model, support train without pretrained model path in web ui
* Stop extracting features when hubert_base.pt is not exist.
* Stop extracting features when hubert_base.pt is not exist.
* Make error more noticeable
printt("load model(s) from {}".format(model_path))
66
+
# if hubert model is exist
67
+
if (os.access(model_path, os.F_OK) ==False):
68
+
printt("Error: Extracting is shut down because %s does not exist, you may download it from https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main"%model_path)
0 commit comments