Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update test-calibration-downloads.yml #2079

Merged
merged 7 commits into from
Feb 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 25 additions & 5 deletions .github/workflows/test-calibration-downloads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
python3 -m pip install mlc-scripts
- name: Download Imagenet Calibration
run: |
mlcr get,dataset,imagenet,_calibration --outdirname=.
mlcr get,dataset,imagenet,_calibration --outdirname=. --quiet

download-openimages:
runs-on: ubuntu-latest
Expand All @@ -51,9 +51,9 @@ jobs:
python3 -m pip install mlc-scripts
- name: Download Openimages Calibration
run: |
mlcr get,dataset,openimages,_calibration --outdirname=.
mlcr get,dataset,openimages,_calibration --outdirname=. --quiet

download-igbh:
download-igbh:
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -69,6 +69,26 @@ download-igbh:
- name: Install dependencies
run: |
python3 -m pip install mlc-scripts
- name: Download IGBH Calibration
# - name: Download IGBH Calibration
# run: |
# mlcr get,dataset,igbh,_calibration --outdirname=. --quiet

download-squad:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.9" ]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install mlc-scripts
- name: Download SQUAD Calibration
run: |
mlcr get,dataset,igbh,_calibration --outdirname=.
mlcr get,dataset,squad,_calib1 --outdirname=. --quiet
Loading