Skip to content

Commit

Permalink
Updated Scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Henvezz95 committed Sep 19, 2024
1 parent 393c501 commit 5443ca7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/k_fold_test_1D_singleROI.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ do
echo "Iteration number ${i+1}"
python3 python/generate_coco_annotations.py -c ./config/generate_coco_annotations_config.yaml -k $i
python3 python/convert_coco_to_yolo.py -c ./annotations/COCO/ -o "./dataset/"
python3 python/create_configuration_yaml.py -s "${IMAGE_SIZE}" -k $i -o "./config/test1D_singleROI.yaml"
python3 python/create_configuration_yaml.py -s "${IMAGE_SIZE}" -k $i -o "./config/test1D_singleROI.yaml" -c "1D"
python3 python/test_single_class.py -c "./config/test1D_singleROI.yaml" -o "./results/reports/test1D_singleROI_${IMAGE_SIZE}_${i}"
done
2 changes: 1 addition & 1 deletion scripts/k_fold_test_2D_singleROI.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ do
echo "Iteration number ${i+1}"
python3 python/generate_coco_annotations.py -c ./config/generate_coco_annotations_config.yaml -k $i
python3 python/convert_coco_to_yolo.py -c ./annotations/COCO/ -o "./dataset/"
python3 python/create_configuration_yaml_new.py -s "${IMAGE_SIZE}" -k $i -o "./config/test2D_singleROI.yaml"
python3 python/create_configuration_yaml_new.py -s "${IMAGE_SIZE}" -k $i -o "./config/test2D_singleROI.yaml" -c "2D"
python3 python/test_single_class.py -c "./config/test2D_singleROI.yaml" -o "./results/reports/test2D_singleROI_${IMAGE_SIZE}_${i}"
done
2 changes: 1 addition & 1 deletion scripts/k_fold_test_multiclass.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ do
echo "Iteration number ${i+1}"
python3 python/generate_coco_annotations.py -c ./config/generate_coco_annotations_config.yaml -k $i
python3 python/convert_coco_to_yolo.py -c ./annotations/COCO/ -o "./dataset/"
python3 python/create_configuration_yaml_new.py -s "${IMAGE_SIZE}" -k $i -o "./config/test_multiclass.yaml"
python3 python/create_configuration_yaml_new.py -s "${IMAGE_SIZE}" -k $i -o "./config/test_multiclass.yaml" -c "multi"
python3 python/test_multi_class.py -c "./config/test_multiclass.yaml" -o "./results/reports/test_multiclass_${IMAGE_SIZE}_${i}"
done

0 comments on commit 5443ca7

Please sign in to comment.