Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
< 1K
ArXiv:
Tags:
evaluation
License:
Commit ·
e3a795c
1
Parent(s): 6adeed3
Update README.md
Browse files
README.md
CHANGED
|
@@ -16,6 +16,13 @@ size_categories:
|
|
| 16 |
This set of evaluation prompts is created by the [LMSYS org](https://huggingface.co/lmsys) for better evaluation of chat models.
|
| 17 |
For more information, see the [paper](https://arxiv.org/abs/2306.05685).
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
### Dataset creation
|
| 20 |
To create the dataset, we do the following for our internal tooling.
|
| 21 |
* rename `turns` to `prompts`,
|
|
|
|
| 16 |
This set of evaluation prompts is created by the [LMSYS org](https://huggingface.co/lmsys) for better evaluation of chat models.
|
| 17 |
For more information, see the [paper](https://arxiv.org/abs/2306.05685).
|
| 18 |
|
| 19 |
+
|
| 20 |
+
### Dataset loading
|
| 21 |
+
To load this dataset, use 🤗 datasets:
|
| 22 |
+
```python
|
| 23 |
+
from datasets import load_dataset
|
| 24 |
+
data = load_dataset(HuggingFaceH4/mt_bench_prompts, split="train")
|
| 25 |
+
```
|
| 26 |
### Dataset creation
|
| 27 |
To create the dataset, we do the following for our internal tooling.
|
| 28 |
* rename `turns` to `prompts`,
|