We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61314bc commit a3578e8Copy full SHA for a3578e8
models/download-ggml-model.sh
@@ -22,7 +22,28 @@ function get_script_path() {
22
models_path="$(get_script_path)"
23
24
# Whisper models
25
-models=( "tiny.en" "tiny" "base.en" "base" "small.en" "small.en-tdrz" "small" "medium.en" "medium" "large-v1" "large" )
+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
+)
47
48
# list available models
49
function list_models {
0 commit comments