Add VisualSTS multilingual results for e5-omni 3B/7B and Tevatron Omn… #6
This file contains hidden or 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: Sync leaderboard parquet to Hugging Face hub | |
| on: | |
| push: | |
| branches: [main] | |
| # to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| sync-to-hub: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install uv and set the Python version | |
| uses: astral-sh/setup-uv@v8.2.0 | |
| with: | |
| enable-cache: true | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: uv sync | |
| - name: Build and push leaderboard parquet | |
| env: | |
| HF_OIDC_RESOURCE: datasets/mteb/results | |
| run: uv run --no-sync python scripts/push_leaderboard_parquet.py |