car-detection-bayes/utils/gcp.sh

50 lines
1.4 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
2019-03-25 18:39:14 +00:00
rm -rf yolov3 weights coco
2019-03-25 17:35:39 +00:00
git clone https://github.com/ultralytics/yolov3
2019-03-25 18:39:14 +00:00
bash yolov3/weights/download_yolov3_weights.sh && cp -r weights yolov3
2019-02-20 22:21:42 +00:00
bash yolov3/data/get_coco_dataset.sh
2019-03-25 17:35:39 +00:00
git clone https://github.com/cocodataset/cocoapi && cd cocoapi/PythonAPI && make && cd ../.. && cp -r cocoapi/PythonAPI/pycocotools yolov3
sudo reboot now
2019-02-20 22:21:42 +00:00
2019-03-25 18:39:14 +00:00
# Re-clone
sudo rm -rf yolov3
git clone https://github.com/ultralytics/yolov3 # master
# git clone -b multi_gpu --depth 1 https://github.com/ultralytics/yolov3 # branch
2019-03-17 22:59:24 +00:00
cp -r weights yolov3
2019-03-25 18:39:14 +00:00
cp -r cocoapi/PythonAPI/pycocotools yolov3
cd yolov3
# Train
python3 train.py
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 15:53:06 +00:00
python3 detect.py
2018-08-26 08:51:39 +00:00
2018-09-04 12:36:51 +00:00
# Test
2019-03-25 18:39:14 +00:00
python3 detect.py --save-json --conf-thres 0.001 --img-size 416
2018-09-10 14:41:02 +00:00
2019-03-25 18:39:14 +00:00
# Git pull
git pull https://github.com/ultralytics/yolov3 # master
git pull https://github.com/ultralytics/yolov3 multi_gpu # branch
2018-12-04 18:17:03 +00:00
2019-03-25 18:39:14 +00:00
# Test Darknet training
python3 test.py --weights ../darknet/backup/yolov3.backup
2018-10-09 17:22:33 +00:00
2019-03-25 18:39:14 +00:00
# Copy latest.pt TO bucket
gsutil cp yolov3/weights/latest1gpu.pt gs://ultralytics
2018-11-13 11:20:01 +00:00
2019-03-25 18:39:14 +00:00
# Copy latest.pt FROM bucket
2018-11-13 11:20:01 +00:00
gsutil cp gs://ultralytics/latest.pt yolov3/weights/latest.pt
2019-03-25 18:39:14 +00:00
wget https://storage.googleapis.com/ultralytics/latest.pt -O weights/latest.pt
2018-11-13 11:20:01 +00:00
2019-03-22 15:53:06 +00:00
# Trade Studies
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
cp -r weights yolov3
cd yolov3 && python3 train.py --batch-size 16 --epochs 1
2018-11-27 17:43:46 +00:00
sudo shutdown