runAll_maxwell.sh 494 B

1234567891011121314151617
  1. #! bin/bash
  2. # erase "models_info/models_comparisons.csv" file and write new header
  3. file_path='models_info/models_comparisons.csv'
  4. rm ${file_path}
  5. mkdir -p models_info
  6. touch ${file_path}
  7. # add of header
  8. echo 'model_name; vector_size; start; end; nb_zones; metric; mode; train; test; global' >> ${file_path}
  9. for size in {"4","8","16","26","32","40"}; do
  10. for metric in {"lab","mscn","low_bits_4","low_bits_2"}; do
  11. bash generateAndTrain_maxwell.sh ${size} ${metric} &
  12. done
  13. done