Fix argument parser bad practice
Keep parsing inside __main__ block and call methods with arguments Add double -- for long argument names (- reserved for shortcuts)
This commit is contained in:
Regular → Executable
+7
-7
@@ -4,28 +4,28 @@
|
||||
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3 && cd yolov3 && python3 train.py
|
||||
|
||||
# Resume
|
||||
python3 train.py -resume 1
|
||||
python3 train.py --resume 1
|
||||
|
||||
# Detect
|
||||
gsutil cp gs://ultralytics/yolov3.pt yolov3/weights
|
||||
python3 detect.py
|
||||
|
||||
# Test
|
||||
python3 test.py -img_size 416 -weights_path weights/latest.pt
|
||||
python3 test.py --img_size 416 --weights weights/latest.pt
|
||||
|
||||
# Test Darknet
|
||||
python3 test.py -img_size 416 -weights_path ../darknet/backup/yolov3.backup
|
||||
python3 test.py --img_size 416 --weights ../darknet/backup/yolov3.backup
|
||||
|
||||
# Download and Test
|
||||
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3 && cd yolov3
|
||||
wget https://pjreddie.com/media/files/yolov3.weights -P weights
|
||||
python3 test.py -img_size 416 -weights_path weights/backup5.pt -nms_thres 0.45
|
||||
python3 test.py --img_size 416 --weights weights/backup5.pt --nms_thres 0.45
|
||||
|
||||
# Download and Resume
|
||||
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 1
|
||||
python3 test.py -img_size 416 -weights_path weights/latest.pt -conf_thres 0.5
|
||||
python3 train.py --img_size 416 --batch_size 16 --epochs 1 --resume 1
|
||||
python3 test.py --img_size 416 --weights weights/latest.pt --conf_thres 0.5
|
||||
|
||||
# Copy latest.pt to bucket
|
||||
gsutil cp yolov3/weights/latest.pt gs://ultralytics
|
||||
@@ -36,6 +36,6 @@ wget https://storage.googleapis.com/ultralytics/latest.pt
|
||||
|
||||
# Testing
|
||||
sudo rm -rf yolov3 && git clone https://github.com/ultralytics/yolov3 && cd yolov3
|
||||
python3 train.py -epochs 3 -var 64
|
||||
python3 train.py --epochs 3 --var 64
|
||||
sudo shutdown
|
||||
|
||||
|
||||
Reference in New Issue
Block a user