Files
NowChessSystems/modules/bot/run_nnue_pipeline.bat
T

23 lines
405 B
Batchfile

@echo off
REM NNUE Pipeline launcher from bot directory
setlocal
echo Launching NNUE Training Pipeline...
echo.
REM Check if we're in the right directory
if not exist "python" (
echo ERROR: python directory not found
echo Please run this script from the modules\bot directory
exit /b 1
)
REM Run the pipeline
cd python
call run_pipeline.bat
set RESULT=%ERRORLEVEL%
cd ..
exit /b %RESULT%