run_no_surrogate_rendering.sh 940 B

1234567891011121314151617181920212223242526272829303132
  1. #! /bin/bash
  2. # default param
  3. ILS=10
  4. LS=100
  5. SS=1050 # Keep aware of surrogate never started
  6. LENGTH=32 # number of features
  7. POP=20
  8. ORDER=1
  9. TRAIN_EVERY=10
  10. #output="rendering-attributes-ILS_${ILS}-POP_${POP}-LS_${LS}-SS_${SS}-SO_${ORDER}-SE_${TRAIN_EVERY}"
  11. DATASET="rnn/data/datasets/features-selection-rendering-scaled/features-selection-rendering-scaled"
  12. for run in {1,2,3,4,5};
  13. do
  14. # for POP in {20,60,100};
  15. # do
  16. #for ORDER in {1,2};
  17. #for ORDER in {1};
  18. #do
  19. #for LS in {100,500,1000};
  20. #for LS in {10};
  21. #do
  22. output="no-rendering-attributes-POP_${POP}-LS_${LS}-RUN_${run}"
  23. echo "Run optim attributes using: ${output}"
  24. python find_best_attributes_no_surrogate.py --data ${DATASET} --start_surrogate ${SS} --length 32 --ils ${ILS} --ls ${LS} --pop ${POP} --order ${ORDER} --trai$
  25. #done
  26. #done
  27. # done
  28. done