Skip to content

Commit a3578e8

Browse files
authored
models : add quantum models to download-ggml-model.sh (ggml-org#1235)
* Add quantized models to download-ggml-model.sh * Update names in download-ggml-model script to normalized
1 parent 61314bc commit a3578e8

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

models/download-ggml-model.sh

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,28 @@ function get_script_path() {
2222
models_path="$(get_script_path)"
2323

2424
# Whisper models
25-
models=( "tiny.en" "tiny" "base.en" "base" "small.en" "small.en-tdrz" "small" "medium.en" "medium" "large-v1" "large" )
25+
models=(
26+
"tiny.en"
27+
"tiny"
28+
"tiny-q5_1"
29+
"tiny.en-q5_1"
30+
"base.en"
31+
"base"
32+
"base-q5_1"
33+
"base.en-q5_1"
34+
"small.en"
35+
"small.en-tdrz"
36+
"small"
37+
"small-q5_1"
38+
"small.en-q5_1"
39+
"medium"
40+
"medium.en"
41+
"medium-q5_0"
42+
"medium.en-q5_0"
43+
"large-v1"
44+
"large"
45+
"large-q5_0"
46+
)
2647

2748
# list available models
2849
function list_models {

0 commit comments

Comments
 (0)