car-detection-bayes/utils/gcp.sh

33 lines
1.0 KiB
Bash
Raw Normal View History

2018-08-26 08:51:39 +00:00
#!/usr/bin/env bash
# Start
2018-11-21 18:22:35 +00:00
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3 && cd yolov3 && python3 train.py
2018-08-26 08:51:39 +00:00
# Resume
2018-11-05 22:34:26 +00:00
python3 train.py -resume 1
2018-08-26 08:51:39 +00:00
# Detect
2018-11-05 22:34:26 +00:00
gsutil cp gs://ultralytics/yolov3.pt yolov3/weights
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-11-23 18:45:39 +00:00
python3 test.py -img_size 416 -weights_path weights/latest.pt
2018-09-10 14:41:02 +00:00
2018-09-10 15:00:39 +00:00
# Download and Test
2018-11-07 14:17:00 +00:00
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3 && cd yolov3
wget https://pjreddie.com/media/files/yolov3.weights -P weights
2018-11-04 17:19:07 +00:00
python3 test.py -img_size 416 -weights_path weights/backup5.pt -nms_thres 0.45
2018-10-05 14:38:59 +00:00
# Download and Resume
2018-11-07 14:17:00 +00:00
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3 && cd yolov3
wget https://storage.googleapis.com/ultralytics/yolov3.pt -O weights/latest.pt
2018-10-11 15:43:34 +00:00
python3 train.py -img_size 416 -batch_size 16 -epochs 1 -resume 1
2018-11-04 17:19:07 +00:00
python3 test.py -img_size 416 -weights_path weights/latest.pt -conf_thres 0.5
2018-10-09 17:22:33 +00:00
2018-11-07 14:17:00 +00:00
# Copy latest.pt to bucket
gsutil cp yolov3/weights/latest.pt gs://ultralytics
2018-11-13 11:20:01 +00:00
# Copy latest.pt from bucket
gsutil cp gs://ultralytics/latest.pt yolov3/weights/latest.pt