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
+21
View File
@@ -0,0 +1,21 @@
#!/bin/bash
# NNUE Pipeline launcher from bot directory
echo "Launching NNUE Training Pipeline..."
echo ""
# Check if we're in the right directory
if [ ! -d "python" ]; then
echo "ERROR: python directory not found"
echo "Please run this script from the modules/bot directory"
exit 1
fi
# Run the pipeline
cd python
bash run_pipeline.sh
RESULT=$?
cd ..
exit $RESULT