mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:16:30 +00:00
15 lines
295 B
Batchfile
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%
|