This commit is contained in:
Glenn Jocher
2019-03-22 15:08:03 +02:00
parent 75d8cbdd5f
commit b31f8fb017
2 changed files with 7 additions and 8 deletions
+4 -3
View File
@@ -9,14 +9,15 @@ sudo shutdown
# Start
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
cp -r weights yolov3
cd yolov3 && python3 train.py --batch-size 16 --num-workers 4
cd yolov3 && python3 train.py --batch-size 16 --epochs 1
sudo shutdown
# Resume
python3 train.py --resume
# Detect
gsutil cp gs://ultralytics/yolov3.pt yolov3/weights
python3 detect.py
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
cd yolov3 && python3 detect.py
# Clone branch
sudo rm -rf yolov3 && git clone -b multi_gpu --depth 1 https://github.com/ultralytics/yolov3