move rust to root

master
Bel LaPointe 2023-11-30 09:02:11 -07:00
parent bf3dd75074
commit ff0f34f80b
8 changed files with 0 additions and 9 deletions

View File

@ -1,9 +0,0 @@
#!/bin/bash
src="https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml"
cd "$(dirname "$(realpath "$BASH_SOURCE")")"
# Whisper models
for model in "tiny.en" "base.en" "small.en" "medium.en"; do
test -f ./ggml-$model.bin || wget --quiet --show-progress -O ./ggml-$model.bin "$src-$model.bin"
done