lower batch-size

pull/1/head
Jirka 5 years ago
parent 613b9d6d98
commit 3bf77ca180

@ -47,21 +47,28 @@ jobs:
pip list pip list
shell: bash shell: bash
- name: Download data #- name: Download data
run: | # run: |
python3 -c "from utils.google_utils import *; gdrive_download('1n_oKgR81BJtqk75b00eAjdv03qVCQn2f', 'coco128.zip')" && mv ./coco128 ../ # python3 -c "from utils.google_utils import *; gdrive_download('1n_oKgR81BJtqk75b00eAjdv03qVCQn2f', 'coco128.zip')" && mv ./coco128 ../
- name: Tests - name: Tests
run: | run: |
for x in yolov5s yolov5m yolov5l yolov5x # models for x in yolov5s yolov5m yolov5l yolov5x # models
do do
di=cpu # inference devices di=cpu # inference devices
python train.py --weights $x.pt --cfg $x.yaml --epochs 3 --img 320 --device $di # train # train
python detect.py --weights $x.pt --device $di # detect official python train.py --weights $x.pt --cfg $x.yaml --epochs 3 --img 320 --device $di --batch-size 2
python detect.py --weights runs/exp0/weights/last.pt --device $di # detect custom # detect official
python test.py --weights $x.pt --device $di # test official python detect.py --weights $x.pt --device $di --batch-size 2
python test.py --weights runs/exp0/weights/last.pt --device $di # test custom # detect custom
python models/yolo.py --cfg $x.yaml # inspect python detect.py --weights runs/exp0/weights/last.pt --device $di --batch-size 2
python models/export.py --weights $x.pt --img 640 --batch 1 # export # test official
python test.py --weights $x.pt --device $di --batch-size 2
# test custom
python test.py --weights runs/exp0/weights/last.pt --device $di --batch-size 2
# inspect
python models/yolo.py --cfg $x.yaml
# export
python models/export.py --weights $x.pt --img 640 --batch 1
done done
shell: bash shell: bash

Loading…
Cancel
Save