Neil Chudleigh commited on
Commit
b2abb1b
·
unverified ·
1 Parent(s): 887812b

models : add quantum models to download-ggml-model.sh (#1235)

Browse files

* Add quantized models to download-ggml-model.sh

* Update names in download-ggml-model script to normalized

Files changed (1) hide show
  1. models/download-ggml-model.sh +22 -1
models/download-ggml-model.sh CHANGED
@@ -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" )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
  # list available models
28
  function list_models {
 
22
  models_path="$(get_script_path)"
23
 
24
  # Whisper models
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
+ )
47
 
48
  # list available models
49
  function list_models {