runAll_maxwell_corr_custom.sh 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #! bin/bash
  2. # erase "models_info/models_comparisons.csv" file and write new header
  3. file_path='models_info/models_comparisons.csv'
  4. erased=$1
  5. if [ "${erased}" == "Y" ]; then
  6. echo "Previous data file erased..."
  7. rm ${file_path}
  8. mkdir -p models_info
  9. touch ${file_path}
  10. # add of header
  11. echo 'model_name; vector_size; start; end; nb_zones; metric; mode; tran_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. start_index=0
  14. end_index=24
  15. # selection of four scenes (only maxwell)
  16. scenes="A, D, G, H"
  17. metric="lab"
  18. for label in {"0","1"}; do
  19. for highest in {"0","1"}; do
  20. for nb_zones in {4,6,8,10,12}; do
  21. for size in {5,10,15,20,25,30,35,40}; do
  22. for mode in {"svd","svdn","svdne"}; do
  23. for model in {"svm_model","ensemble_model","ensemble_model_v2"}; do
  24. FILENAME="data/${model}_N${size}_B${start_index}_E${size}_nb_zones_${nb_zones}_${metric}_${mode}_corr_L${label}_H${highest}"
  25. MODEL_NAME="${model}_N${size}_B${start_index}_E${size}_nb_zones_${nb_zones}_${metric}_${mode}_corr_L${label}_H${highest}"
  26. echo $FILENAME
  27. # only compute if necessary (perhaps server will fall.. Just in case)
  28. if grep -q "${MODEL_NAME}" "${file_path}"; then
  29. echo "${MODEL_NAME} results already generated..."
  30. else
  31. python generate_data_model_corr_random.py --output ${FILENAME} --n ${size} --highest ${highest} --label ${label} --kind ${mode} --metric ${metric} --scenes "${scenes}" --nb_zones "${nb_zones}" --percent 1 --renderer "maxwell" --step 10 --random 1 --custom 1
  32. python train_model.py --data ${FILENAME} --output ${MODEL_NAME} --choice ${model}
  33. # use of interval but it is not really an interval..
  34. python save_model_result_in_md_maxwell.py --interval "${start_index},${size}" --model "saved_models/${MODEL_NAME}.joblib" --mode "${mode}" --metric ${metric}
  35. fi
  36. done
  37. done
  38. done
  39. done
  40. done
  41. done