rbawden commited on
Commit
aa79e6e
1 Parent(s): d8526c5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -1
README.md CHANGED
@@ -192,7 +192,62 @@ Each example is highly annotated and is associated with dialogue context. An exa
192
 
193
  #### plain_text
194
 
195
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
 
197
  ### Data Splits
198
 
 
192
 
193
  #### plain_text
194
 
195
+ - `id`: a `string` feature.
196
+ - `orig`: a `string` feature.
197
+ - `norm`: a `string` feature.
198
+ - `mt`: a `string` feature.
199
+ - `ref`: a `string` feature.
200
+ - `utterance_meta`: a dictionary feature containing:
201
+ - `eval-judgment`: a `string` feature.
202
+ - `eval-verbatim`: a `string` feature.
203
+ - `eval-problems`: a list feature containing:
204
+ - up to 5 `string` features.
205
+ - `lang`: a `string` feature.
206
+ - `dialogue_meta`: a dictionary feature containing:
207
+ - `start_time` : a `string` feature.
208
+ - `end_time`: a `string` feature.
209
+ - `translation_model`: a `string` feature.
210
+ - `final_evaluation_user1`: a dictionary feature containing:
211
+ - `style`: a `string` feature.
212
+ - `coherence`: a `string` feature.
213
+ - `grammaticality`: a `string` feature.
214
+ - `meaning`: a `string` feature.
215
+ - `word_choice`: a `string` feature.
216
+ - `final_evaluation_user2`: a dictionary feature containing:
217
+ - `style`: a `string` feature.
218
+ - `coherence`: a `string` feature.
219
+ - `grammaticality`: a `string` feature.
220
+ - `meaning`: a `string` feature.
221
+ - `word_choice`: a `string` feature.
222
+ - `scenario`: a list feature containing
223
+ - 3 lists each containing 2 `string` features.
224
+ - `user1`: a dictionary feature containing:
225
+ - `role_num`: an `int` feature.
226
+ - `role`: a list feature containing:
227
+ - 2 `string` features.
228
+ - `initiated_dialogue`: a `bool` feature.
229
+ - `turn_number`: an `int` value.
230
+ - `lang`: a `string` value.
231
+ - `user2`: a dictionary feature containing:
232
+ - `role_num`: an `int` feature.
233
+ - `role`: a list feature containing:
234
+ - 2 `string` features.
235
+ - `initiated_dialogue`: a `bool` feature.
236
+ - `turn_number`: an `int` value.
237
+ - `lang`: a `string` value.
238
+ - `dialogue_history`: a list feature containing:
239
+ - dictionary features containing:
240
+ - `id`: a `string` feature.
241
+ - `orig`: a `string` feature.
242
+ - `norm`: a `string` feature.
243
+ - `mt`: a `string` feature.
244
+ - `ref`: a `string` feature.
245
+ - `utterance_meta`: a dictionary feature containing:
246
+ - `eval-judgment`: a `string` feature.
247
+ - `eval-verbatim`: a `string` feature.
248
+ - `eval-problems`: a list feature containing:
249
+ - up to 5 `string` features.
250
+ - `lang`: a `string` feature.
251
 
252
  ### Data Splits
253