This commit is contained in:
Glenn Jocher 2018-11-04 18:19:07 +01:00
parent 741626c55b
commit 0c89122aab
1 changed files with 6 additions and 6 deletions

View File

@ -7,25 +7,25 @@ sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3 && cd yolo
python3 train.py -img_size 416 -resume 1
# Detect
gsutil cp gs://ultralytics/fresh9_5_e201.pt yolov3/checkpoints
gsutil cp gs://ultralytics/fresh9_5_e201.pt yolov3/weights
python3 detect.py
# Test
python3 test.py -img_size 416 -weights_path checkpoints/latest.pt -conf_thres 0.5
python3 test.py -img_size 416 -weights_path weights/latest.pt -conf_thres 0.5
# Download and Test
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
cd yolov3/checkpoints
cd yolov3/weights
wget https://pjreddie.com/media/files/yolov3.weights
cd ..
python3 test.py -img_size 416 -weights_path checkpoints/backup5.pt -nms_thres 0.45
python3 test.py -img_size 416 -weights_path weights/backup5.pt -nms_thres 0.45
# Download and Resume
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3
cd yolov3/checkpoints
cd yolov3/weights
wget https://storage.googleapis.com/ultralytics/yolov3.pt
cp yolov3.pt latest.pt
cd ..
python3 train.py -img_size 416 -batch_size 16 -epochs 1 -resume 1
python3 test.py -img_size 416 -weights_path checkpoints/latest.pt -conf_thres 0.5
python3 test.py -img_size 416 -weights_path weights/latest.pt -conf_thres 0.5