2022-10-17 17:37:06 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-12-06 17:48:57 +01:00
|
|
|
models=( "tiny.en" "tiny" "base.en" "base" "small.en" "small" "medium.en" "medium" "large-v1" "large" )
|
2022-10-17 17:37:06 +02:00
|
|
|
|
|
|
|
for model in "${models[@]}"; do
|
2022-10-22 17:17:08 +02:00
|
|
|
python3 models/convert-pt-to-ggml.py ~/.cache/whisper/$model.pt ../whisper models/
|
2022-10-17 17:37:06 +02:00
|
|
|
mv -v models/ggml-model.bin models/ggml-$model.bin
|
|
|
|
done
|