Spaces:
Sleeping
Sleeping
feat: add repo clone cli
Browse files- docs/evaluate.md +5 -0
docs/evaluate.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1 |
## Evaluation process
|
2 |
|
|
|
|
|
|
|
|
|
|
|
3 |
### 1. Generate responses
|
4 |
|
5 |
The first and main step is to generate the answers. You can do this in any way that is convenient for you, including the scripts that exist in this repository. The main thing is that in the end you have a file with answers in JSONL format, where each object contains the fields `id` (question id, int) and `generated_answer` (model response, json object). Example:
|
|
|
1 |
## Evaluation process
|
2 |
|
3 |
+
```bash
|
4 |
+
git clone https://huggingface.co/spaces/d0rj/romb-leaderboard
|
5 |
+
cd romb-leaderboard
|
6 |
+
```
|
7 |
+
|
8 |
### 1. Generate responses
|
9 |
|
10 |
The first and main step is to generate the answers. You can do this in any way that is convenient for you, including the scripts that exist in this repository. The main thing is that in the end you have a file with answers in JSONL format, where each object contains the fields `id` (question id, int) and `generated_answer` (model response, json object). Example:
|