Hi,
Trying to use basic TTS like:
$ tts --text "Good morning world" \
--model_name tts_models/en/ljspeech/tacotron2-DCA \
--config_path Acoustic/tts_models--en--ljspeech--tacotron2-DCA/config.json \
--model_path Acoustic/tts_models--en--ljspeech--tacotron2-DCA/model_file.pth.tar \
--vocoder_name vocoder_models/en/ljspeech/mulitband-melgan \
--vocoder_path Vocoder/vocoder_models--en--ljspeech--mulitband-melgan/model_file.pth.tar \
--vocoder_config_path Vocoder/vocoder_models--en--ljspeech--mulitband-melgan/config.json \
--out_path /tmp/
It works fine - but although the models could be found at indicated locations I cannot prevent the download of models from some Google drive.
2021-02-26 10:50:21.535612: I tensorflow/stream_executor/platform/default/dso_loader.cc:48] Successfully opened dynamic library libcudart.so.10.1
> Downloading model to /home/someuser/.local/share/tts/tts_models--en--ljspeech--tacotron2-DCA
Downloading...
The corresponding config.json
files are modified to point to the right stats_path
.
Trying to setup this on multiple PCs and the download bit is very annoying.
Is there a way to prevent this download - am i missing something obvious here?