mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-08-14 06:28:51 +02:00
files : rename ./extra to ./scripts
This commit is contained in:
8
scripts/convert-all.sh
Executable file
8
scripts/convert-all.sh
Executable file
@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
models=( "tiny.en" "tiny" "base.en" "base" "small.en" "small" "medium.en" "medium" "large-v1" "large-v2" "large-v3" )
|
||||
|
||||
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
|
Reference in New Issue
Block a user