feat: refactor AlphaBetaSearch and ClassicalBot for improved evaluation and organization
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
@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%
|
||||
Reference in New Issue
Block a user