rohitsaxena commited on
Commit
f3edd4f
1 Parent(s): 2e03fa1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -3
README.md CHANGED
@@ -1,3 +1,59 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # MovieSum: An Abstractive Summarization Dataset for Movie Screenplays
2
+
3
+ ## Dataset Summary
4
+
5
+ MovieSum consists of 2,200 movie screenplays and their corresponding Wikipedia summaries. It is a long-form summarization task where the mean length of movie screenplays is approximately 34K. We manually formatted the movie screenplays to represent their structural elements. We also provide the IMDB ID for each movie to facilitate the collection of additional metadata.
6
+
7
+ ## Dataset Statistics
8
+ | | |
9
+ |----------------------------|-----------------|
10
+ | **Total Movie Screenplays** | 2,200 |
11
+ | **Mean Screenplay Length** | 34,275 |
12
+ | **Mean Summary Length** | 793 |
13
+
14
+ Each movie screenplay is in XML format with the following DOM structure:
15
+
16
+ ```
17
+ <script>
18
+ <scene>
19
+ <stage_direction>..</stage_direction>
20
+ <scene_description>...</scene_description>
21
+ <character>..</character>
22
+ <dialogue>..</dialogue>
23
+ ...
24
+ </scene>
25
+ <scene>
26
+ ...
27
+ </scene>
28
+ <script>
29
+
30
+ ```
31
+
32
+ ## Dataset Structure
33
+
34
+ The dataset is divided into three parts:
35
+ - **Training Set**: 1800 movie screenplays, summaries, and IMDB ids.
36
+ - **Validation Set**: 200 movie screenplays, summaries, and IMDB ids.
37
+ - **Test Set**: 200 movie screenplays, summaries, and IMDB ids.
38
+
39
+ ## License
40
+ Creative Commons Attribution Non Commercial 4.0
41
+
42
+ ## Citation
43
+ ```
44
+ @inproceedings{saxena-keller-2024-moviesum,
45
+ title = "MovieSum: An Abstractive Summarization Dataset for Movie Screenplays",
46
+ author = "Saxena, Rohit and
47
+ Keller, Frank",
48
+ booktitle = "Findings of the Association for Computational Linguistics: ACL 2024",
49
+ month = AUG,
50
+ year = "2024",
51
+ address = "Bangkok, Thailand",
52
+ publisher = "Association for Computational Linguistics",
53
+ }
54
+ ```
55
+
56
+
57
+ ---
58
+ license: cc-by-nc-4.0
59
+ ---