Chloe Anastasiades commited on
Commit
0fc962d
·
unverified ·
1 Parent(s): 16b3a18

Instructions around pushing to the second leaderboard (#93)

Browse files
Files changed (1) hide show
  1. README.md +13 -5
README.md CHANGED
@@ -29,20 +29,28 @@ python app.py
29
  This will start a local server that you can access in your web browser at `http://localhost:7860`.
30
 
31
  ## Hugging Face Integration
32
- This repo is already integrated with Hugging Face, please follow the steps below to push changes to the leaderboard on Hugging Face.
33
- First make sure to merge your changes to the `main` branch of this repository. (following the standard GitHub workflow of creating a branch, making changes, and then merging it back to `main`).
34
- First you need to add the Hugging Face remote repository if you haven't done so already. You can do this by running the following command:
 
 
 
 
 
 
35
 
36
  ```bash
37
  git remote add huggingface https://huggingface.co/spaces/allenai/asta-bench-internal-leaderboard
 
38
  ```
39
- You can verify that the remote has been added by running:
40
 
41
  ```bash
42
  git remote -v
43
  ```
44
- Then, to push the changes to the Hugging Face leaderboard, you can use the following command:
45
 
46
  ```bash
47
  git push huggingface main:main
 
48
  ```
 
29
  This will start a local server that you can access in your web browser at `http://localhost:7860`.
30
 
31
  ## Hugging Face Integration
32
+ The repo backs two Hugging Face leaderboard spaces:
33
+ - https://huggingface.co/spaces/allenai/asta-bench-internal-leaderboard
34
+ - https://huggingface.co/spaces/allenai/asta-bench-leaderboard
35
+
36
+ Please follow the steps below to push changes to the leaderboards on Hugging Face.
37
+
38
+ Before pushing, make sure to merge your changes to the `main` branch of this repository. (following the standard GitHub workflow of creating a branch, making changes, and then merging it back to `main`).
39
+
40
+ Before pushing for the first time, you'll need to add the Hugging Face remote repositories if you haven't done so already. You can do this by running the following commands:
41
 
42
  ```bash
43
  git remote add huggingface https://huggingface.co/spaces/allenai/asta-bench-internal-leaderboard
44
+ git remote add huggingface-public https://huggingface.co/spaces/allenai/asta-bench-leaderboard
45
  ```
46
+ You can verify that the remotes have been added by running:
47
 
48
  ```bash
49
  git remote -v
50
  ```
51
+ Then, to push the changes to the Hugging Face leaderboards, you can use the following commands:
52
 
53
  ```bash
54
  git push huggingface main:main
55
+ git push huggingface-public main:main
56
  ```