Muennighoff commited on
Commit
7ba3b9b
1 Parent(s): 2461f1b

Add instructions

Browse files
Files changed (1) hide show
  1. README.md +11 -4
README.md CHANGED
@@ -27,8 +27,15 @@ This repository contains the code for pushing and updating the MTEB leaderboard
27
 
28
  To setup the repository:
29
 
30
- ```
31
- git clone {repo_url}
32
- # potentially create virtual environment using python 3.9
 
33
  pip install -r requirements.txt
34
- ```
 
 
 
 
 
 
 
27
 
28
  To setup the repository:
29
 
30
+ ```bash
31
+ git clone https://github.com/embeddings-benchmark/leaderboard.git
32
+ cd leaderboard
33
+ # install requirements
34
  pip install -r requirements.txt
35
+ # fetch new results
36
+ # python refresh.py
37
+ # if you'd like to add results to previously cached models, you may have to remove these models in `EXTERNAL_MODEL_RESULTS.json`
38
+ # you can also directly delete `EXTERNAL_MODEL_RESULTS.json` and it will recreate it (but be much slower)
39
+ # run the leaderboard
40
+ python app.py
41
+ ```