jakobcassiman commited on
Commit
0493835
1 Parent(s): 2e750ac

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - found
6
+ languages:
7
+ - nl
8
+ licenses:
9
+ - MIT
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 100K<n<1M
14
+ source_datasets:
15
+ - https://github.com/huggingface/datasets/tree/master/datasets/cnn_dailymail
16
+ task_categories:
17
+ - conditional-text-generation
18
+ task_ids:
19
+ - summarization
20
+ ---
21
+ # Dataset Card for Dutch CNN Dailymail Dataset
22
+
23
+ ## Dataset Description
24
+
25
+ - **Repository:** [CNN / DailyMail Dataset NL repository](https://huggingface.co/datasets/ml6team/cnn_dailymail_nl)
26
+
27
+ ### Dataset Summary
28
+
29
+ The Dutch CNN / DailyMail Dataset is a translation of the CNN / Dailymail dataset containing just over 300k unique news aticles as written by journalists at CNN and the Daily Mail.
30
+
31
+ Most information about the dataset can be found on the [HuggingFace page](https://github.com/huggingface/datasets/tree/master/datasets/cnn_dailymail) of the original English version.
32
+
33
+ These are the basic steps used to create this dataset (+ some chunking):
34
+ ```
35
+ load_dataset("cnn_dailymail", '3.0.0')
36
+ ```
37
+ And this is the HuggingFace translation pipeline:
38
+ ```
39
+ pipeline(
40
+ task='translation_en_to_nl',
41
+ model='Helsinki-NLP/opus-mt-en-nl',
42
+ tokenizer='Helsinki-NLP/opus-mt-en-nl')
43
+ ```
44
+
45
+ ### Data Fields
46
+
47
+ - `id`: a string containing the heximal formated SHA1 hash of the url where the story was retrieved from
48
+ - `article`: a string containing the body of the news article
49
+ - `highlights`: a string containing the highlight of the article as written by the article author
50
+
51
+ ### Data Splits
52
+
53
+ The Dutch CNN/DailyMail dataset follows the same splits as the original English version and has 3 splits: _train_, _validation_, and _test_.
54
+
55
+ | Dataset Split | Number of Instances in Split |
56
+ | ------------- | ------------------------------------------- |
57
+ | Train | 287,113 |
58
+ | Validation | 13,368 |
59
+ | Test | 11,490 |
60
+