greenhouse/utils/gcp.sh

32 lines
939 B
Bash
Raw Normal View History

2018-08-26 10:51:39 +02:00
#!/usr/bin/env bash
# Start
2018-11-05 23:34:26 +01:00
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3 && cd yolov3 && python3 train.py -batch_size 8
2018-08-26 10:51:39 +02:00
# Resume
2018-11-05 23:34:26 +01:00
python3 train.py -resume 1
2018-08-26 10:51:39 +02:00
# Detect
2018-11-05 23:34:26 +01:00
gsutil cp gs://ultralytics/yolov3.pt yolov3/weights
2018-09-04 14:36:51 +02:00
python3 detect.py
2018-08-26 10:51:39 +02:00
2018-09-04 14:36:51 +02:00
# Test
2018-11-04 18:19:07 +01:00
python3 test.py -img_size 416 -weights_path weights/latest.pt -conf_thres 0.5
2018-09-10 16:41:02 +02:00
2018-09-10 17:00:39 +02:00
# Download and Test
2018-09-10 16:41:02 +02:00
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
2018-11-04 18:19:07 +01:00
cd yolov3/weights
2018-09-10 16:41:02 +02:00
wget https://pjreddie.com/media/files/yolov3.weights
cd ..
2018-11-04 18:19:07 +01:00
python3 test.py -img_size 416 -weights_path weights/backup5.pt -nms_thres 0.45
2018-10-05 16:38:59 +02:00
# Download and Resume
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
2018-11-04 18:19:07 +01:00
cd yolov3/weights
2018-10-05 16:38:59 +02:00
wget https://storage.googleapis.com/ultralytics/yolov3.pt
cp yolov3.pt latest.pt
cd ..
2018-10-11 17:43:34 +02:00
python3 train.py -img_size 416 -batch_size 16 -epochs 1 -resume 1
2018-11-04 18:19:07 +01:00
python3 test.py -img_size 416 -weights_path weights/latest.pt -conf_thres 0.5
2018-10-09 19:22:33 +02:00