runAll_maxwell_custom_filters_split.sh 1.0 KB

123456789101112131415161718192021222324
  1. #! bin/bash
  2. # erase "results/models_comparisons.csv" file and write new header
  3. file_path='results/models_comparisons.csv'
  4. erased=$1
  5. if [ "${erased}" == "Y" ]; then
  6. echo "Previous data file erased..."
  7. rm ${file_path}
  8. mkdir -p results
  9. touch ${file_path}
  10. # add of header
  11. echo 'model_name; vector_size; start; end; nb_zones; metric; mode; train_size; val_size; test_size; train_pct_size; val_pct_size; test_pct_size; train_acc; val_acc; test_acc; all_acc; F1_train; recall_train; roc_auc_train; F1_val; recall_val; roc_auc_val; F1_test; recall_test; roc_auc_test; F1_all; recall_all; roc_auc_all;' >> ${file_path}
  12. fi
  13. for size in {"4","8","16","26","32","40","60","80"}; do
  14. for metric in {"highest_sv_std_filters","lowest_sv_std_filters","highest_wave_sv_std_filters","lowest_sv_std_filters","highest_sv_std_filters_full","lowest_sv_std_filters_full","highest_sv_entropy_std_filters","lowest_sv_entropy_std_filters"}; do
  15. bash data_processing/generateAndTrain_maxwell_custom_filters_split.sh ${size} ${metric} &
  16. done
  17. done