car-detection-bayes/utils/gcp.sh

56 lines
2.0 KiB
Bash
Raw Normal View History

2018-08-26 08:51:39 +00:00
#!/usr/bin/env bash
2019-02-20 22:21:42 +00:00
# New VM
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
bash yolov3/data/get_coco_dataset.sh
2019-02-26 14:12:21 +00:00
sudo rm -rf cocoapi && git clone https://github.com/cocodataset/cocoapi && cd cocoapi/PythonAPI && make && cd ../.. && cp -r cocoapi/PythonAPI/pycocotools yolov3
sudo shutdown
2019-02-20 22:21:42 +00:00
2018-08-26 08:51:39 +00:00
# Start
2019-03-17 22:59:24 +00:00
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
cp -r weights yolov3
2019-03-22 13:08:03 +00:00
cd yolov3 && python3 train.py --batch-size 16 --epochs 1
sudo shutdown
2018-08-26 08:51:39 +00:00
# Resume
python3 train.py --resume
2018-08-26 08:51:39 +00:00
# Detect
2019-03-22 13:08:03 +00:00
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
cd yolov3 && python3 detect.py
2018-08-26 08:51:39 +00:00
# Clone branch
sudo rm -rf yolov3 && git clone -b multi_gpu --depth 1 https://github.com/ultralytics/yolov3
2019-03-17 22:59:24 +00:00
cd yolov3 && python3 train.py --batch-size 26
sudo rm -rf yolov3 && git clone -b multigpu --depth 1 https://github.com/alexpolichroniadis/yolov3
cp coco.data yolov3/cfg
2019-03-17 22:59:24 +00:00
cd yolov3 && python3 train.py --batch-size 26
2018-09-04 12:36:51 +00:00
# Test
2019-02-26 14:12:21 +00:00
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
sudo rm -rf cocoapi && git clone https://github.com/cocodataset/cocoapi && cd cocoapi/PythonAPI && make && cd ../.. && cp -r cocoapi/PythonAPI/pycocotools yolov3
2019-02-27 11:51:24 +00:00
cd yolov3 && python3 test.py --save-json --conf-thres 0.005
2018-09-10 14:41:02 +00:00
2018-12-04 18:17:03 +00:00
# Test Darknet
python3 test.py --img_size 416 --weights ../darknet/backup/yolov3.backup
2018-12-04 18:17:03 +00:00
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
python3 train.py --img_size 416 --batch_size 16 --epochs 1 --resume
python3 test.py --img_size 416 --weights 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
2018-12-03 14:42:10 +00:00
wget https://storage.googleapis.com/ultralytics/latest.pt
2018-11-13 11:20:01 +00:00
2018-11-27 17:43:46 +00:00
# Testing
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3 && cd yolov3
python3 train.py --epochs 3 --var 64
2018-11-27 17:43:46 +00:00
sudo shutdown