-
Notifications
You must be signed in to change notification settings - Fork 15
/
references.html
1784 lines (1768 loc) · 119 KB
/
references.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0044)http://idl.cs.washington.edu/papers/tfgraph/ -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>A Survey of Available Corpora for Building Data-Driven Dialogue Systems</title>
<meta property="og:image" content="/static/images/logo/idl-logo.png">
<link rel="stylesheet" type="text/css" href="./tfthing_files/fonts.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="./tfthing_files/main.css">
<style type="text/css">
:root #content > #center > .dose > .dosesingle,
:root #content > #right > .dose > .dosesingle {
display: none !important;
}
</style>
<style type="text/css">
dd {padding-bottom: 5px;}
dt {visibility: hidden;}
sup {padding-right: 10px; font-weight: lighter;}
td div.comp { margin-top: -0.6ex; margin-bottom: -1ex;}
td div.comb { margin-top: -0.6ex; margin-bottom: -.6ex;}
td div.hrcomp { line-height: 0.9; margin-top: -0.8ex; margin-bottom: -1ex;}
td div.norm {line-height:normal;}
span.roman {font-family: serif; font-style: normal; font-weight: normal;}
span.overacc2 {position: relative; left: .8em; top: -1.2ex;}
span.overacc1 {position: relative; left: .6em; top: -1.2ex;}
</style>
<style type="text/css">
.tiny {font-size:30%;}
.scriptsize {font-size:xx-small;}
.footnotesize {font-size:x-small;}
.smaller {font-size:smaller;}
.small {font-size:small;}
.normalsize {font-size:medium;}
.large {font-size:large;}
.larger {font-size:x-large;}
.largerstill {font-size:xx-large;}
.huge {font-size:300%;}
</style>
</head>
<body>
<div class="gutter">
Associated Links
<div class="nav">
<br>
<a href="http://www.cim.mcgill.ca/~mrl/" class="at">MRL</a>
<br>
<a href="http://rl.cs.mcgill.ca/index.html" class="at">RLLAB</a>
<br>
<a href="http://diro.umontreal.ca/accueil/" class="at">IRO</a>
<br>
<a href="http://www.iulianserban.com/">Iulian Vlad Serban</a>
<br>
<a href="http://cs.mcgill.ca/~rlowe1/">Ryan Lowe</a>
<br>
<a href="http://peterhenderson.co">Peter Henderson</a>
<br>
<a href="http://www.cs.toronto.edu/~lcharlin/">Laurent Charlin</a>
<br>
<a href="http://www.cs.mcgill.ca/~jpineau/">Joelle Pineau</a>
</div>
<div class="orgs">
<a href="https://mcgill.ca"><img width="150px" src="tfthing_files/mcgill_logo_big.png"> </a>
<a href="https://umontreal.ca"><img width="150px" src="tfthing_files/udem_logo_big.png"> </a>
</div>
</div>
<div id="main">
<div class="header">
<div class="mark">
<span class="mcgill">McGill</span>
<span class="mark-i">&</span>
<span class="mark-d" style="color: blue">UdeM</span>
</div>
<div id="title">Papers</div>
</div>
<div id="content">
<div class="article">
<div class="pub">
<div class="title">
A Survey of Available Corpora for Building Data-Driven Dialogue Systems
</div>
<div class="authors">
<span class="author"><a href="http://www.iulianserban.com/">Iulian Vlad Serban,</a></span>
<span class="author"><a href="http://cs.mcgill.ca/~rlowe1/">Ryan Lowe,</a></span>
<span class="author"><a href="http://peterhenderson.co">Peter Henderson,</a></span>
<span class="author"><a href="http://www.cs.toronto.edu/~lcharlin/">Laurent Charlin,</a></span>
<span class="author"><a href="http://www.cs.mcgill.ca/~jpineau/">Joelle Pineau</a></span>
</div>
<div class="figure">
<img width="50%" src="./tfthing_files/splash_image.png">
<!-- <img src="./tfthing_files/splash_image2.png"> -->
<!-- <iframe width="80%" height="350px" style="display:block; margin: 0 auto;" src="https://www.youtube-nocookie.com/embed/lOeSgG2aTwQ?rel=0&controls=0&showinfo=0?modestbranding=1" frameborder="0" allowfullscreen></iframe> -->
<br>
<div class="caption">A basic outline of a dialog system.</div>
</div>
<div class="abstract">
<div class="heading">Abstract</div>
<div class="text">
During the past decade, several areas of speech and language understanding have witnessed substantial breakthroughs from the use of data-driven models. In the area of dialogue systems, the trend is less obvious, and most practical systems are still built through significant engineering and expert knowledge. Nevertheless, several recent results suggest that data-driven approaches are feasible and quite promising. To facilitate research in this area, we have carried out a wide survey of publicly available datasets suitable for data-driven learning of dialogue systems. We discuss important characteristics of these datasets, how they can be used to learn diverse dialogue strategies, and their other potential uses. We also examine methods for transfer learning between datasets and the use of external knowledge. Finally, we discuss appropriate choice of evaluation metrics for the learning objective.
</div>
</div>
<div class="materials">
<div class="heading">Materials</div>
<div class="links">
<a href="https://arxiv.org/abs/1512.05742" class="link at">[ PDF ]</a>
<!-- <a href="https://youtu.be/lOeSgG2aTwQ" class="link at">[ Video ] </a> -->
<a class="link at" href="https://raw.githubusercontent.com/Breakend/about-me/master/_bibliography/singles/survey.bib">[ BibTeX ]</a>
<a class="link at" href="https://github.com/Breakend/DialogDatasets">[ Website Code ]</a>
<!-- <a class="link at" href="https://github.com/Breakend/AquaBoxDataset">[ Dataset ]</a> -->
<!-- | <span class="note">Best Paper Award</span></div> -->
</div>
<div class="citation">
<div class="heading">Acknowledgements</div>
The authors gratefully acknowledge financial support by the <b>Samsung Advanced Institute of Technology (SAIT)</b>, the <b>Natural Sciences and Engineering Research Council of Canada (NSERC)</b>, the <b>Canada Research Chairs</b>, the <b>Canadian Institute for Advanced Research (CIFAR)</b> and <b>Compute Canada</b>. Early versions of the manuscript benefited greatly from the proofreading of Melanie Lyman-Abramovitch, and later versions were extensively revised by Genevieve Fried and Nicolas Angelard-Gontier. The authors also thank Nissan Pow, Michael Noseworthy, Chia-Wei Liu, Gabriel Forgues, Alessandro Sordoni, Yoshua Bengio and Aaron Courville for helpful discussions.
</div>
<div class="citation">
<div class="heading">Citation</div>
<div class="paper">
<div class="thumbnail">
<img width="150px" style="padding-right: 5px;" src="./tfthing_files/citation_thumb.png">
</div>
<div class="entry" style="padding-top: 10px;">
<div class="title">
<a href="https://arxiv.org/abs/1512.05742" class="at">A Survey of Available Corpora for Building Data-Driven Dialogue Systems</a>
</div>
<div class="authors">
<span class="author"><a href="http://www.iulianserban.com/">Iulian Vlad Serban,</a></span>
<span class="author"><a href="http://cs.mcgill.ca/~rlowe1/">Ryan Lowe,</a></span>
<span class="author"><a href="http://peterhenderson.co">Peter Henderson,</a></span>
<span class="author"><a href="http://www.cs.toronto.edu/~lcharlin/">Laurent Charlin,</a></span>
<span class="author"><a href="http://www.cs.mcgill.ca/~jpineau/">Joelle Pineau</a></span>
</div>
<div class="venue"><span class="journal">ArXiv</span>, <span class="year">2017</span></div>
<!-- <div class="links"><a href="http://idl.cs.washington.edu/files/2018-TensorFlowGraph-VAST.pdf" class="link at">PDF</a> | <a href="https://vimeo.com/232930758" class="link at">Video</a> | <span class="note">Best Paper Award</span></div> -->
</div>
</div>
</div>
<div>
<div class="heading">References</div>
<div class="paper">
<dl>
<dt><span class="small"><a href="#CITEaarts2006diachronic" id="aarts2006diachronic">[12006Aarts and Wallis]</a></span></dt>
<dd>
<span class="small">B. Aarts and S. A. Wallis. The diachronic corpus of present-day spoken english (DCPSE), 2006.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEabbott2016internet" id="abbott2016internet">[22016Abbott et al.Abbott, Ecker, Anand, and Walker]</a></span></dt>
<dd>
<span class="small">Robert Abbott, Brian Ecker, Pranav Anand, and Marilyn Walker. Internet argument corpus 2.0: An sql schema for dialogic social media and the corpora to go with it. In <em>Language Resources and Evaluation Conference, LREC2016</em>, 2016.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEafantenos2012developing" id="afantenos2012developing">[32012Afantenos et al.Afantenos, Asher, Benamara, Cadilhac, Dégremont, Denis, Guhe, Keizer, Lascarides, Lemon, et al.]</a></span></dt>
<dd>
<span class="small">S. Afantenos, N. Asher, F. Benamara, A. Cadilhac, Cédric Dégremont, P. Denis, M. Guhe, S. Keizer, A. Lascarides, O. Lemon, et al. Developing a corpus of strategic conversation in the settlers of catan. In <em>SeineDial 2012-The 16th workshop on the semantics and pragmatics of dialogue</em>, 2012.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEal2000translating" id="al2000translating">[42000Al-Onaizan et al.Al-Onaizan, Germann, Hermjakob, Knight, Koehn, M., and Yamada]</a></span></dt>
<dd>
<span class="small">Y. Al-Onaizan, U. Germann, U. Hermjakob, K. Knight, P. Koehn, D. M., and K. Yamada. Translating with scarce resources. In <em>AAAI</em>, 2000.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEameixa2013subtitles" id="ameixa2013subtitles">[52013Ameixa and Coheur]</a></span></dt>
<dd>
<span class="small">D. Ameixa and L. Coheur. From subtitles to human interactions: introducing the subtle corpus. Technical report, Tech. rep., 2013.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEanderson1991hcrc" id="anderson1991hcrc">[61991Anderson et al.Anderson, Bader, Bard, Boyle, Doherty, Garrod, Isard, Kowtko, McAllister, Miller, et al.]</a></span></dt>
<dd>
<span class="small">A. H. Anderson, M. Bader, E. G. Bard, E. Boyle, G. Doherty, S. Garrod, S. Isard, J. Kowtko, J. McAllister, J. Miller, et al. The HCRC map task corpus. <em>Language and speech</em>, 34 (4): 351-366, 1991.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEandreas2012annotating" id="andreas2012annotating">[72012Andreas et al.Andreas, Rosenthal, and McKeown]</a></span></dt>
<dd>
<span class="small">Jacob Andreas, Sara Rosenthal, and Kathleen McKeown. Annotating agreement and disagreement in threaded discussion. In <em>LREC</em>, pages 818-822. Citeseer, 2012.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEasri2016sequence" id="asri2016sequence">[82016Asri et al.Asri, He, and Suleman]</a></span></dt>
<dd>
<span class="small">L. E. Asri, J. He, and K. Suleman. A sequence-to-sequence model for user simulation in spoken dialogue systems. <em>arXiv preprint arXiv:1607.00070</em>, 2016.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEaubrey2013cardiff" id="aubrey2013cardiff">[92013Aubrey et al.Aubrey, Marshall, Rosin, Vandeventer, Cunningham, and Wallraven]</a></span></dt>
<dd>
<span class="small">A. J. Aubrey, D. Marshall, P. L. Rosin, J. Vandeventer, D. W. Cunningham, and C. Wallraven. Cardiff conversation database (CCDb): A database of natural dyadic conversations. In <em>Computer Vision and Pattern Recognition Workshops (CVPRW), IEEE Conference on</em>, pages 277-282, 2013.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEaust1995philips" id="aust1995philips">[101995Aust et al.Aust, Oerder, Seide, and Steinbiss]</a></span></dt>
<dd>
<span class="small">H. Aust, M. Oerder, F. Seide, and V. Steinbiss. The philips automatic train timetable information system. <em>Speech Communication</em>, 17 (3): 249-262, 1995.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbanchs2012movie" id="banchs2012movie">[112012Banchs]</a></span></dt>
<dd>
<span class="small">R. E. Banchs. Movie-DiC: a movie dialogue corpus for research and development. In <em>Proceedings of the 50th Annual Meeting of the Association for Computational Linguistics: Short Papers</em>, 2012.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbanchs2012iris" id="banchs2012iris">[122012Banchs and Li]</a></span></dt>
<dd>
<span class="small">R. E. Banchs and H. Li. IRIS: a chat-oriented dialogue system based on the vector space model. In <em>Proceedings of the ACL 2012 System Demonstrations</em>, 2012.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbanerjee2005meteor" id="banerjee2005meteor">[132005Banerjee and Lavie]</a></span></dt>
<dd>
<span class="small">S. Banerjee and A. Lavie. METEOR: An automatic metric for mt evaluation with improved correlation with human judgments. In <em>Proceedings of the ACL workshop on intrinsic and extrinsic evaluation measures for machine translation and/or summarization</em>, 2005.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbarlow2000corpus" id="barlow2000corpus">[142000Barlow]</a></span></dt>
<dd>
<span class="small">M. Barlow. Corpus of spoken, professional american-english, 2000.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbeare1999spoken" id="beare1999spoken">[151999Beare and Scott]</a></span></dt>
<dd>
<span class="small">J. Beare and B. Scott. The spoken corpus of the survey of english dialects: language variation and oral history. In <em>Proceedings of ALLC/ACH</em>, 1999.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbengio2003neural" id="bengio2003neural">[162003Bengio et al.Bengio, Ducharme, Vincent, and Janvin]</a></span></dt>
<dd>
<span class="small">Y. Bengio, R. Ducharme, P. Vincent, and C. Janvin. A neural probabilistic language model. <em>The Journal of Machine Learning Research</em>, 3: 1137-1155, 2003.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbengio2014deep" id="bengio2014deep">[172014Bengio et al.Bengio, Goodfellow, and Courville]</a></span></dt>
<dd>
<span class="small">Y. Bengio, I. Goodfellow, and A. Courville. Deep learning. <em>An MIT Press book in preparation. Draft chapters available at http://www. iro. umontreal. ca/ bengioy/dlbook</em>, 2014.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbennett2002carnegie" id="bennett2002carnegie">[182002Bennett and Rudnicky]</a></span></dt>
<dd>
<span class="small">C. Bennett and A. I Rudnicky. The carnegie mellon communicator corpus, 2002.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbiber1986initial" id="biber1986initial">[191986Biber and Finegan]</a></span></dt>
<dd>
<span class="small">D. Biber and E. Finegan. An initial typology of english text types. <em>Corpus linguistics II: New studies in the analysis and exploitation of computer corpora</em>, pages 19-46, 1986.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbiber2001diachronic" id="biber2001diachronic">[202001Biber and Finegan]</a></span></dt>
<dd>
<span class="small">D. Biber and E. Finegan. Diachronic relations among speech-based and written registers in english. <em>Variation in English: multi-dimensional studies</em>, pages 66-83, 2001.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbohus2008sorry" id="bohus2008sorry">[212008Bohus and Rudnicky]</a></span></dt>
<dd>
<span class="small">D. Bohus and A. I Rudnicky. Sorry, I didn’t catch that! In <em>Recent Trends in Discourse and Dialogue</em>, pages 123-154. Springer, 2008.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbraley18gap" id="braley18gap">[Braley and Murray]</a></span></dt>
<dd>
<span class="small">M. Braley and G. Murray. The Group Affect and Performance (GAP) Corpus. Proceedings of the ICMI Workshop on Group Interaction Frontiers in Technology, 2018.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbrennan2013entrainment" id="brennan2013entrainment">[222013Brennan et al.Brennan, Schuhmann, and Batres]</a></span></dt>
<dd>
<span class="small">S. E. Brennan, K. S. Schuhmann, and K. M. Batres. Entrainment on the move and in the lab: The walking around corpus. In <em>Proceedings of the 35th Annual Conference of the Cognitive Science Society</em>, 2013.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEbrown1984teaching" id="brown1984teaching">[231984Brown et al.Brown, Anderson, Shillcock, and Yule]</a></span></dt>
<dd>
<span class="small">G. Brown, A. Anderson, R. Shillcock, and G. Yule. Teaching talk. <em>Cambridge: CUP</em>, 1984.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEweilhammer2002multi" id="weilhammer2002multi">[242000Burger et al.Burger, Weilhammer, Schiel, and Tillmann]</a></span></dt>
<dd>
<span class="small">Susanne Burger, Karl Weilhammer, Florian Schiel, and Hans G Tillmann. Verbmobil data collection and annotation. In <em>Verbmobil: Foundations of speech-to-speech translation</em>, pages 537-549. Springer, 2000.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEcahn1999psychological" id="cahn1999psychological">[251999Cahn and Brennan]</a></span></dt>
<dd>
<span class="small">J. E. Cahn and S. E. Brennan. A psychological model of grounding and repair in dialog. In <em>AAAI Symposium on Psychological Models of Communication in Collaborative Systems</em>, 1999.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEcanavan1996callfriend" id="canavan1996callfriend">[261996Canavan and Zipperlen]</a></span></dt>
<dd>
<span class="small">A. Canavan and G. Zipperlen. Callfriend american english-non-southern dialect. <em>Linguistic Data Consortium</em>, 10: 1, 1996.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEcanavan1997callhome" id="canavan1997callhome">[271997Canavan et al.Canavan, Graff, and Zipperlen]</a></span></dt>
<dd>
<span class="small">A. Canavan, D. Graff, and G. Zipperlen. Callhome american english speech. <em>Linguistic Data Consortium</em>, 1997.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITECard:1983:PHI:578027" id="Card:1983:PHI:578027">[281983Card et al.Card, Moran, and Newell]</a></span></dt>
<dd>
<span class="small">S. K. Card, T. P. Moran, and A. Newell. <em>The Psychology of Human-Computer Interaction</em>. L. Erlbaum Associates Inc., Hillsdale, NJ, USA, 1983. ISBN 0898592437.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEcarter1998orders" id="carter1998orders">[291998Carter]</a></span></dt>
<dd>
<span class="small">R. Carter. Orders of reality: Cancode, communication, and culture. <em>ELT journal</em>, 52 (1): 43-56, 1998.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEcarter2006cambridge" id="carter2006cambridge">[302006Carter and McCarthy]</a></span></dt>
<dd>
<span class="small">R. Carter and M. McCarthy. <em>Cambridge grammar of English: a comprehensive guide; spoken and written English grammar and usage</em>. Ernst Klett Sprachen, 2006.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEchartrand1999chameleon" id="chartrand1999chameleon">[311999Chartrand and Bargh]</a></span></dt>
<dd>
<span class="small">Tanya L. Chartrand and J. A. Bargh. The chameleon effect: the perception-behavior link and social interaction. <em>Journal of personality and social psychology</em>, 76 (6): 893, 1999.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEchen2013creating" id="chen2013creating">[322013Chen and Kan]</a></span></dt>
<dd>
<span class="small">T. Chen and M. Kan. Creating a live, public short message service corpus: the nus sms corpus. <em>Language Resources and Evaluation</em>, 47 (2): 299-335, 2013.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEchen2016zero" id="chen2016zero">[332016Chen et al.Chen, Hakkani-Tür, and He]</a></span></dt>
<dd>
<span class="small">Y.-N. Chen, D. Hakkani-Tür, and X. He. Zero-shot learning of intent embeddings for expansion by convolutional deep structured semantic models. In <em>Acoustics, Speech and Signal Processing (ICASSP), 2016 IEEE International Conference on</em>, pages 6045-6049. IEEE, 2016.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEclark1991grounding" id="clark1991grounding">[341991Clark and Brennan]</a></span></dt>
<dd>
<span class="small">H. H. Clark and S. E. Brennan. Grounding in communication. <em>Perspectives on socially shared cognition</em>, 13: 127-149, 1991.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEcohen2005if" id="cohen2005if">[352005Cohen]</a></span></dt>
<dd>
<span class="small">P. R. Cohen. If not turing's test, then what? <em>AI magazine</em>, 26 (4): 61, 2005.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEBBS:2533884" id="BBS:2533884">[361981Colby]</a></span></dt>
<dd>
<span class="small">K. M. Colby. Modeling a paranoid mind. <em>Behavioral and Brain Sciences</em>, 4: 515-534, 1981.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEcooper1974control" id="cooper1974control">[371974Cooper]</a></span></dt>
<dd>
<span class="small">R. M. Cooper. The control of eye fixation by the meaning of spoken language: A new methodology for the real-time investigation of speech perception, memory, and language processing. <em>Cognitive Psychology</em>, 6 (1): 84-107, 1974.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITECristianini1999" id="Cristianini1999">[382000Cristianini and Shawe-Taylor]</a></span></dt>
<dd>
<span class="small">N. Cristianini and J. Shawe-Taylor. <em>An Introduction to Support Vector Machines: And Other Kernel-based Learning Methods</em>. Cambridge University Press, 2000.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEcuayahuitl2015strategic" id="cuayahuitl2015strategic">[392015Cuayáhuitl et al.Cuayáhuitl, Keizer, and Lemon]</a></span></dt>
<dd>
<span class="small">H. Cuayáhuitl, S. Keizer, and O. Lemon. Strategic dialogue management via deep reinforcement learning. <em>arXiv preprint arXiv:1511.08099</em>, 2015.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEDanescu-Niculescu-Mizil+Lee:11a" id="Danescu-Niculescu-Mizil+Lee:11a">[402011Danescu-Niculescu-Mizil and Lee]</a></span></dt>
<dd>
<span class="small">C. Danescu-Niculescu-Mizil and L. Lee. Chameleons in imagined conversations: A new approach to understanding coordination of linguistic style in dialogs. In <em>Proceedings of the Workshop on Cognitive Modeling and Computational Linguistics, ACL</em>, 2011.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEdaubigney2012comprehensive" id="daubigney2012comprehensive">[412012Daubigney et al.Daubigney, Geist, Chandramohan, and Pietquin]</a></span></dt>
<dd>
<span class="small">L. Daubigney, M. Geist, S. Chandramohan, and O. Pietquin. A comprehensive reinforcement learning framework for dialogue management optimization. <em>IEEE Journal of Selected Topics in Signal Processing</em>, 6 (8): 891-902, 2012.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEdavies2012comparing" id="davies2012comparing">[422012aDavies]</a></span></dt>
<dd>
<span class="small">M. Davies. Comparing the corpus of american soap operas, COCA, and the BNC, 2012a.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEdavies2012corpus" id="davies2012corpus">[432012bDavies]</a></span></dt>
<dd>
<span class="small">M. Davies. Corpus of american soap operas, 2012b.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEde2013speaker" id="de2013speaker">[442013de Kok et al.de Kok, Heylen, and Morency]</a></span></dt>
<dd>
<span class="small">I. de Kok, D. Heylen, and L. Morency. Speaker-adaptive multimodal prediction model for listener responses. In <em>Proceedings of the 15th ACM on International conference on multimodal interaction</em>, 2013.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEdeng2013machine" id="deng2013machine">[452013Deng and Li]</a></span></dt>
<dd>
<span class="small">L. Deng and X. Li. Machine learning paradigms for speech recognition: An overview. <em>Audio, Speech, and Language Processing, IEEE Transactions on</em>, 21 (5): 1060-1089, 2013.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEdenoyer2007wikipedia" id="denoyer2007wikipedia">[462007Denoyer and Gallinari]</a></span></dt>
<dd>
<span class="small">L. Denoyer and P. Gallinari. The wikipedia xml corpus. In <em>Comparative Evaluation of XML Information Retrieval Systems</em>, pages 12-19. Springer, 2007.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEdhingra2016tweet2vec" id="dhingra2016tweet2vec">[472016Dhingra et al.Dhingra, Zhou, Fitzpatrick, Muehl, and Cohen]</a></span></dt>
<dd>
<span class="small">B. Dhingra, Z. Zhou, D. Fitzpatrick, M. Muehl, and W. Cohen. Tweet2vec: Character-based distributed representations for social media. <em>arXiv preprint arXiv:1605.03481</em>, 2016.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEdjalali2012corpus" id="djalali2012corpus">[482012Djalali et al.Djalali, Lauer, and Potts]</a></span></dt>
<dd>
<span class="small">A. Djalali, S. Lauer, and C. Potts. Corpus evidence for preference-driven interpretation. In <em>Logic, Language and Meaning</em>, pages 150-159. Springer, 2012.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEdodge2015evaluating" id="dodge2015evaluating">[492015Dodge et al.Dodge, Gane, Zhang, Bordes, Chopra, Miller, Szlam, and Weston]</a></span></dt>
<dd>
<span class="small">J. Dodge, A. Gane, X. Zhang, A. Bordes, S. Chopra, A. Miller, A. Szlam, and J. Weston. Evaluating prerequisite qualities for learning end-to-end dialog systems. <em>arXiv preprint arXiv:1511.06931</em>, 2015.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEdose2013flipping" id="dose2013flipping">[502013Dose]</a></span></dt>
<dd>
<span class="small">S. Dose. Flipping the script: A corpus of american television series (cats) for corpus-based language learning and teaching. <em>Corpus Linguistics and Variation in English: Focus on Non-native Englishes</em>, 2013.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEdouglas2007humaine" id="douglas2007humaine">[512007Douglas-Cowie et al.Douglas-Cowie, Cowie, Sneddon, Cox, Lowry, Mcrorie, Martin, Devillers, Abrilian, Batliner, et al.]</a></span></dt>
<dd>
<span class="small">E. Douglas-Cowie, R. Cowie, I. Sneddon, C. Cox, O. Lowry, M. Mcrorie, J. Martin, L. Devillers, S. Abrilian, A. Batliner, et al. The humaine database: addressing the collection and annotation of naturalistic and induced emotional data. In <em>Affective computing and intelligent interaction</em>, pages 488-500. Springer, 2007.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEeckert1997user" id="eckert1997user">[521997Eckert et al.Eckert, Levin, and Pieraccini]</a></span></dt>
<dd>
<span class="small">W. Eckert, E. Levin, and R. Pieraccini. User modeling for spoken dialogue system evaluation. In <em>Automatic Speech Recognition and Understanding, 1997. Proceedings., 1997 IEEE Workshop on</em>, pages 80-87, 1997.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEelframes" id="elframes">[532017El Asri et al.El Asri, Schulz, Sharma, Zumer, Harris, Fine, Mehrotra, and Suleman]</a></span></dt>
<dd>
<span class="small">L. El Asri, H. Schulz, S. Sharma, J. Zumer, J. Harris, E. Fine, R. Mehrotra, and K. Suleman. Frames: Acorpus for adding memory to goal-oriented dialogue systems. preprint on webpage at <tt>http://www.maluuba.com/publications/</tt>, 2017.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEkvret" id="kvret">[Eric and Manning, 2017]</a></span></dt>
<dd>
<span class="small">M. Eric, C.D. Manning. Key-Value Retrieval Networks for Task-Oriented Dialogue. arXiv preprint arXiv:1705.05414, 2017.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEmultiwoz" id="multiwoz">[Budzianowski, Wen, Tseng, Casanueva, Ultes, Ramadan and Gasic, 2018]</a></span></dt>
<dd>
<span class="small">P. Budzianowski, T-H. Wen, B-H. Tseng, I. Casanueva, S. Ultes, O. Ramadan, M. Gasic. MultiWOZ - A Large-Scale Multi-Domain Wizard-of-Oz Dataset for Task-Oriented Dialogue Modelling. arXiv preprint arXiv:1810.00278. 2018.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEelsner2008you" id="elsner2008you">[542008Elsner and Charniak]</a></span></dt>
<dd>
<span class="small">M. Elsner and E. Charniak. You talking to me? a corpus and algorithm for conversation disentanglement. In <em>Association for Computational Linguistics (ACL)</em>, 2008.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEerhan2010jmlr" id="erhan2010jmlr">[552010Erhan et al.Erhan, Bengio, Courville, Manzagol, and Vincent]</a></span></dt>
<dd>
<span class="small">D. Erhan, Y. Bengio, A. Courville, Pierre-A. Manzagol, and P. Vincent. Why does unsupervised pre-training help deep learning? <em>Journal of Machine Learning Research</em>, 11, 2010.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEfabbrizio_bootstrappingspoken" id="fabbrizio_bootstrappingspoken">[562004Fabbrizio et al.Fabbrizio, Tur, and Hakkani-Tür]</a></span></dt>
<dd>
<span class="small">G. Di Fabbrizio, G. Tur, and D. Hakkani-Tür. Bootstrapping spoken dialog systems with data reuse. In <em>SIGDIAL</em>, 2004.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEfatemi2016policy" id="fatemi2016policy">[572016Fatemi et al.Fatemi, Asri, Schulz, He, and Suleman]</a></span></dt>
<dd>
<span class="small">M. Fatemi, L. E. Asri, H. Schulz, J. He, and K. Suleman. Policy networks with two-stage training for dialogue systems. In <em>Special Interest Group on Discourse and Dialogue (SIGDIAL)</em>, 2016.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEfisher2006you" id="fisher2006you">[582006Fisher et al.Fisher, Smith, and Welser]</a></span></dt>
<dd>
<span class="small">D. Fisher, M. Smith, and H. T Welser. You are who you talk to: Detecting roles in usenet newsgroups. In <em>Proceedings of the 39th Annual Hawaii International Conference on System Sciences (HICSS'06)</em>, volume 3, pages 59b-59b, 2006.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEforchini2009spontaneity" id="forchini2009spontaneity">[592009Forchini]</a></span></dt>
<dd>
<span class="small">P. Forchini. Spontaneity reloaded: American face-to-face and movie conversation compared. In <em>Corpus Linguistics</em>, 2009.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEforchini2012movie" id="forchini2012movie">[602012Forchini]</a></span></dt>
<dd>
<span class="small">P. Forchini. <em>Movie language revisited. Evidence from multi-dimensional analysis and corpora</em>. Peter Lang, 2012.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEforguesbootstrapping" id="forguesbootstrapping">[612014Forgues et al.Forgues, Pineau, Larchevêque, and Tremblay]</a></span></dt>
<dd>
<span class="small">G. Forgues, J. Pineau, J. Larchevêque, and R. Tremblay. Bootstrapping dialog systems with word embeddings. In <em>Workshop on Modern Machine Learning and Natural Language Processing, Advances in neural information processing systems (NIPS)</em>, 2014.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEforsyth2007lexical" id="forsyth2007lexical">[622007Forsyth and Martell]</a></span></dt>
<dd>
<span class="small">E. N. Forsyth and C. H. Martell. Lexical and discourse analysis of online chat dialog. In <em>International Conference on Semantic Computing (ICSC).</em>, pages 19-26, 2007.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEGalleyBSJAQMGD15" id="GalleyBSJAQMGD15">[632015Galley et al.Galley, Brockett, Sordoni, Ji, Auli, Quirk, Mitchell, Gao, and Dolan]</a></span></dt>
<dd>
<span class="small">M. Galley, C. Brockett, A. Sordoni, Y. Ji, M. Auli, C. Quirk, M. Mitchell, J. Gao, and B. Dolan. deltaBLEU: A discriminative metric for generation tasks with intrinsically diverse targets. In <em>Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing of the Asian Federation of Natural Language Processing, ACL</em>, pages 445-450, 2015.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgavsic2010gaussian" id="gavsic2010gaussian">[642010Gasi\'c et al.Gasi\'c, Jurcícek, Keizer, Mairesse, Thomson, Yu, and Young]</a></span></dt>
<dd>
<span class="small">M. Gasi\'c, F. Jurcícek, S. Keizer, F. Mairesse, B. Thomson, K. Yu, and S. Young. Gaussian processes for fast policy optimisation of pomdp-based dialogue managers. In <em>Proceedings of the 11th Annual Meeting of the Special Interest Group on Discourse and Dialogue</em>, pages 201-204. Association for Computational Linguistics, 2010.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgavsic2011line" id="gavsic2011line">[652011Gasi\'c et al.Gasi\'c, Jurcícek, Thomson, Yu, and Young]</a></span></dt>
<dd>
<span class="small">M. Gasi\'c, F. Jurcícek, B. Thomson, K. Yu, and S. Young. On-line policy optimisation of spoken dialogue systems via live interaction with human subjects. In <em>IEEE Workshop on Automatic Speech Recognition and Understanding (ASRU)</em>, pages 312-317. IEEE, 2011.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgavsic2012policy" id="gavsic2012policy">[662012Gasi\'c et al.Gasi\'c, Henderson, Thomson, Tsiakoulis, and Young]</a></span></dt>
<dd>
<span class="small">M. Gasi\'c, M. Henderson, B. Thomson, P. Tsiakoulis, and S. Young. Policy optimisation of pomdp-based dialogue systems without state space compression. In <em>Spoken Language Technology Workshop (SLT), 2012 IEEE</em>, pages 31-36. IEEE, 2012.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgasic2013line" id="gasic2013line">[672013Gasic et al.Gasic, Breslin, Henderson, Kim, Szummer, Thomson, Tsiakoulis, and Young]</a></span></dt>
<dd>
<span class="small">M. Gasic, C. Breslin, M. Henderson, D. Kim, M. Szummer, B. Thomson, P. Tsiakoulis, and S. Young. On-line policy optimisation of Bayesian spoken dialogue systems via human interaction. In <em>IEEE International Conference on Acoustics, Speech and Signal Processing</em>, pages 8367-8371, 2013.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgavsic2016dialogue" id="gavsic2016dialogue">[682016Gasi\'c et al.Gasi\'c, Mrksi\'c, Rojas-Barahona, Su, Ultes, Vandyke, Wen, and Young]</a></span></dt>
<dd>
<span class="small">M. Gasi\'c, N. Mrksi\'c, L. M. Rojas-Barahona, P.-H. Su, S. Ultes, D. Vandyke, T.-H. Wen, and S. Young. Dialogue manager domain adaptation using gaussian process reinforcement learning. <em>Computer Speech & Language</em>, 2016.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgenevay2016transfer" id="genevay2016transfer">[692016Genevay and Laroche]</a></span></dt>
<dd>
<span class="small">A. Genevay and R. Laroche. Transfer learning for user adaptation in spoken dialogue systems. In <em>Proceedings of the 2016 International Conference on Autonomous Agents & Multiagent Systems</em>, pages 975-983. International Foundation for Autonomous Agents and Multiagent Systems, 2016.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgeorgila2006user" id="georgila2006user">[702006Georgila et al.Georgila, Henderson, and Lemon]</a></span></dt>
<dd>
<span class="small">K. Georgila, J. Henderson, and O. Lemon. User simulation for spoken dialogue systems: learning and evaluation. In <em>Proceedings of INTERSPEECH</em>, 2006.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgeorgila2010match" id="georgila2010match">[712010Georgila et al.Georgila, Wolters, Moore, and Logie]</a></span></dt>
<dd>
<span class="small">K. Georgila, M. Wolters, J. D. Moore, and R. H. Logie. The MATCH corpus: A corpus of older and younger users’ interactions with spoken dialogue systems. <em>Language Resources and Evaluation</em>, 44 (3): 221-261, 2010.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgibson1963perception" id="gibson1963perception">[721963Gibson and Pick]</a></span></dt>
<dd>
<span class="small">J. Gibson and A. D. Pick. Perception of another person's looking behavior. <em>The American journal of psychology</em>, 76 (3): 386-394, 1963.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgodfrey1992switchboard" id="godfrey1992switchboard">[731992Godfrey et al.Godfrey, Holliman, and McDaniel]</a></span></dt>
<dd>
<span class="small">J. J Godfrey, E. C Holliman, and J McDaniel. SWITCHBOARD: Telephone speech corpus for research and development. In <em>International Conference on Acoustics, Speech, and Signal Processing (ICASSP-92)</em>, 1992.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEGoodfellow-et-al-2015-Book" id="Goodfellow-et-al-2015-Book">[742015Goodfellow et al.Goodfellow, Courville, and Bengio]</a></span></dt>
<dd>
<span class="small">I. Goodfellow, A. Courville, and Y. Bengio. Deep learning. Book in preparation for MIT Press, 2015. URL <tt>http://goodfeli.github.io/dlbook/</tt>.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEGoodwin:1981:Conversational" id="Goodwin:1981:Conversational">[751981Goodwin]</a></span></dt>
<dd>
<span class="small">C. Goodwin. <em>Conversational Organization: Interaction Between Speakers and Hearers</em>. New York: Academic Press, 1981.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgorin1997may" id="gorin1997may">[761997Gorin et al.Gorin, Riccardi, and Wright]</a></span></dt>
<dd>
<span class="small">A. L. Gorin, G. Riccardi, and J. H. Wright. How may I help you? <em>Speech Communication</em>, 23 (1): 113-127, 1997.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgratch2007rapport" id="gratch2007rapport">[762007Gratch]</a></span></dt>
<dd>
<span class="small">J. Gratch, N. Wang, J. Gerten, E. Fast, and R. Duffy. Creating Rapport with Virtual Agents. <em>7th International Conference on Intelligent Virtual Agents, Paris, France 2007</em>.
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgraves2012seq" id="graves2012seq">[772012Graves]</a></span></dt>
<dd>
<span class="small">A. Graves. Sequence transduction with recurrent neural networks. In <em>Proceedings of the 29th International Conference on Machine Learning (ICML), Representation Learning Workshop</em>, 2012.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgraves14" id="graves14">[782014Graves et al.Graves, Wayne, and Danihelka]</a></span></dt>
<dd>
<span class="small">A. Graves, G. Wayne, and I. Danihelka. Neural turing machines. <em>arXiv preprint arXiv:1410.5401</em>, 2014.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgreenbaum1996comparing" id="greenbaum1996comparing">[791996Greenbaum]</a></span></dt>
<dd>
<span class="small">S. Greenbaum. <em>Comparing English worldwide: The international corpus of English</em>. Clarendon Press, 1996.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgreenbaum1996international" id="greenbaum1996international">[801996Greenbaum and Nelson]</a></span></dt>
<dd>
<span class="small">S. Greenbaum and G Nelson. The international corpus of english (ICE) project. <em>World Englishes</em>, 15 (1): 3-15, 1996.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEDBLP:journals/corr/GulcehreFXCBLBS15" id="DBLP:journals/corr/GulcehreFXCBLBS15">[812015Gülçehre et al.Gülçehre, Firat, Xu, Cho, Barrault, Lin, Bougares, Schwenk, and Bengio]</a></span></dt>
<dd>
<span class="small">C. Gülçehre, O. Firat, K. Xu, K. Cho, L. Barrault, H. Lin, F. Bougares, H. Schwenk, and Y. Bengio. On using monolingual corpora in neural machine translation. <em>CoRR</em>, abs/1503.03535, 2015.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEgurevych2004semantic" id="gurevych2004semantic">[822004Gurevych and Strube]</a></span></dt>
<dd>
<span class="small">I. Gurevych and M. Strube. Semantic similarity applied to spoken dialogue summarization. In <em>Proceedings of the 20th international conference on Computational Linguistics</em>, 2004.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEhaslerud1995bergen" id="haslerud1995bergen">[831995Haslerud and Stenström]</a></span></dt>
<dd>
<span class="small">V. Haslerud and A. Stenström. The bergen corpus of london teenager language (COLT). <em>Spoken English on Computer. Transcription, Mark-up and Application. London: Longman</em>, pages 235-242, 1995.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEheeman1995trains" id="heeman1995trains">[841995Heeman and Allen]</a></span></dt>
<dd>
<span class="small">Peter A Heeman and James F Allen. The trains 93 dialogues. Technical report, DTIC Document, 1995.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEhemphill1990atis" id="hemphill1990atis">[851990Hemphill et al.Hemphill, Godfrey, and Doddington]</a></span></dt>
<dd>
<span class="small">C. T. Hemphill, J. J. Godfrey, and G. R. Doddington. The atis spoken language systems pilot corpus. In <em>Proceedings of the DARPA speech and natural language workshop</em>, pages 96-101, 1990.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEhenderson2013deep" id="henderson2013deep">[862013Henderson et al.Henderson, Thomson, and Young]</a></span></dt>
<dd>
<span class="small">M. Henderson, B. Thomson, and S. Young. Deep neural network approach for the dialog state tracking challenge. In <em>Special Interest Group on Discourse and Dialogue (SIGDIAL)</em>, 2013.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEhenderson2014dialog" id="henderson2014dialog">[872014aHenderson et al.Henderson, Thomson, and Williams]</a></span></dt>
<dd>
<span class="small">M. Henderson, B. Thomson, and J. Williams. Dialog state tracking challenge 2 & 3, 2014a.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEhenderson2014second" id="henderson2014second">[882014bHenderson et al.Henderson, Thomson, and Williams]</a></span></dt>
<dd>
<span class="small">M. Henderson, B. Thomson, and J. Williams. The second dialog state tracking challenge. In <em>SIGDIAL</em>, 2014b.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEhenderson2014word" id="henderson2014word">[892014cHenderson et al.Henderson, Thomson, and Young]</a></span></dt>
<dd>
<span class="small">M. Henderson, B. Thomson, and S. Young. Word-based dialog state tracking with recurrent neural networks. In <em>15th Special Interest Group on Discourse and Dialogue (SIGDIAL)</em>, page 292, 2014c.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEhinton2012deep" id="hinton2012deep">[902012Hinton et al.Hinton, Deng, Yu, Dahl, Mohamed, Jaitly, Senior, Vanhoucke, Nguyen, Sainath, et al.]</a></span></dt>
<dd>
<span class="small">G. Hinton, L. Deng, D. Yu, G. E. Dahl, A. Mohamed, N. Jaitly, A. Senior, V. Vanhoucke, P. Nguyen, T.a N. Sainath, et al. Deep neural networks for acoustic modeling in speech recognition: The shared views of four research groups. <em>Signal Processing Magazine, IEEE</em>, 29 (6): 82-97, 2012.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEhiraoka2016active" id="hiraoka2016active">[912016Hiraoka et al.Hiraoka, Neubig, Yoshino, Toda, and Nakamura]</a></span></dt>
<dd>
<span class="small">T. Hiraoka, G. Neubig, K. Yoshino, T. Toda, and S. Nakamura. Active learning for example-based dialog systems. In <em>Proc Intl Workshop on Spoken Dialog Systems, Saariselka, Finland</em>, 2016.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEhung2010idiap" id="hung2010idiap">[922010Hung and Chittaranjan]</a></span></dt>
<dd>
<span class="small">H. Hung and G. Chittaranjan. The IDIAP wolf corpus: exploring group behaviour in a competitive role-playing game. In <em>Proceedings of the international conference on Multimedia</em>, pages 879-882, 2010.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEHutchens:1998:IM:1603899.1603945" id="Hutchens:1998:IM:1603899.1603945">[931998Hutchens and Alder]</a></span></dt>
<dd>
<span class="small">J. L. Hutchens and M. D. Alder. Introducing MegaHAL. In <em>Proceedings of the Joint Conferences on New Methods in Language Processing and Computational Natural Language Learning</em>, 1998.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEjonsson1988talking" id="jonsson1988talking">[941988J. and D.]</a></span></dt>
<dd>
<span class="small">Arne J. and Nils D. Talking to a computer is not like talking to your best friend. In <em>Proceedings of The first Scandinivian Conference on Artificial Intelligence</em>, 1988.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEjung2009data" id="jung2009data">[952009Jung et al.Jung, Lee, Kim, Jeong, and Lee]</a></span></dt>
<dd>
<span class="small">S. Jung, C. Lee, K. Kim, M. Jeong, and G. G. Lee. Data-driven user simulation for automated evaluation of spoken dialog systems. <em>Computer Speech & Language</em>, 23 (4): 479-509, 2009.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEjurafsky2008speech" id="jurafsky2008speech">[962008Jurafsky and Martin]</a></span></dt>
<dd>
<span class="small">D. Jurafsky and J. H. Martin. <em>Speech and language processing, 2nd Edition</em>. Prentice Hall, 2008.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEjurcicek2011real" id="jurcicek2011real">[972011Jurc cek et al.Jurc cek, Keizer, Gasic, Mairesse, Thomson, Yu, and Young]</a></span></dt>
<dd>
<span class="small">F. Jurccek, S. Keizer, M. Gasic, F. Mairesse, B. Thomson, K. Yu, and S. Young. Real user evaluation of spoken dialogue systems using amazon mechanical turk. In <em>Proceedings of INTERSPEECH</em>, volume 11, 2011.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEkadlec2015improved" id="kadlec2015improved">[982015Kadlec et al.Kadlec, Schmid, and Kleindienst]</a></span></dt>
<dd>
<span class="small">R. Kadlec, M. Schmid, and J. Kleindienst. Improved deep learning baselines for ubuntu corpus dialogs. <em>Neural Information Processing Systems Workshop on Machine Learning for Spoken Language Understanding</em>, 2015.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEkim2015dialog" id="kim2015dialog">[992015Kim et al.Kim, D’Haro, Banchs, Williams, and Henderson]</a></span></dt>
<dd>
<span class="small">S. Kim, L. F. D’Haro, R. E. Banchs, J. Williams, and M. Henderson. Dialog state tracking challenge 4, 2015.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEkim2016fifth" id="kim2016fifth">[1002016Kim et al.Kim, D’Haro, Banchs, Williams, Henderson, and Yoshino]</a></span></dt>
<dd>
<span class="small">S. Kim, L. F. D’Haro, R. E. Banchs, J. D. Williams, M. Henderson, and K. Yoshino. The fifth dialog state tracking challenge. In <em>IEEE Spoken Language Technology Workshop (SLT)</em>, 2016.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEkonstan1997grouplens" id="konstan1997grouplens">[1011997Konstan et al.Konstan, Miller, Maltz, Herlocker, Gordon, and Riedl]</a></span></dt>
<dd>
<span class="small">J. A Konstan, B. N. Miller, D. Maltz, J. L. Herlocker, L. R. Gordon, and J. Riedl. Grouplens: applying collaborative filtering to usenet news. <em>Communications of the ACM</em>, 40 (3): 77-87, 1997.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEkoutsomm2018multi" id="koutsomm2018multi">[1012018Koutsombogera and Vogel]</a></span></dt>
<dd>
<span class="small">M. Koutsombogera and C. Vogel. Modeling Collaborative Multimodal Behavior in Group Dialogues: The MULTISIMO Corpus. <em>11th International Conference on Language Resources and Evaluation (LREC 2018)</em>, 2018.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEkumar2015ask" id="kumar2015ask">[1022015Kumar et al.Kumar, Irsoy, Su, Bradbury, English, Pierce, Ondruska, Gulrajani, and Socher]</a></span></dt>
<dd>
<span class="small">A. Kumar, O. Irsoy, J. Su, J. Bradbury, R. English, B. Pierce, P. Ondruska, I. Gulrajani, and R. Socher. Ask me anything: Dynamic memory networks for natural language processing. <em>Neural Information Processing Systems (NIPS)</em>, 2015.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEkyto2006guide" id="kyto2006guide">[1032006Kytö and Walker]</a></span></dt>
<dd>
<span class="small">Merja Kytö and Terry Walker. <em>Guide to A corpus of English dialogues 1560-1760</em>. Acta Universitatis Upsaliensis, 2006.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITElangkilde1998generation" id="langkilde1998generation">[1041998Langkilde and Knight]</a></span></dt>
<dd>
<span class="small">I. Langkilde and K. Knight. Generation that exploits corpus-based statistical knowledge. In <em>Proceedings of the 36th Annual Meeting of the Association for Computational Linguistics and 17th International Conference on Computational Linguistics-Volume 1</em>, pages 704-710. Association for Computational Linguistics, 1998.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEleech1992100" id="leech1992100">[1051992Leech]</a></span></dt>
<dd>
<span class="small">G. Leech. 100 million words of english: the british national corpus (BNC). <em>Language Research</em>, 28 (1): 1-13, 1992.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITElevin1997stochastic" id="levin1997stochastic">[1061997Levin and Pieraccini]</a></span></dt>
<dd>
<span class="small">E. Levin and R. Pieraccini. A stochastic model of computer-human interaction for learning dialogue strategies. In <em>Eurospeech</em>, volume 97, pages 1883-1886, 1997.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITElevin1997learning" id="levin1997learning">[1071997Levin et al.Levin, Pieraccini, and Eckert]</a></span></dt>
<dd>
<span class="small">E. Levin, R. Pieraccini, and W. Eckert. Learning dialogue strategies within the markov decision process framework. In <em>Automatic Speech Recognition and Understanding, 1997. Proceedings., 1997 IEEE Workshop on</em>, pages 72-79. IEEE, 1997.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEli2015diversity" id="li2015diversity">[1082015Li et al.Li, Galley, Brockett, Gao, and Dolan]</a></span></dt>
<dd>
<span class="small">J. Li, M. Galley, C. Brockett, J. Gao, and B. Dolan. A diversity-promoting objective function for neural conversation models. <em>arXiv preprint arXiv:1510.03055</em>, 2015.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEli2016persona" id="li2016persona">[1092016Li et al.Li, Galley, Brockett, Gao, and D.]</a></span></dt>
<dd>
<span class="small">J. Li, M. Galley, C. Brockett, J. Gao, and Bill D. A persona-based neural conversation model. In <em>ACL</em>, pages 994-1003, 2016.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITElin2011" id="lin2011">[1102011aLin and Walker]</a></span></dt>
<dd>
<span class="small">G. Lin and M. Walker. All the world's a stage: Learning character models from film. In <em>AAAI Conference on Artificial Intelligence and Interactive Digital Entertainment</em>, 2011a.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITElin2011all" id="lin2011all">[1112011bLin and Walker]</a></span></dt>
<dd>
<span class="small">G. I. Lin and M. A. Walker. All the world's a stage: Learning character models from film. In <em>AIIDE</em>, 2011b.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITEli2017daily" id="li2017daily">[11142017bLi et al.]</a></span></dt>
<dd>
<span class="small">Y. Li, H. Su, X. Shen, W. Li, Z. Cao, & S. Niu. DailyDialog: A Manually Labelled Multi-turn Dialogue Dataset. In <emph>IJCNLP</emph>, 2017.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITElord1974perception" id="lord1974perception">[1121974Lord and Haith]</a></span></dt>
<dd>
<span class="small">C. Lord and M. Haith. The perception of eye contact. <em>Attention, Perception, & Psychophysics</em>, 16 (3): 413-416, 1974.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITElowe2015ubuntu" id="lowe2015ubuntu">[1132015aLowe et al.Lowe, Pow, Serban, and Pineau]</a></span></dt>
<dd>
<span class="small">R. Lowe, N. Pow, I. Serban, and J. Pineau. The ubuntu dialogue corpus: A large dataset for research in unstructured multi-turn dialogue systems. In <em>Special Interest Group on Discourse and Dialogue (SIGDIAL)</em>, 2015a.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITElowe2015incorporating" id="lowe2015incorporating">[1142015bLowe et al.Lowe, Pow, Serban, Charlin, and Pineau]</a></span></dt>
<dd>
<span class="small">R. Lowe, N. Pow, I. V. Serban, L. Charlin, and J. Pineau. Incorporating unstructured textual knowledge sources into neural dialogue systems. <em>Neural Information Processing Systems Workshop on Machine Learning for Spoken Language Understanding</em>, 2015b.</span>
<div class="p">
<span class="small"><!----></span>
</div>
</dd>
<dt><span class="small"><a href="#CITElowe2016evaluation" id="lowe2016evaluation">[1152016Lowe et al.Lowe, Serban, Noseworthy, Charlin, and Pineau]</a></span></dt>
<dd>
<span class="small">R. Lowe, I. V. Serban, M. Noseworthy, L. Charlin, and J. Pineau. On the evaluation of dialogue systems with next utterance classification. In <em>Special Interest Group on Discourse and Dialogue (SIGDIAL)</em>, 2016.</span>
<div class="p">
<span class="small"><!----></span>
</div>