greenhouse/utils/gcp.sh

23 lines
606 B
Bash
Raw Normal View History

2018-08-26 10:51:39 +02:00
#!/usr/bin/env bash
# Start
2018-08-26 11:47:38 +02: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 10:51:39 +02:00
# Resume
2018-09-04 14:36:51 +02:00
python3 train.py -img_size 416 -resume 1
2018-08-26 10:51:39 +02:00
# Detect
gsutil cp gs://ultralytics/fresh9_5_e201.pt yolov3/checkpoints
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-09-10 15:50:37 +02:00
python3 test.py -img_size 416 -weights_path checkpoints/yolov3.weights
2018-09-10 16:41:02 +02: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 ..
python3 test.py -img_size 416 -weights_path checkpoints/yolov3.weights