save_teacher_data.sh 1.5 KB

1234567891011121314151617181920212223242526272829
  1. if [ "$1" = "medium" ]; then
  2. echo "###############################################################"
  3. echo "########### Saving coin-collector medium data ############"
  4. echo "###############################################################"
  5. python -m crest.agents.lstm_drqn.prepare_gist -c config -type medium -ng 50 -th 0.7 -att
  6. python -m crest.agents.lstm_drqn.prepare_gist -c config -type medium -ng 100 -th 0.7 -att
  7. python -m crest.agents.lstm_drqn.prepare_gist -c config -type medium -ng 500 -th 0.7 -att
  8. fi
  9. if [ "$1" = "easy" ]; then
  10. echo "###############################################################"
  11. echo "########### Saving coin-collector easy data ###############"
  12. echo "###############################################################"
  13. python -m crest.agents.lstm_drqn.prepare_gist -c config -type easy -ng 25 -th 0.5 -att
  14. python -m crest.agents.lstm_drqn.prepare_gist -c config -type easy -ng 50 -th 0.5 -att
  15. python -m crest.agents.lstms_drqn.prepare_gist -c config -type easy -ng 500 -th 0.5 -att
  16. fi
  17. if [ "$1" = "hard" ]; then
  18. echo "###############################################################"
  19. echo "########### Saving coin-collector hard data ###############"
  20. echo "###############################################################"
  21. python -m crest.agents.lstm_drqn.prepare_gist -c config -type hard -ng 50 -th 0.7 -att
  22. python -m crest.agents.lstm_drqn.prepare_gist -c config -type hard -ng 100 -th 0.7 -att
  23. python -m crest.agents.lstm_drqn.prepare_gist -c config -type hard -ng 500 -th 0.7 -att
  24. fi