Datasets:

Modalities:
Text
Formats:
json
Languages:
English
Size:
< 1K
License:
kalikako commited on
Commit
f92ddbe
·
verified ·
1 Parent(s): 71dcaa0

Upload cnn_dailymail dataset and README

Browse files
Files changed (2) hide show
  1. README.md +48 -0
  2. cnn_dailymail.jsonl +0 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "CNN_Dailymail"
3
+ license: "mit"
4
+ language:
5
+ - en
6
+ tags:
7
+ - summarization
8
+ - news
9
+ task_categories:
10
+ - summarization
11
+ ---
12
+
13
+
14
+
15
+ # CNN_Dailymail
16
+
17
+ This repository hosts a copy of the **CNN_Dailymail** dataset, a large-scale dataset designed for evaluating abstractive text summarization systems.
18
+
19
+ CNN_Dailymail consists of news articles paired with human-written summaries, commonly used for training and evaluating models on summarization tasks. It contains articles from CNN and Daily Mail, covering a wide range of topics.
20
+
21
+ ## Contents
22
+
23
+ - `cnn_dailymail.jsonl` (or your actual filename): the standard set of news articles and summaries.
24
+
25
+ Each entry contains:
26
+
27
+ ```
28
+ {
29
+ "id": "...",
30
+ "article": "...",
31
+ "highlights": "..."
32
+ }
33
+ ```
34
+
35
+ ## Usage
36
+
37
+ ```
38
+ from datasets import load_dataset
39
+ ds = load_dataset("S3IC/cnn_dailymail")
40
+ ```
41
+
42
+ ## Source
43
+
44
+ This dataset is taken from the public CNN_Dailymail release: https://github.com/abisee/cnn-dailymail
45
+
46
+ ## License
47
+
48
+ CNN_Dailymail is released under the original license provided by the authors. See the LICENSE file for more details.
cnn_dailymail.jsonl ADDED
The diff for this file is too large to render. See raw diff