Renamed confusion matrix components. (#825) #31
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: "[valor-lite] synthetic benchmarks" | |
on: | |
push: | |
branches: "**" | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
run-benchmarks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: install lite | |
run: pip install -e . | |
working-directory: ./lite | |
- name: benchmark semantic segmentation | |
run: python benchmark_semantic_segmentation.py | |
working-directory: ./lite/benchmarks/synthetic/ |