File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ tiny.en tiny.en-q5_1 tiny.en-q8_0 ^
30
30
base base-q5_1 base-q8_0 ^
31
31
base.en base.en-q5_1 base.en-q8_0 ^
32
32
small small-q5_1 small-q8_0 ^
33
- small.en small.en-q5_1 small.en-q8_0 ^
33
+ small.en small.en-q5_1 small.en-q8_0 small.en-tdrz ^
34
34
medium medium-q5_0 medium-q8_0 ^
35
35
medium.en medium.en-q5_0 medium.en-q8_0 ^
36
36
large-v1 ^
@@ -74,8 +74,13 @@ if exist "%models_path%\\ggml-%model%.bin" (
74
74
echo Model %model% already exists. Skipping download.
75
75
goto :eof
76
76
)
77
+ echo %model% | findstr tdrz
78
+ if %ERRORLEVEL% neq 0 (
79
+ PowerShell -NoProfile -ExecutionPolicy Bypass -Command " Start-BitsTransfer -Source https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-%model% .bin -Destination \" %models_path% \\ggml-%model% .bin\" "
80
+ ) else (
81
+ PowerShell -NoProfile -ExecutionPolicy Bypass -Command " Start-BitsTransfer -Source https://huggingface.co/akashmjn/tinydiarize-whisper.cpp/resolve/main/ggml-%model% .bin -Destination \" %models_path% \\ggml-%model% .bin\" "
77
82
78
- PowerShell -NoProfile -ExecutionPolicy Bypass -Command " Start-BitsTransfer -Source https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml- %model% .bin -Destination \ " %models_path% \\ggml- %model% .bin\ " "
83
+ )
79
84
80
85
if %ERRORLEVEL% neq 0 (
81
86
echo Failed to download ggml model %model%
You can’t perform that action at this time.
0 commit comments