Coldog2333 commited on
Commit
9120f17
1 Parent(s): 2881770

initialize the model card.

Browse files
Files changed (1) hide show
  1. README.md +168 -0
README.md CHANGED
@@ -1,3 +1,171 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - dialogue segmentation
7
+ size_categories:
8
+ - 1K<n<10K
9
  ---
10
+
11
+ # Dataset Card for SuperDialseg
12
+
13
+ ## Table of Contents
14
+ - [Table of Contents](#table-of-contents)
15
+ - [Dataset Description](#dataset-description)
16
+ - [Dataset Summary](#dataset-summary)
17
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
18
+ - [Languages](#languages)
19
+ - [Dataset Structure](#dataset-structure)
20
+ - [Data Instances](#data-instances)
21
+ - [Data Fields](#data-fields)
22
+ - [Data Splits](#data-splits)
23
+ - [Dataset Creation](#dataset-creation)
24
+ - [Curation Rationale](#curation-rationale)
25
+ - [Source Data](#source-data)
26
+ - [Annotations](#annotations)
27
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
28
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
29
+ - [Social Impact of Dataset](#social-impact-of-dataset)
30
+ - [Discussion of Biases](#discussion-of-biases)
31
+ - [Other Known Limitations](#other-known-limitations)
32
+ - [Additional Information](#additional-information)
33
+ - [Dataset Curators](#dataset-curators)
34
+ - [Licensing Information](#licensing-information)
35
+ - [Citation Information](#citation-information)
36
+ - [Contributions](#contributions)
37
+
38
+ ## Dataset Description
39
+
40
+ - **Homepage:**
41
+ - **Repository:**
42
+ - **Paper:** SuperDialseg: A Large-scale Dataset for Supervised Dialogue Segmentation
43
+ - **Leaderboard:** [https://github.com/Coldog2333/SuperDialseg](https://github.com/Coldog2333/SuperDialseg)
44
+ - **Point of Contact:** jiangjf@is.s.u-tokyo.ac.jp
45
+
46
+ ### Dataset Summary
47
+
48
+ [More Information Needed]
49
+
50
+ ### Supported Tasks and Leaderboards
51
+
52
+ [More Information Needed]
53
+
54
+ ### Languages: English
55
+
56
+ ## Dataset Structure
57
+
58
+ ### Data Instances
59
+
60
+ ```
61
+ {
62
+ "dial_data": {
63
+ "super_dialseg": [
64
+ {
65
+ "dial_id": "8df07b7a98990db27c395cb1f68a962e",
66
+ "turns": [
67
+ {
68
+ "da": "query_condition",
69
+ "role": "user",
70
+ "turn_id": 0,
71
+ "utterance": "Hello, I forgot o update my address, can you help me with that?",
72
+ "topic_id": 0,
73
+ "segmentation_label": 0
74
+ },
75
+ ...
76
+ {
77
+ "da": "respond_solution",
78
+ "role": "agent",
79
+ "turn_id": 11,
80
+ "utterance": "DO NOT contact the New York State DMV to dispute whether you violated a toll regulation or failed to pay the toll , fees or other charges",
81
+ "topic_id": 4,
82
+ "segmentation_label": 0
83
+ }
84
+ ],
85
+ ...
86
+ }
87
+ ]
88
+ }
89
+ ```
90
+
91
+ ### Data Fields
92
+
93
+ #### Dialogue-Level
94
+ + `dial_id`: ID of a dialogue;
95
+ + `turns`: All utterances of a dialogue.
96
+ #### Utterance-Level
97
+ + `da`: Dialogue Act annotation derived from the original DGDS dataset;
98
+ + `role`: Role annotation derived from the original DGDS dataset;
99
+ + `turn_id`: ID of an utterance;
100
+ + `utterance`: Text of the utterance;
101
+ + `topic_id`: ID (order) of the current topic;
102
+ + `segmentation_label`: 1: it is the end of a topic; 0: others.
103
+
104
+ ### Data Splits
105
+
106
+ SuperDialseg follows the dataset splits of the original DGDS dataset.
107
+
108
+ ## Dataset Creation
109
+
110
+ ### Curation Rationale
111
+
112
+ [More Information Needed]
113
+
114
+ ### Source Data
115
+
116
+ #### Initial Data Collection and Normalization
117
+
118
+ SuperDialseg was built on the top of doc2dial and MultiDoc2dial datasets.
119
+ Please refer to the original papers for more details.
120
+
121
+ #### Who are the source language producers?
122
+
123
+ [More Information Needed]
124
+
125
+ ### Annotations
126
+
127
+ #### Annotation process
128
+
129
+ [More Information Needed]
130
+
131
+ #### Who are the annotators?
132
+
133
+ The annotation of dialogue segmentation points is constructed by a set of well-designed strategy. Please refer to the paper for more details.
134
+
135
+ Other annotations like Dialogue Act and Role information are derived from doc2dial and MultiDoc2dial datasets.
136
+
137
+ ### Personal and Sensitive Information
138
+
139
+ [More Information Needed]
140
+
141
+ ## Considerations for Using the Data
142
+
143
+ ### Social Impact of Dataset
144
+
145
+ [More Information Needed]
146
+
147
+ ### Discussion of Biases
148
+
149
+ [More Information Needed]
150
+
151
+ ### Other Known Limitations
152
+
153
+ [More Information Needed]
154
+
155
+ ## Additional Information
156
+
157
+ ### Dataset Curators
158
+
159
+ [More Information Needed]
160
+
161
+ ### Licensing Information
162
+
163
+ Apache License Version 2.0, following the licenses of doc2dial and MultiDoc2dial.
164
+
165
+ ### Citation Information
166
+
167
+ Coming soon
168
+
169
+ ### Contributions
170
+
171
+ Thanks to [@Coldog2333](https://github.com/Coldog2333) for adding this dataset.