Spaces:
Configuration error
Configuration error
File size: 307 Bytes
98d3f44 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/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
|