Add models from Hugging Face/transformers by MLAgility - part 2 #782
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
# Basic windows ci workflow for model zoo. | |
# Runs model checker for models updated in the PR | |
name: Windows CI | |
on: | |
push: | |
branches: [ main, new-models] | |
pull_request: | |
branches: [ main, new-models] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python-version: ['3.11'] | |
architecture: ['x64'] | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout repo | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: ${{ matrix.architecture }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install onnx onnxruntime requests py-cpuinfo | |
# Print CPU info for debugging ONNX Runtime inference difference | |
python -m cpuinfo | |
- name: Test new models by onnx and onnxruntime | |
run: | | |
python workflow_scripts/test_models.py --target all --drop |