Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
100K<n<1M
Language Creators:
crowdsourced
Annotations Creators:
crowdsourced
Source Datasets:
original
ArXiv:
License:
system HF staff commited on
Commit
597af26
1 Parent(s): 8d29e11

Update files from the datasets library (from 1.3.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.3.0

Files changed (1) hide show
  1. README.md +180 -0
README.md ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ ---
3
+
4
+ # Dataset Card for "reddit_tifu"
5
+
6
+ ## Table of Contents
7
+ - [Dataset Description](#dataset-description)
8
+ - [Dataset Summary](#dataset-summary)
9
+ - [Supported Tasks](#supported-tasks)
10
+ - [Languages](#languages)
11
+ - [Dataset Structure](#dataset-structure)
12
+ - [Data Instances](#data-instances)
13
+ - [Data Fields](#data-fields)
14
+ - [Data Splits Sample Size](#data-splits-sample-size)
15
+ - [Dataset Creation](#dataset-creation)
16
+ - [Curation Rationale](#curation-rationale)
17
+ - [Source Data](#source-data)
18
+ - [Annotations](#annotations)
19
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
20
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
21
+ - [Social Impact of Dataset](#social-impact-of-dataset)
22
+ - [Discussion of Biases](#discussion-of-biases)
23
+ - [Other Known Limitations](#other-known-limitations)
24
+ - [Additional Information](#additional-information)
25
+ - [Dataset Curators](#dataset-curators)
26
+ - [Licensing Information](#licensing-information)
27
+ - [Citation Information](#citation-information)
28
+ - [Contributions](#contributions)
29
+
30
+ ## [Dataset Description](#dataset-description)
31
+
32
+ - **Homepage:** [https://github.com/ctr4si/MMN](https://github.com/ctr4si/MMN)
33
+ - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
34
+ - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
35
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
36
+ - **Size of downloaded dataset files:** 1279.08 MB
37
+ - **Size of the generated dataset:** 219.12 MB
38
+ - **Total amount of disk used:** 1498.20 MB
39
+
40
+ ### [Dataset Summary](#dataset-summary)
41
+
42
+ Reddit dataset, where TIFU denotes the name of subbreddit /r/tifu.
43
+ As defined in the publication, styel "short" uses title as summary and
44
+ "long" uses tldr as summary.
45
+
46
+ Features includes:
47
+ - document: post text without tldr.
48
+ - tldr: tldr line.
49
+ - title: trimmed title without tldr.
50
+ - ups: upvotes.
51
+ - score: score.
52
+ - num_comments: number of comments.
53
+ - upvote_ratio: upvote ratio.
54
+
55
+ ### [Supported Tasks](#supported-tasks)
56
+
57
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
58
+
59
+ ### [Languages](#languages)
60
+
61
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
62
+
63
+ ## [Dataset Structure](#dataset-structure)
64
+
65
+ We show detailed information for up to 5 configurations of the dataset.
66
+
67
+ ### [Data Instances](#data-instances)
68
+
69
+ #### long
70
+
71
+ - **Size of downloaded dataset files:** 639.54 MB
72
+ - **Size of the generated dataset:** 87.74 MB
73
+ - **Total amount of disk used:** 727.29 MB
74
+
75
+ An example of 'train' looks as follows.
76
+ ```
77
+
78
+ ```
79
+
80
+ #### short
81
+
82
+ - **Size of downloaded dataset files:** 639.54 MB
83
+ - **Size of the generated dataset:** 131.37 MB
84
+ - **Total amount of disk used:** 770.92 MB
85
+
86
+ An example of 'train' looks as follows.
87
+ ```
88
+
89
+ ```
90
+
91
+ ### [Data Fields](#data-fields)
92
+
93
+ The data fields are the same among all splits.
94
+
95
+ #### long
96
+ - `ups`: a `float32` feature.
97
+ - `num_comments`: a `float32` feature.
98
+ - `upvote_ratio`: a `float32` feature.
99
+ - `score`: a `float32` feature.
100
+ - `documents`: a `string` feature.
101
+ - `tldr`: a `string` feature.
102
+ - `title`: a `string` feature.
103
+
104
+ #### short
105
+ - `ups`: a `float32` feature.
106
+ - `num_comments`: a `float32` feature.
107
+ - `upvote_ratio`: a `float32` feature.
108
+ - `score`: a `float32` feature.
109
+ - `documents`: a `string` feature.
110
+ - `tldr`: a `string` feature.
111
+ - `title`: a `string` feature.
112
+
113
+ ### [Data Splits Sample Size](#data-splits-sample-size)
114
+
115
+ |name |train|
116
+ |-----|----:|
117
+ |long |42139|
118
+ |short|79740|
119
+
120
+ ## [Dataset Creation](#dataset-creation)
121
+
122
+ ### [Curation Rationale](#curation-rationale)
123
+
124
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
125
+
126
+ ### [Source Data](#source-data)
127
+
128
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
129
+
130
+ ### [Annotations](#annotations)
131
+
132
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
133
+
134
+ ### [Personal and Sensitive Information](#personal-and-sensitive-information)
135
+
136
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
137
+
138
+ ## [Considerations for Using the Data](#considerations-for-using-the-data)
139
+
140
+ ### [Social Impact of Dataset](#social-impact-of-dataset)
141
+
142
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
143
+
144
+ ### [Discussion of Biases](#discussion-of-biases)
145
+
146
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
147
+
148
+ ### [Other Known Limitations](#other-known-limitations)
149
+
150
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
151
+
152
+ ## [Additional Information](#additional-information)
153
+
154
+ ### [Dataset Curators](#dataset-curators)
155
+
156
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
157
+
158
+ ### [Licensing Information](#licensing-information)
159
+
160
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
161
+
162
+ ### [Citation Information](#citation-information)
163
+
164
+ ```
165
+
166
+ @misc{kim2018abstractive,
167
+ title={Abstractive Summarization of Reddit Posts with Multi-level Memory Networks},
168
+ author={Byeongchang Kim and Hyunwoo Kim and Gunhee Kim},
169
+ year={2018},
170
+ eprint={1811.00783},
171
+ archivePrefix={arXiv},
172
+ primaryClass={cs.CL}
173
+ }
174
+
175
+ ```
176
+
177
+
178
+ ### Contributions
179
+
180
+ Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten), [@thomwolf](https://github.com/thomwolf) for adding this dataset.