Spaces:
Sleeping
Sleeping
Neil Chudleigh
commited on
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
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=(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 {
|