Spaces:
Running
Running
File size: 202 Bytes
2a8b06e |
1 2 3 4 5 6 7 8 |
#!/bin/sh
export COQUI_TOS_AGREED=1
export TTS_HOME=voices
for model in $*; do
python -c "from TTS.utils.manage import ModelManager; ModelManager().download_model('$model')"
done
./download_samples.sh |