TroglodyteDerivations's picture
Upload 290 files
5cf44c2 verified
#!/bin/bash
# Loop through all .pth files and run evaluation with 5 actions
for pth_file in *.pth; do
echo "=================================================================="
echo "Evaluating: $pth_file"
echo "=================================================================="
python mario_nes_controller_eval_2.py "$pth_file" 5
echo "Completed: $pth_file"
echo ""
done