Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -13,4 +13,14 @@ This is a re-edit from the Alloprof dataset (which can be found here : https://h
|
|
13 |
|
14 |
For more information about the data source and the features, please refer to the original dataset card made by the authors, along with their paper available here : https://arxiv.org/abs/2302.07738
|
15 |
|
16 |
-
This re-edition of the dataset is a preprocessed/filtered version of the original, **in a more ready-to-use format**.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
For more information about the data source and the features, please refer to the original dataset card made by the authors, along with their paper available here : https://arxiv.org/abs/2302.07738
|
15 |
|
16 |
+
This re-edition of the dataset is a preprocessed/filtered version of the original, **in a more ready-to-use format**.
|
17 |
+
It has been made for easier usage in the MTEB benchmarking pipeline. (https://huggingface.co/spaces/mteb/leaderboard).
|
18 |
+
|
19 |
+
### Usage
|
20 |
+
|
21 |
+
To use the dataset, you need to specify the subset you want (documents or queries) when calling the load_dataset() method.
|
22 |
+
For example, to get the queries use :
|
23 |
+
```py
|
24 |
+
from datasets import load_dataset
|
25 |
+
dataset = load_dataset("lyon-nlp/alloprof", "queries")
|
26 |
+
```
|