feat: refactor AlphaBetaSearch and ClassicalBot for improved evaluation and organization

This commit is contained in:
2026-04-07 22:46:44 +02:00
parent 558f43d0f6
commit 6a9ac55b31
28 changed files with 3618 additions and 12 deletions
+22
View File
@@ -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%