ubaada commited on
Commit
2c1cb37
1 Parent(s): 6ebf207

added basic information

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Description:
2
+ This repository contains the Booksum dataset introduced in the paper [BookSum: A Collection of Datasets for Long-form Narrative Summarization
3
+ ](https://arxiv.org/abs/2105.08209).
4
+
5
+ This dataset includes both book and chapter summaries from the BookSum dataset (unlike the kmfoda/booksum one which only contains the chapter dataset). Junk information has been discarded. Contains minimal text-to-summary rows. As there are multiple summaries for a given text, each row contains an array of summaries.
6
+
7
+
8
+ # Distribution
9
+
10
+ <div style="display: inline-block; vertical-align: top; width: 45%;">
11
+
12
+ ## Chapters Dataset
13
+
14
+ | Split | Total Sum. | Missing Sum. | Successfully Processed | Rows |
15
+ |---------|------------|--------------|------------------------|------|
16
+ | Train | 9712 | 178 | 9534 (98.17%) | 5653 |
17
+ | Test | 1432 | 0 | 1432 (100.0%) | 950 |
18
+ | Val | 1485 | 0 | 1485 (100.0%) | 854 |
19
+
20
+ </div>
21
+
22
+ <div style="display: inline-block; vertical-align: top; width: 45%; margin-left: 5%;">
23
+
24
+ ## Books Dataset
25
+
26
+ | Split | Total Sum. | Missing Sum. | Successfully Processed | Rows |
27
+ |---------|------------|--------------|------------------------|------|
28
+ | Train | 314 | 0 | 314 (100.0%) | 151 |
29
+ | Test | 46 | 0 | 46 (100.0%) | 17 |
30
+ | Val | 45 | 0 | 45 (100.0%) | 19 |
31
+
32
+ </div>
33
+
34
+
35
+ # Structure:
36
+ ```
37
+ Chapters Dataset
38
+ 0 - bid (book id) NOT unique for each row
39
+ 1 - book_title
40
+ 2 - chapter_id
41
+ 3 - text (raw chapter text)
42
+ 4 - summary [] (list of summaries from different sources)
43
+ - {source, text (summary), analysis}
44
+ ...
45
+ 5 - is_aggregate (bool) (if true, then the text contains more than one chapter)
46
+
47
+ Books Dataset:
48
+ 0 - bid (book id) unique for each row
49
+ 1 - title
50
+ 2 - text (raw text)
51
+ 4 - summary [] (list of summaries from different sources)
52
+ - {source, text (summary), analysis}
53
+ ...
54
+ ```