1
0
mirror of https://github.com/ggerganov/whisper.cpp.git synced 2025-07-04 00:11:12 +02:00

models : Faster download for models on windows using BitTransfer ()

This commit is contained in:
WhiteOlivierus
2023-10-30 20:18:12 +01:00
committed by GitHub
parent dfe4bc6e59
commit 45c87b5481

@ -40,7 +40,7 @@ if exist "ggml-%model%.bin" (
goto :eof
)
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "Invoke-WebRequest -Uri https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-%model%.bin -OutFile ggml-%model%.bin"
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "Start-BitsTransfer -Source https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-%model%.bin -Destination ggml-%model%.bin"
if %ERRORLEVEL% neq 0 (
echo Failed to download ggml model %model%