PERMANENT DRAFT: TF grouped convolutions check #2015
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: demo | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
test-demo: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python: ["3.8"] | |
framework: [tensorflow, pytorch] | |
steps: | |
- if: matrix.os == 'macos-latest' | |
name: Install MacOS prerequisites | |
run: brew install cairo pango gdk-pixbuf libffi | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: x64 | |
- if: matrix.framework == 'tensorflow' | |
name: Cache python modules (TF) | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('demo/tf-requirements.txt') }} | |
- if: matrix.framework == 'pytorch' | |
name: Cache python modules (PT) | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('demo/pt-requirements.txt') }} | |
- if: matrix.framework == 'tensorflow' | |
name: Install dependencies (TF) | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[tf] --upgrade | |
pip install -r demo/tf-requirements.txt | |
- if: matrix.framework == 'pytorch' | |
name: Install dependencies (PT) | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[torch] --upgrade | |
pip install -r demo/pt-requirements.txt | |
- if: matrix.framework == 'tensorflow' | |
name: Run demo (TF) | |
env: | |
USE_TF: 1 | |
run: | | |
streamlit --version | |
screen -dm streamlit run demo/app.py | |
sleep 10 | |
curl http://localhost:8501/docs | |
- if: matrix.framework == 'pytorch' | |
name: Run demo (PT) | |
env: | |
USE_TORCH: 1 | |
run: | | |
streamlit --version | |
screen -dm streamlit run demo/app.py | |
sleep 10 | |
curl http://localhost:8501/docs |