You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
309 B

  1. timestamp() {
  2. date +"%T"
  3. }
  4. cd serverPredictor
  5. timestamp
  6. echo "Starting training the model: classifierChooser.py"
  7. python classifierChooser.py
  8. timestamp
  9. echo "Starting serverPredictor"
  10. xterm -hold -e 'python serverPredictor.py' &
  11. sleep 4
  12. timestamp
  13. echo "Starting test.sh"
  14. xterm -hold -e 'bash test.sh' &