whisper.cpp/scripts/convert-all.sh

9 lines
328 B
Bash
Raw Normal View History

#!/bin/bash
2024-10-01 14:57:06 +02:00
models=( "tiny.en" "tiny" "base.en" "base" "small.en" "small" "medium.en" "medium" "large-v1" "large-v2" "large-v3" "large-v3-turbo" )
for model in "${models[@]}"; do
python3 models/convert-pt-to-ggml.py ~/.cache/whisper/$model.pt ../whisper models/
mv -v models/ggml-model.bin models/ggml-$model.bin
done