Skip to content

Commit

Permalink
Merge branch 'leaderboard-submissions' into leaderboard-submissions-test
Browse files Browse the repository at this point in the history
  • Loading branch information
zhudotexe authored Mar 13, 2024
2 parents 6a4dee3 + bb40c01 commit fdca1e8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/leaderboard-submission.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
cp -r _pr_submission/leaderboard-submissions/results/. leaderboard-submissions/pr-results
- name: Download test set answers
run: wget ${{ secrets.TEST_ANSWERS_URL }} -O fanoutqa-test-answers.json
run: wget -q ${{ secrets.TEST_ANSWERS_URL }} -O fanoutqa-test-answers.json

# set up in local workdir and hydrate results
- name: Set up Python 3.10
Expand All @@ -54,7 +54,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
wget https://storage.googleapis.com/bleurt-oss-21/BLEURT-20.zip
wget -nv https://storage.googleapis.com/bleurt-oss-21/BLEURT-20.zip
unzip BLEURT-20.zip
rm BLEURT-20.zip
Expand All @@ -80,6 +80,8 @@ jobs:
run: |
cp ${{ steps.eval.outputs.written-results }} _pr_submission/leaderboard-submissions/results/
cd _pr_submission
git add _pr_submission/leaderboard-submissions/results
git config user.name github-actions
git config user.email [email protected]
git add leaderboard-submissions/results
git commit -m "leaderboard: add eval results"
git push

0 comments on commit fdca1e8

Please sign in to comment.