ggerganov commited on
Commit
691ac92
·
unverified ·
1 Parent(s): 046f2e5

models : fix HF model URL (close #356)

Browse files
Files changed (1) hide show
  1. models/download-ggml-model.cmd +1 -1
models/download-ggml-model.cmd CHANGED
@@ -40,7 +40,7 @@ if exist "ggml-%model%.bin" (
40
  goto :eof
41
  )
42
 
43
- PowerShell -NoProfile -ExecutionPolicy Bypass -Command "Invoke-WebRequest -Uri https://huggingface.co/datasets/ggerganov/whisper.cpp/raw/main/ggml-%model%.bin -OutFile ggml-%model%.bin"
44
 
45
  if %ERRORLEVEL% neq 0 (
46
  echo Failed to download ggml model %model%
 
40
  goto :eof
41
  )
42
 
43
+ PowerShell -NoProfile -ExecutionPolicy Bypass -Command "Invoke-WebRequest -Uri https://huggingface.co/datasets/ggerganov/whisper.cpp/resolve/main/ggml-%model%.bin -OutFile ggml-%model%.bin"
44
 
45
  if %ERRORLEVEL% neq 0 (
46
  echo Failed to download ggml model %model%