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
pull/1263/head
Neil Chudleigh 2023-09-07 05:16:58 -04:00 committed by GitHub
parent afa5477d1c
commit aed5d40607
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 1 deletions

View File

@ -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 {