testModelByScene.sh 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #! bin/bash
  2. if [ -z "$1" ]
  3. then
  4. echo "No first argument supplied"
  5. echo "Need of begin vector index"
  6. exit 1
  7. fi
  8. if [ -z "$2" ]
  9. then
  10. echo "No first argument supplied"
  11. echo "Need of end vector index"
  12. exit 1
  13. fi
  14. if [ -z "$3" ]
  15. then
  16. echo "No second argument supplied"
  17. echo "Need of model input"
  18. exit 1
  19. fi
  20. if [ -z "$4" ]
  21. then
  22. echo "No third argument supplied"
  23. echo "Need of separator char : ':', ';'"
  24. exit 1
  25. fi
  26. if [ -z "$5" ]
  27. then
  28. echo "No fourth argument supplied"
  29. echo "Need of index row indication : 0 or 1"
  30. exit 1
  31. fi
  32. INPUT_BEGIN=$1
  33. INPUT_END=$2
  34. INPUT_MODEL=$3
  35. INPUT_SEP=$4
  36. INPUT_ROW=$5
  37. zones="0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15"
  38. for scene in {"A","B","C","D","E","F","G","H","I"}; do
  39. for mode in {"svd","svdn","svdne"}; do
  40. FILENAME="data_svm/data_${mode}_B${INPUT_BEGIN}_E${INPUT_END}_scene${scene}"
  41. python generate_data_svm.py --output ${FILENAME} --interval "${INPUT_BEGIN},${INPUT_END}" --kind ${mode} --scenes "${scene}" --zones "${zones}" --percent 1 --sep "${INPUT_SEP}" --rowindex "${INPUT_ROW}"
  42. python prediction.py --data "$FILENAME.train" --model ${INPUT_MODEL} --output "${INPUT_MODEL}_Scene${scene}_mode${mode}.prediction"
  43. done
  44. done