Class configuration file for defining which classes to group during nms #266
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
main: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-22.04, ubuntu-20.04, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Upgrade pip | |
run: python3 -m pip install --upgrade pip | |
- name: Install Poetry | |
run: pip3 install poetry --user | |
- name: Install Dependencies | |
run: poetry install | |
# Prints the help pages of all scripts to see if the imports etc. work | |
- name: Test the help pages | |
run: | | |
poetry run yoeo-train -h | |
poetry run yoeo-test -h | |
poetry run yoeo-detect -h | |
- name: Demo Training | |
run: poetry run yoeo-train --data config/custom.data --epochs 30 | |
- name: Demo Evaluate | |
run: poetry run yoeo-test --data config/custom.data --weights checkpoints/yoeo_checkpoint_29.pth | |
- name: Demo Detect | |
run: poetry run yoeo-detect --batch_size 2 --weights checkpoints/yoeo_checkpoint_29.pth | |
linter: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Flake8 | |
uses: TrueBrain/actions-flake8@master | |
with: | |
only_warn: 1 | |
max_line_length: 150 | |
path: yoeo |