knkarthick commited on
Commit
95bc5a0
1 Parent(s): 09593fe

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +95 -0
README.md ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - expert-generated
6
+ language:
7
+ - en
8
+ license:
9
+ - mit
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - summarization
18
+ - text2text-generation
19
+ - text-generation
20
+ task_ids: []
21
+ pretty_name: DIALOGSum Corpus
22
+ ---
23
+ # Dataset Card for DIALOGSum Corpus
24
+ ## Dataset Description
25
+ ### Links
26
+ - **Homepage:** https://aclanthology.org/2021.findings-acl.449
27
+ - **Repository:** https://github.com/cylnlp/dialogsum
28
+ - **Paper:** https://aclanthology.org/2021.findings-acl.449
29
+ - **Point of Contact:** https://huggingface.co/knkarthick
30
+
31
+ ### Dataset Summary
32
+ DialogSum is a large-scale dialogue summarization dataset, consisting of 13,460 (Plus 100 holdout data for topic generation) dialogues with corresponding manually labeled summaries and topics.
33
+ ### Languages
34
+ English
35
+
36
+ ## Dataset Structure
37
+ ### Data Instances
38
+ DialogSum is a large-scale dialogue summarization dataset, consisting of 13,460 dialogues (+1000 tests) split into train, test and validation.
39
+ The first instance in the training set:
40
+ {'id': 'train_0', 'summary': "Mr. Smith's getting a check-up, and Doctor Hawkins advises him to have one every year. Hawkins'll give some information about their classes and medications to help Mr. Smith quit smoking.", 'dialogue': "#Person1#: Hi, Mr. Smith. I'm Doctor Hawkins. Why are you here today?\n#Person2#: I found it would be a good idea to get a check-up.\n#Person1#: Yes, well, you haven't had one for 5 years. You should have one every year.\n#Person2#: I know. I figure as long as there is nothing wrong, why go see the doctor?\n#Person1#: Well, the best way to avoid serious illnesses is to find out about them early. So try to come at least once a year for your own good.\n#Person2#: Ok.\n#Person1#: Let me see here. Your eyes and ears look fine. Take a deep breath, please. Do you smoke, Mr. Smith?\n#Person2#: Yes.\n#Person1#: Smoking is the leading cause of lung cancer and heart disease, you know. You really should quit.\n#Person2#: I've tried hundreds of times, but I just can't seem to kick the habit.\n#Person1#: Well, we have classes and some medications that might help. I'll give you more information before you leave.\n#Person2#: Ok, thanks doctor.", 'topic': "get a check-up}
41
+ ### Data Fields
42
+ - dialogue: text of dialogue.
43
+ - summary: human written summary of the dialogue.
44
+ - topic: human written topic/one liner of the dialogue.
45
+ - id: unique file id of an example.
46
+
47
+ ### Data Splits
48
+ - train: 12460
49
+ - val: 500
50
+ - test: 1500
51
+ - holdout: 100 [Only 3 features: id, dialogue, topic]
52
+
53
+ ## Dataset Creation
54
+ ### Curation Rationale
55
+ In paper:
56
+ We collect dialogue data for DialogSum from three public dialogue corpora, namely Dailydialog (Li et al., 2017), DREAM (Sun et al., 2019) and MuTual (Cui et al., 2019), as well as an English speaking practice website. These datasets contain face-to-face spoken dialogues that cover a wide range of daily-life topics, including schooling, work, medication, shopping, leisure, travel. Most conversations take place between friends, colleagues, and between service providers and customers.
57
+
58
+ Compared with previous datasets, dialogues from DialogSum have distinct characteristics:
59
+
60
+ Under rich real-life scenarios, including more diverse task-oriented scenarios;
61
+ Have clear communication patterns and intents, which is valuable to serve as summarization sources;
62
+ Have a reasonable length, which comforts the purpose of automatic summarization.
63
+
64
+ We ask annotators to summarize each dialogue based on the following criteria:
65
+ Convey the most salient information;
66
+ Be brief;
67
+ Preserve important named entities within the conversation;
68
+ Be written from an observer perspective;
69
+ Be written in formal language.
70
+ ### Who are the source language producers?
71
+ linguists
72
+ ### Who are the annotators?
73
+ language experts
74
+
75
+ ## Licensing Information
76
+ non-commercial licence: MIT
77
+ ## Citation Information
78
+ ```
79
+ @inproceedings{chen-etal-2021-dialogsum,
80
+ title = "{D}ialog{S}um: {A} Real-Life Scenario Dialogue Summarization Dataset",
81
+ author = "Chen, Yulong and
82
+ Liu, Yang and
83
+ Chen, Liang and
84
+ Zhang, Yue",
85
+ booktitle = "Findings of the Association for Computational Linguistics: ACL-IJCNLP 2021",
86
+ month = aug,
87
+ year = "2021",
88
+ address = "Online",
89
+ publisher = "Association for Computational Linguistics",
90
+ url = "https://aclanthology.org/2021.findings-acl.449",
91
+ doi = "10.18653/v1/2021.findings-acl.449",
92
+ pages = "5062--5074",
93
+ ```
94
+ ## Contributions
95
+ Thanks to [@cylnlp](https://github.com/cylnlp) for adding this dataset.