mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-11-07 16:44:13 +01:00
2cdfc4e025
* whisper : add support for large v3 * bench : fix build + fix go bindings * bench : fix n_mels * models : update readme
9 lines
308 B
Bash
Executable File
9 lines
308 B
Bash
Executable File
#!/bin/bash
|
|
|
|
models=( "tiny.en" "tiny" "base.en" "base" "small.en" "small" "medium.en" "medium" "large-v1" "large-v2" "large" )
|
|
|
|
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
|