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