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 ^
3030base base-q5_1 base-q8_0 ^
3131base.en base.en-q5_1 base.en-q8_0 ^
3232small 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 ^
3434medium medium-q5_0 medium-q8_0 ^
3535medium.en medium.en-q5_0 medium.en-q8_0 ^
3636large-v1 ^
@@ -74,8 +74,13 @@ if exist "%models_path%\\ggml-%model%.bin" (
7474 echo Model %model% already exists. Skipping download.
7575 goto :eof
7676)
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\" "
7782
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+ )
7984
8085if %ERRORLEVEL% neq 0 (
8186 echo Failed to download ggml model %model%
You can’t perform that action at this time.
0 commit comments