2018-08-26 08:51:39 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Start
|
2018-08-26 09:47:38 +00:00
|
|
|
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3 && cd yolov3 && python3 train.py -img_size 416 -epochs 160
|
2018-08-26 08:51:39 +00:00
|
|
|
|
|
|
|
# Resume
|
2018-09-04 12:36:51 +00:00
|
|
|
python3 train.py -img_size 416 -resume 1
|
2018-08-26 08:51:39 +00:00
|
|
|
|
|
|
|
# Detect
|
|
|
|
gsutil cp gs://ultralytics/fresh9_5_e201.pt yolov3/checkpoints
|
2018-09-04 12:36:51 +00:00
|
|
|
python3 detect.py
|
2018-08-26 08:51:39 +00:00
|
|
|
|
2018-09-04 12:36:51 +00:00
|
|
|
# Test
|
2018-09-23 20:25:23 +00:00
|
|
|
python3 test.py -img_size 416 -weights_path checkpoints/latest.pt -conf_thresh 0.5
|
2018-09-10 14:41:02 +00:00
|
|
|
|
2018-09-10 15:00:39 +00:00
|
|
|
# Download and Test
|
2018-09-10 14:41:02 +00:00
|
|
|
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
|
|
|
|
cd yolov3
|
|
|
|
cd checkpoints
|
|
|
|
wget https://pjreddie.com/media/files/yolov3.weights
|
|
|
|
cd ..
|
2018-09-10 15:00:39 +00:00
|
|
|
python3 test.py -img_size 416 -weights_path checkpoints/backup5.pt -nms_thres 0.45
|
2018-10-05 14:38:59 +00:00
|
|
|
|
|
|
|
# Download and Resume
|
|
|
|
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
|
|
|
|
cd yolov3
|
|
|
|
cd checkpoints
|
|
|
|
wget https://storage.googleapis.com/ultralytics/yolov3.pt
|
|
|
|
cp yolov3.pt latest.pt
|
|
|
|
cd ..
|
|
|
|
python3 train.py -img_size 416 -epochs 1 -resume 1
|