Datasets:

Modalities:
Text
Formats:
json
Languages:
French
ArXiv:
Libraries:
Datasets
pandas
License:
mciancone commited on
Commit
be583d3
1 Parent(s): c448276

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -1
README.md CHANGED
@@ -6,6 +6,19 @@ language:
6
  - fr
7
  size_categories:
8
  - 10K<n<100K
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  ---
10
 
11
  ## Clustering HAL
@@ -20,5 +33,5 @@ It was originally used for the French version of [MTEB](https://github.com/embed
20
  To use this dataset, you can run the following code :
21
  ```py
22
  from datasets import load_dataset
23
- dataset = load_dataset("lyon-nlp/clustering-hal-s2s", "test")
24
  ```
 
6
  - fr
7
  size_categories:
8
  - 10K<n<100K
9
+ configs:
10
+ - config_name: default
11
+ data_files:
12
+ - split: test
13
+ path: test.jsonl
14
+ - config_name: raw
15
+ data_files:
16
+ - split: test
17
+ path: test.jsonl
18
+ - config_name: mteb_eval
19
+ data_files:
20
+ - split: test
21
+ path: mteb_eval.jsonl
22
  ---
23
 
24
  ## Clustering HAL
 
33
  To use this dataset, you can run the following code :
34
  ```py
35
  from datasets import load_dataset
36
+ dataset = load_dataset("lyon-nlp/clustering-hal-s2s", name="raw", split="test")
37
  ```