BlackKakapo
commited on
Commit
•
b7dc7ec
1
Parent(s):
97b5a3b
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
multilinguality: monolingual
|
3 |
+
size_categories: 10K<n<100K
|
4 |
+
language: ro
|
5 |
+
task_ids: [summarization]
|
6 |
+
task_categories: [text2text-generation]
|
7 |
+
---
|
8 |
+
# Romanian summarization dataset
|
9 |
+
This dataset for summarization
|
10 |
+
Here you can find:
|
11 |
+
1. ~65k examples of summarization (TRAIN).
|
12 |
+
2. ~7k examples of summarization (TEST).
|
13 |
+
|
14 |
+
|
15 |
+
Download dataset like this:
|
16 |
+
|
17 |
+
```python
|
18 |
+
from datasets import load_dataset
|
19 |
+
|
20 |
+
dataset = load_dataset('readerbench/ro-text-summarization')
|
21 |
+
```
|