testsite / install_models.sh
peteralexandercharles's picture
Upload 11 files
98d3f44
raw
history blame contribute delete
307 Bytes
#!/bin/bash
set -e
VERSION="0.03"
download_models() {
local version="$1"
local filename="kaldi-models-$version.zip"
local url="https://lowerquality.com/gentle/$filename"
wget -O $filename $url
unzip $filename
rm $filename
}
echo "Downloading models for v$VERSION..." 1>&2
download_models $VERSION