Bump version 0.4.2 #53
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: Reproduce BARO performance on the Online Boutique dataset | |
on: | |
push: | |
branches: [ "main", "dev" ] | |
pull_request: | |
branches: [ "main", "dev" ] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo apt update -y | |
sudo apt install -y build-essential libxml2 libxml2-dev zlib1g-dev python3-tk graphviz | |
python -m pip install pip==20.0.2 | |
python -m pip install .[default] | |
- name: Reproduce BARO performance on the Online Boutique dataset | |
run: python main-ase.py --method baro --dataset online-boutique |