diff --git a/.github/workflows/test-calibration-downloads.yml b/.github/workflows/test-calibration-downloads.yml index 22706df56f..48078804fd 100644 --- a/.github/workflows/test-calibration-downloads.yml +++ b/.github/workflows/test-calibration-downloads.yml @@ -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 @@ -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 @@ -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