22 lines
382 B
Bash
22 lines
382 B
Bash
#!/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
|