50 lines
1.4 KiB
Bash
Executable File
50 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# New VM
|
|
rm -rf yolov3 weights coco
|
|
git clone https://github.com/ultralytics/yolov3
|
|
bash yolov3/weights/download_yolov3_weights.sh && cp -r weights yolov3
|
|
bash yolov3/data/get_coco_dataset.sh
|
|
git clone https://github.com/cocodataset/cocoapi && cd cocoapi/PythonAPI && make && cd ../.. && cp -r cocoapi/PythonAPI/pycocotools yolov3
|
|
sudo reboot now
|
|
|
|
# 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
|
|
cp -r weights yolov3
|
|
cp -r cocoapi/PythonAPI/pycocotools yolov3
|
|
cd yolov3
|
|
|
|
# Train
|
|
python3 train.py
|
|
|
|
# Resume
|
|
python3 train.py --resume
|
|
|
|
# Detect
|
|
python3 detect.py
|
|
|
|
# Test
|
|
python3 detect.py --save-json --conf-thres 0.001 --img-size 416
|
|
|
|
# Git pull
|
|
git pull https://github.com/ultralytics/yolov3 # master
|
|
git pull https://github.com/ultralytics/yolov3 multi_gpu # branch
|
|
|
|
# Test Darknet training
|
|
python3 test.py --weights ../darknet/backup/yolov3.backup
|
|
|
|
# Copy latest.pt TO bucket
|
|
gsutil cp yolov3/weights/latest1gpu.pt gs://ultralytics
|
|
|
|
# Copy latest.pt FROM bucket
|
|
gsutil cp gs://ultralytics/latest.pt yolov3/weights/latest.pt
|
|
wget https://storage.googleapis.com/ultralytics/latest.pt -O weights/latest.pt
|
|
|
|
# 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
|
|
sudo shutdown
|