|
name: CI CPU testing |
|
|
|
on: |
|
push: |
|
pull_request: |
|
schedule: |
|
- cron: "0 0 * * *" |
|
|
|
jobs: |
|
cpu-tests: |
|
|
|
runs-on: ${{ matrix.os }} |
|
strategy: |
|
fail-fast: false |
|
matrix: |
|
os: [ubuntu-latest, macos-latest, windows-latest] |
|
python-version: [3.8] |
|
model: ['yolov5s'] |
|
|
|
|
|
timeout-minutes: 50 |
|
steps: |
|
- uses: actions/checkout@v2 |
|
- name: Set up Python ${{ matrix.python-version }} |
|
uses: actions/setup-python@v2 |
|
with: |
|
python-version: ${{ matrix.python-version }} |
|
|
|
|
|
|
|
- name: Get pip cache |
|
id: pip-cache |
|
run: | |
|
python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)" |
|
|
|
- name: Cache pip |
|
uses: actions/cache@v1 |
|
with: |
|
path: ${{ steps.pip-cache.outputs.dir }} |
|
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('requirements.txt') }} |
|
restore-keys: | |
|
${{ runner.os }}-${{ matrix.python-version }}-pip- |
|
|
|
- name: Install dependencies |
|
run: | |
|
python -m pip install --upgrade pip |
|
pip install -qr requirements.txt -f https://download.pytorch.org/whl/cpu/torch_stable.html |
|
pip install -q onnx |
|
python --version |
|
pip --version |
|
pip list |
|
shell: bash |
|
|
|
- name: Download data |
|
run: | |
|
python -c "from utils.google_utils import * ; gdrive_download('1n_oKgR81BJtqk75b00eAjdv03qVCQn2f', 'coco128.zip')" |
|
mv ./coco128 ../ |
|
|
|
- name: Tests workflow |
|
run: | |
|
export PYTHONPATH="$PWD" # to run *.py. files in subdirectories |
|
di=cpu # inference devices # define device |
|
|
|
|
|
python train.py --img 256 --batch 8 --weights weights/${{ matrix.model }}.pt --cfg models/${{ matrix.model }}.yaml --epochs 1 --device $di |
|
|
|
python detect.py --weights weights/${{ matrix.model }}.pt --device $di |
|
python detect.py --weights runs/exp0/weights/last.pt --device $di |
|
|
|
python test.py --img 256 --batch 8 --weights weights/${{ matrix.model }}.pt --device $di |
|
python test.py --img 256 --batch 8 --weights runs/exp0/weights/last.pt --device $di |
|
|
|
python models/yolo.py --cfg models/${{ matrix.model }}.yaml |
|
python models/export.py --img 256 --batch 1 --weights weights/${{ matrix.model }}.pt |
|
shell: bash |
|
|