Coldog2333 commited on
Commit
42688fb
1 Parent(s): dc40d4d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +173 -0
README.md CHANGED
@@ -1,3 +1,176 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ language:
4
+ - en
5
+ tags:
6
+ - dialogue segmentation
7
+ size_categories:
8
+ - n<1K
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:** [https://github.com/HuiyuanXie/tiage](https://github.com/HuiyuanXie/tiage)
41
+ - **Repository:** [https://github.com/HuiyuanXie/tiage](https://github.com/HuiyuanXie/tiage)
42
+ - **Paper:** TIAGE: A Benchmark for Topic-Shift Aware Dialog Modeling
43
+ - **Leaderboard:**
44
+ - **Point of Contact:**
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
+ "tiage": [
64
+ {
65
+ "dial_id": "tiage_dial_001",
66
+ "turns": [
67
+ {
68
+ "da": "",
69
+ "role": "user",
70
+ "turn_id": 0,
71
+ "utterance": "hello , how are you doing tonight ?",
72
+ "topic_id": 0,
73
+ "segmentation_label": 0
74
+ },
75
+ ...
76
+ {
77
+ "da": "",
78
+ "role": "user",
79
+ "turn_id": 15,
80
+ "utterance": "i bet it is oh i could not",
81
+ "topic_id": 4,
82
+ "segmentation_label": 1
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 (here is Null);
98
+ + `role`: Role annotation (here is user/agent/user/agent... in default);
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
+ [More Information Needed]
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
+ [More Information Needed]
119
+
120
+ #### Who are the source language producers?
121
+
122
+ [More Information Needed]
123
+
124
+ ### Annotations
125
+
126
+ #### Annotation process
127
+
128
+ [More Information Needed]
129
+
130
+ #### Who are the annotators?
131
+
132
+ [More Information Needed]
133
+
134
+ ### Personal and Sensitive Information
135
+
136
+ [More Information Needed]
137
+
138
+ ## Considerations for Using the Data
139
+
140
+ ### Social Impact of Dataset
141
+
142
+ [More Information Needed]
143
+
144
+ ### Discussion of Biases
145
+
146
+ [More Information Needed]
147
+
148
+ ### Other Known Limitations
149
+
150
+ [More Information Needed]
151
+
152
+ ## Additional Information
153
+
154
+ ### Dataset Curators
155
+
156
+ [More Information Needed]
157
+
158
+ ### Licensing Information
159
+
160
+ MIT
161
+
162
+ ### Citation Information
163
+
164
+ ```
165
+ @article{xie2021tiage,
166
+ title={TIAGE: A Benchmark for Topic-Shift Aware Dialog Modeling},
167
+ author={Xie, Huiyuan and Liu, Zhenghao and Xiong, Chenyan and Liu, Zhiyuan and Copestake, Ann},
168
+ journal={arXiv preprint arXiv:2109.04562},
169
+ year={2021}
170
+ }
171
+ ```
172
+
173
+ ### Contributions
174
+
175
+ + Thanks to [@HuiyuanXie](https://github.com/HuiyuanXie/) for collecting this dataset.
176
+ + Thanks to [@Coldog2333](https://github.com/Coldog2333) for adding this dataset.