Commit
·
686edb8
1
Parent(s):
e06ebbb
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
task_categories:
|
4 |
+
- text-classification
|
5 |
+
language:
|
6 |
+
- fr
|
7 |
+
pretty_name: f
|
8 |
+
---
|
9 |
+
|
10 |
+
## Clustering HAL
|
11 |
+
|
12 |
+
This dataset was created by scrapping data from the HAL platform.
|
13 |
+
Over 80,000 articles have been scrapped to keep their id, title and category.
|
14 |
+
|
15 |
+
It was originally used for the French version of [MTEB](https://github.com/embeddings-benchmark/mteb), but it can also be used for various clustering or classification tasks.
|
16 |
+
|
17 |
+
### Usage
|
18 |
+
|
19 |
+
To use this dataset, you can run the following code :
|
20 |
+
```py
|
21 |
+
from datasets import load_dataset
|
22 |
+
dataset = load_dataset("lyon-nlp/clustering-hal-s2s", "test")
|
23 |
+
```
|