From 9a35b3e022d184e7ed2e7ce612413d765f50eb67 Mon Sep 17 00:00:00 2001 From: blue-fish <67130644+blue-fish@users.noreply.github.com> Date: Wed, 17 Feb 2021 23:29:21 -0800 Subject: [PATCH] Emphasize error message when model files not found (#668) --- utils/modelutils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/modelutils.py b/utils/modelutils.py index e73a3f5ee..6acaa984e 100644 --- a/utils/modelutils.py +++ b/utils/modelutils.py @@ -10,6 +10,8 @@ def check_model_paths(encoder_path: Path, synthesizer_path: Path, vocoder_path: return # If none of the paths exist, remind the user to download models if needed + print("********************************************************************************") print("Error: Model files not found. Follow these instructions to get and install the models:") - print("https://github.com/CorentinJ/Real-Time-Voice-Cloning/wiki/Pretrained-models\n") + print("https://github.com/CorentinJ/Real-Time-Voice-Cloning/wiki/Pretrained-models") + print("********************************************************************************\n") quit(-1)