From d78a79bd258c08aeae78859b21fd3040dd0ad89a Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Thu, 16 Jul 2020 20:49:46 -0700 Subject: [PATCH] Update ci-testing.yml --- .github/workflows/ci-testing.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index 3bfb6f2..fc9201d 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -65,15 +65,15 @@ jobs: # define device di=cpu # inference devices # train - python train.py --weights weights/${{ matrix.yolo5-model }}.pt --cfg models/${{ matrix.yolo5-model }}.yaml --epochs 1 --img 320 --device $di --batch-size 2 + python train.py --weights weights/${{ matrix.yolo5-model }}.pt --cfg models/${{ matrix.yolo5-model }}.yaml --epochs 1 --img 320 --device $di --batch-size 8 # detect official python detect.py --weights weights/${{ matrix.yolo5-model }}.pt --device $di # detect custom python detect.py --weights runs/exp0/weights/last.pt --device $di # test official - python test.py --weights weights/${{ matrix.yolo5-model }}.pt --device $di --batch-size 1 + python test.py --weights weights/${{ matrix.yolo5-model }}.pt --device $di --batch 8 # test custom - python test.py --weights runs/exp0/weights/last.pt --device $di --batch-size 1 + python test.py --weights runs/exp0/weights/last.pt --device $di --batch 8 # inspect python models/yolo.py --cfg models/${{ matrix.yolo5-model }}.yaml # export