JulesBelveze commited on
Commit
cc25fa0
1 Parent(s): 778d9e0

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +151 -0
README.md ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - other
4
+ language_creators:
5
+ - other
6
+ languages:
7
+ - en
8
+ licenses:
9
+ - mit
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: tldr_news
13
+ size_categories:
14
+ - 1K<n<10K
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - summarization
19
+ - text2text-generation
20
+ - text-generation
21
+ task_ids:
22
+ - news-articles-headline-generation
23
+ - text-simplification
24
+ - language-modeling
25
+ ---
26
+
27
+ # Dataset Card for `tldr_news`
28
+
29
+ ## Table of Contents
30
+
31
+ - [Dataset Description](#dataset-description)
32
+ - [Dataset Summary](#dataset-summary)
33
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
34
+ - [Languages](#languages)
35
+ - [Dataset Structure](#dataset-structure)
36
+ - [Data Instances](#data-instances)
37
+ - [Data Fields](#data-instances)
38
+ - [Data Splits](#data-instances)
39
+ - [Dataset Creation](#dataset-creation)
40
+ - [Curation Rationale](#curation-rationale)
41
+ - [Source Data](#source-data)
42
+ - [Annotations](#annotations)
43
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
44
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
45
+ - [Social Impact of Dataset](#social-impact-of-dataset)
46
+ - [Discussion of Biases](#discussion-of-biases)
47
+ - [Other Known Limitations](#other-known-limitations)
48
+ - [Additional Information](#additional-information)
49
+ - [Dataset Curators](#dataset-curators)
50
+ - [Licensing Information](#licensing-information)
51
+ - [Citation Information](#citation-information)
52
+
53
+ ## Dataset Description
54
+
55
+ - **Homepage:** https://tldr.tech/newsletter
56
+
57
+ ### Dataset Summary
58
+
59
+ The `tldr_news` dataset was constructed by collecting a daily tech newsletter (
60
+ available [here](https://tldr.tech/newsletter)). Then for every piece of news, the "headline" and its corresponding "
61
+ content" were collected.
62
+ Such a dataset can be used to train a model to generate a headline from a input piece of text.
63
+
64
+ ### Supported Tasks and Leaderboards
65
+
66
+ There is no official supported tasks nor leaderboard for this dataset.
67
+
68
+ ### Languages
69
+
70
+ en
71
+
72
+ ## Dataset Structure
73
+
74
+ ### Data Instances
75
+
76
+ A data point comprises a "headline" and its corresponding "content".
77
+ An example is as follows:
78
+
79
+ ```
80
+ {
81
+ "headline": "World-first 'impossible' rotating detonation engine fires up",
82
+ "content": "A team in Florida working with the US Air Force has built an experimental model of a rotating detonation rocket engine. It uses spinning explosions inside a ring channel to create a super-efficient thrust. Most engines use combustion, which is a relatively slow and controlled process compared to detonation. Detonation releases significantly more energy than combustion with significantly less fuel, but detonation engines have proven to be incredibly difficult to build and sustain. A 20-second slow-motion video of the rocket firing is available."
83
+ }
84
+ ```
85
+
86
+ ### Data Fields
87
+
88
+ - `headline (str)`: the piece of news' headline
89
+ - `content (str)`: the piece of news
90
+
91
+ ### Data Splits
92
+
93
+ [Needs More Information]
94
+
95
+ ## Dataset Creation
96
+
97
+ ### Curation Rationale
98
+
99
+ This dataset was obtained by scrapping the collecting all the existing newsletter
100
+ available [here](https://tldr.tech/newsletter). Every single newsletter was then processed to extract all the different
101
+ pieces of news. Then for every collected piece of news the headline and the content were extracted.
102
+
103
+ ### Source Data
104
+
105
+ #### Initial Data Collection and Normalization
106
+
107
+ The dataset was has been collected from https://tldr.tech/newsletter. The headline and content have not been
108
+ post-processed nor normalized.
109
+
110
+ #### Who are the source language producers?
111
+
112
+ The people (or person) behind the https://tldr.tech/ newsletter.
113
+
114
+ ### Annotations
115
+
116
+ #### Annotation process
117
+
118
+ [Needs More Information]
119
+
120
+ #### Who are the annotators?
121
+
122
+ Disclaimers: The dataset was generated from a daily newsletter. The author had no intention for those newsletters to be
123
+ used as such.
124
+
125
+ ### Personal and Sensitive Information
126
+
127
+ [Needs More Information]
128
+
129
+ ## Considerations for Using the Data
130
+
131
+ ### Social Impact of Dataset
132
+
133
+ [Needs More Information]
134
+
135
+ ### Discussion of Biases
136
+
137
+ [Needs More Information]
138
+
139
+ ### Other Known Limitations
140
+
141
+ This dataset only contains tech news.
142
+
143
+ ## Additional Information
144
+
145
+ ### Dataset Curators
146
+
147
+ The dataset was obtained by scrapping this website: https://tldr.tech/newsletter
148
+
149
+ ### Contributions
150
+
151
+ Thanks to [@JulesBelveze](https://github.com/JulesBelveze) for adding this dataset.