Files
annotations/build/download_models.cmd
T
2025-05-07 17:31:16 +03:00

15 lines
295 B
Batchfile

echo Download onnx model
set CURRENT_DIR=%cd%
REM Change to the parent directory of the current location
cd /d %~dp0
if not exist cdn_manager.exe (
echo Install cdn_manager
call build_cdn_manager
)
call cdn_manager.exe download models
move models ..\dist-dlls\
cd /d %CURRENT_DIR%