opus/dnn/download_model.sh
Jean-Marc Valin 72cc88dfdd
FARGAN model update
Finished adversarial training on 800k model. Also, move weights to a new
location.
2023-11-28 04:11:53 -05:00

10 lines
185 B
Bash
Executable file

#!/bin/sh
set -e
model=opus_data-$1.tar.gz
if [ ! -f $model ]; then
echo "Downloading latest model"
wget https://media.xiph.org/opus/models/$model
fi
tar xvomf $model