From: Neil Chudleigh Date: Thu, 7 Sep 2023 09:16:58 +0000 (-0400) Subject: models : add quantum models to download-ggml-model.sh (#1235) X-Git-Tag: upstream/1.7.4~1332 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=aed5d40607b437400907797ed2baa93173bb37aa;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp models : add quantum models to download-ggml-model.sh (#1235) * Add quantized models to download-ggml-model.sh * Update names in download-ggml-model script to normalized --- diff --git a/models/download-ggml-model.sh b/models/download-ggml-model.sh index 23dba76f..288e08d2 100755 --- a/models/download-ggml-model.sh +++ b/models/download-ggml-model.sh @@ -22,7 +22,28 @@ function get_script_path() { models_path="$(get_script_path)" # Whisper models -models=( "tiny.en" "tiny" "base.en" "base" "small.en" "small.en-tdrz" "small" "medium.en" "medium" "large-v1" "large" ) +models=( + "tiny.en" + "tiny" + "tiny-q5_1" + "tiny.en-q5_1" + "base.en" + "base" + "base-q5_1" + "base.en-q5_1" + "small.en" + "small.en-tdrz" + "small" + "small-q5_1" + "small.en-q5_1" + "medium" + "medium.en" + "medium-q5_0" + "medium.en-q5_0" + "large-v1" + "large" + "large-q5_0" +) # list available models function list_models {