oliverkinch commited on
Commit
4229c23
·
1 Parent(s): 61f7c3d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -1
README.md CHANGED
@@ -33,4 +33,89 @@ dataset_info:
33
  ---
34
  # Dataset Card for "nordjylland-news-summarization"
35
 
36
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  ---
34
  # Dataset Card for "nordjylland-news-summarization"
35
 
36
+ ## Dataset Description
37
+
38
+ - **Point of Contact:** [Oliver Kinch](mailto:[email protected])
39
+ - **Size of dataset:** 148 MB
40
+
41
+ ### Dataset Summary
42
+
43
+ This dataset consists of pairs containing text and corresponding summaries extracted from the Danish newspaper [TV2 Nord](https://www.tv2nord.dk/).
44
+
45
+ ### Supported Tasks and Leaderboards
46
+
47
+ Summarization is the intended task for this dataset. No leaderboard is active at this point.
48
+
49
+ ### Languages
50
+
51
+ The dataset is available in Danish (`da`).
52
+
53
+ ## Dataset Structure
54
+
55
+ An example from the dataset looks as follows.
56
+
57
+ ```
58
+ {
59
+ "text": "some text",
60
+ "summary": "some summary",
61
+ "text_len": <number of chars in text>,
62
+ "summary_len": <number of chars in summary>
63
+ }
64
+ ```
65
+
66
+ ### Data Fields
67
+
68
+ - `text`: a `string` feature.
69
+ - `summary`: a `string` feature.
70
+ - `text_len`: an `int64` feature.
71
+ - `summary_len`: an `int64` feature.
72
+
73
+ ### Dataset Statistics
74
+
75
+ #### Number of samples
76
+
77
+ - Train: 75219
78
+ - Val: 4178
79
+ - Test: 4178
80
+
81
+ #### Text Length Distribution
82
+
83
+ - Minimum length: 21
84
+ - Maximum length: 35164
85
+
86
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/61e0713ac50610f535ed2c88/YBO73NHfW5Ufh0svopGbc.png)
87
+
88
+ #### Summary Length Distribution
89
+
90
+ - Minimum length: 12
91
+ - Maximum length: 499
92
+
93
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/61e0713ac50610f535ed2c88/tSLeODADes_r-V7sED2tH.png)
94
+
95
+
96
+ ## Potential Dataset Issues
97
+
98
+ Within the dataset, there are 181 instances where the length of the summary exceeds the length of the corresponding text.
99
+
100
+
101
+ ## Dataset Creation
102
+
103
+ ### Curation Rationale
104
+
105
+ There are not many large-scale summarization datasets in Danish.
106
+
107
+ ### Source Data
108
+
109
+ The dataset has been collected through the TV2 Nord API, which can be accessed [here](https://developer.bazo.dk/#876ab6f9-e057-43e3-897a-1563de34397e).
110
+
111
+ ## Additional Information
112
+
113
+ ### Dataset Curators
114
+
115
+ [Oliver Kinch](https://huggingface.co/oliverkinch) from the [The Alexandra
116
+ Institute](https://alexandra.dk/)
117
+
118
+ ### Licensing Information
119
+
120
+ The dataset is licensed under the [CC0
121
+ license](https://creativecommons.org/share-your-work/public-domain/cc0/).