medium.en worthless

master
Bel LaPointe 2023-03-30 11:47:30 -06:00
parent 680cf99728
commit c6af20a25d
1 changed files with 10 additions and 4 deletions

View File

@ -5,7 +5,13 @@ if [ ! -d ./git.d ]; then
fi
cd ./git.d
if [ ! -f ./samples/gb1.wav ]; then
make samples
fi
if [ ! -f ./main ]; then
make
bash ./models/download-ggml-model.sh tiny.en
time ./main -m ./models/ggml-tiny.en.bin -f samples/gb1.wav -t 4
fi
if [ ! -f ./models/ggml-${MODEL:-tiny.en}.bin ]; then
bash ./models/download-ggml-model.sh ${MODEL:-tiny.en}
fi
time ./main -m ./models/ggml-${MODEL:-tiny.en}.bin -f ./samples/gb1.wav -t 4