diff --git a/Makefile b/Makefile index cdab5d1e8c33e380deb3c43004653706a19f1d44..e5e4b95326df051d0bf1fadec1b1d0a15e5d06e3 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,14 @@ train1: python3 src/yolov5/train.py --img 640 --batch 16 --epochs 5 --data my-drone.yaml --weights projects/Detect_drone/exp27/weights/best.pt -detect1: - python3 src/yolov5/detect.py --weights src/yolov5/runs/train/exp13/weights/best.pt --source data/videos/VID_20220208_150059.mp4 +detect_base_weights: + python3 tools/yolov5/detect.py --weights data/base_weights/best.pt --source data/videos/VID_20220208_150059.mp4 -detect2: - python3 src/yolov5/detect.py --weights src/yolov5/runs/train/exp13/weights/best.pt --source data/videos/2022-02-15-154943.mp4 \ No newline at end of file +detect_base_weights_test: + python3 tools/yolov5/detect.py --weights data/base_weights/best.pt --source data/videos/2022-02-15-154943.mp4 + +detect_colab_weights: + python3 tools/yolov5/detect.py --weights data/colab_weights/best.pt --source data/videos/VID_20220208_150059.mp4 + +detect_colab_weights2: + python3 tools/yolov5/detect.py --weights data/colab_weights/best.pt --source data/videos/2022-02-15-154638.mp4 \ No newline at end of file diff --git a/data/google_colab/best.pt b/data/colab_weights/best.pt similarity index 100% rename from data/google_colab/best.pt rename to data/colab_weights/best.pt diff --git a/data/google_colab/last.pt b/data/colab_weights/last.pt similarity index 100% rename from data/google_colab/last.pt rename to data/colab_weights/last.pt