-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathref.bib
executable file
·1751 lines (1746 loc) · 64 KB
/
ref.bib
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
@article{turing1950computing,
title={Computing machinery and intelligence},
author={Turing, Alan M},
journal={Mind},
volume={59},
number={236},
pages={433--460},
year={1950},
publisher={JSTOR}
}
@article{zaremba2014recurrent,
title={Recurrent neural network regularization},
author={Zaremba, Wojciech and Sutskever, Ilya and Vinyals, Oriol},
journal={arXiv preprint arXiv:1409.2329},
year={2014}
}
@phdthesis{purver2004theory,
title={The theory and use of clarification requests in dialogue},
author={Purver, Matthew Richard John},
year={2004},
school={University of London}
}
@inproceedings{stoyanchev2015localized,
title={Localized error detection for targeted clarification in a virtual assistant},
author={Stoyanchev, Svetlana and Johnston, Michael},
booktitle={Acoustics, Speech and Signal Processing (ICASSP), 2015 IEEE International Conference on},
pages={5241--5245},
year={2015},
organization={IEEE}
}
@article{nerbonne2005interrogative,
title={Interrogative Investigations: The Form, Meaning and Use of English Interrogatives},
author={Nerbonne, John A},
journal={Language},
volume={81},
number={4},
pages={989--992},
year={2005},
publisher={Linguistic Society of America}
}
@article{greff2017lstm,
title={{LSTM}: A search space odyssey},
author={Greff, Klaus and Srivastava, Rupesh K and Koutn{\'\i}k, Jan and Steunebrink, Bas R and Schmidhuber, J{\"u}rgen},
journal={IEEE transactions on neural networks and learning systems},
year={2017},
publisher={IEEE}
}
@inproceedings{jozefowicz2015empirical,
title={An empirical exploration of recurrent network architectures},
author={Jozefowicz, Rafal and Zaremba, Wojciech and Sutskever, Ilya},
booktitle={Proceedings of the 32nd International Conference on Machine Learning (ICML-15)},
pages={2342--2350},
year={2015}
}
@article{cheng2016long,
title={Long short-term memory-networks for machine reading},
author={Cheng, Jianpeng and Dong, Li and Lapata, Mirella},
journal={EMNLP},
year={2016}
}
@article{oord2016pixel,
title={Pixel recurrent neural networks},
author={Oord, Aaron van den and Kalchbrenner, Nal and Kavukcuoglu, Koray},
journal={International Conference on Machine Learning},
year={2016}
}
@inproceedings{xu2015show,
title={Show, attend and tell: Neural image caption generation with visual attention},
author={Xu, Kelvin and Ba, Jimmy and Kiros, Ryan and Cho, Kyunghyun and Courville, Aaron and Salakhudinov, Ruslan and Zemel, Rich and Bengio, Yoshua},
booktitle={International Conference on Machine Learning},
pages={2048--2057},
year={2015}
}
@article{tai2015improved,
title={Improved semantic representations from tree-structured long short-term memory networks},
author={Tai, Kai Sheng and Socher, Richard and Manning, Christopher D},
journal={ACL},
year={2015}
}
@article{kalchbrenner2015grid,
title={Grid long short-term memory},
author={Kalchbrenner, Nal and Danihelka, Ivo and Graves, Alex},
journal={ICLR},
year={2016}
}
@article{hochreiter1997long,
title={Long short-term memory},
author={Hochreiter, Sepp and Schmidhuber, J{\"u}rgen},
journal={Neural computation},
volume={9},
number={8},
pages={1735--1780},
year={1997},
publisher={MIT Press}
}
@article{chung2014empirical,
title={Empirical evaluation of gated recurrent neural networks on sequence modeling},
author={Chung, Junyoung and Gulcehre, Caglar and Cho, KyungHyun and Bengio, Yoshua},
journal={NIPS},
year={2014}
}
@inproceedings{graves2009offline,
title={Offline handwriting recognition with multidimensional recurrent neural networks},
author={Graves, Alex and Schmidhuber, J{\"u}rgen},
booktitle={Advances in neural information processing systems},
year={2009}
}
@article{graves2005framewise,
title={Framewise phoneme classification with bidirectional LSTM and other neural network architectures},
author={Graves, Alex and Schmidhuber, J{\"u}rgen},
journal={Neural Networks},
year={2005},
publisher={Elsevier}
}
@article{mikolov2012context,
title={Context dependent recurrent neural network language model.},
author={Mikolov, Tomas and Zweig, Geoffrey},
journal={SLT},
year={2012}
}
@article{bengio1994learning,
title={Learning long-term dependencies with gradient descent is difficult},
author={Bengio, Yoshua and Simard, Patrice and Frasconi, Paolo},
journal={IEEE transactions on neural networks},
volume={5},
number={2},
pages={157--166},
year={1994},
publisher={IEEE}
}
@article{mikolov2012statistical,
title={Statistical language models based on neural networks},
author={Mikolov, Tom{\'a}{\v{s}}},
journal={Presentation at Google, Mountain View, 2nd April},
year={2012}
}
@article{funahashi1993approximation,
title={Approximation of dynamical systems by continuous time recurrent neural networks},
author={Funahashi, Ken-ichi and Nakamura, Yuichi},
journal={Neural networks},
volume={6},
number={6},
pages={801--806},
year={1993},
publisher={Elsevier}
}
@inproceedings{mikolov2011extensions,
title={Extensions of recurrent neural network language model},
author={Mikolov, Tom{\'a}{\v{s}} and Kombrink, Stefan and Burget, Luk{\'a}{\v{s}} and {\v{C}}ernock{\`y}, Jan and Khudanpur, Sanjeev},
booktitle={Acoustics, Speech and Signal Processing (ICASSP), 2011 IEEE International Conference on},
pages={5528--5531},
year={2011},
organization={IEEE}
}
@inproceedings{mikolov2010recurrent,
title={Recurrent neural network based language model.},
author={Mikolov, Tomas and Karafi{\'a}t, Martin and Burget, Lukas and Cernock{\`y}, Jan and Khudanpur, Sanjeev},
booktitle={Interspeech},
volume={2},
pages={3},
year={2010}
}
@article{elman1990finding,
title={Finding structure in time},
author={Elman, Jeffrey L},
journal={Cognitive science},
volume={14},
number={2},
pages={179--211},
year={1990},
publisher={Wiley Online Library}
}
@article{graves2013generating,
title={Generating sequences with recurrent neural networks},
author={Graves, Alex},
journal={arXiv preprint arXiv:1308.0850},
year={2013}
}
@inproceedings{le2014distributed,
title={Distributed representations of sentences and documents},
author={Le, Quoc and Mikolov, Tomas},
booktitle={Proceedings of the 31st International Conference on Machine Learning (ICML-14)},
pages={1188--1196},
year={2014}
}
@article{bengio2003neural,
title={A neural probabilistic language model},
author={Bengio, Yoshua and Ducharme, R{\'e}jean and Vincent, Pascal and Jauvin, Christian},
journal={Journal of machine learning research},
volume={3},
number={Feb},
pages={1137--1155},
year={2003}
}
@inproceedings{mnih2009scalable,
title={A scalable hierarchical distributed language model},
author={Mnih, Andriy and Hinton, Geoffrey E},
booktitle={Advances in neural information processing systems},
pages={1081--1088},
year={2009}
}
@article{mnih2012fast,
title={A fast and simple algorithm for training neural probabilistic language models},
author={Mnih, Andriy and Teh, Yee Whye},
journal={ICML},
year={2012}
}
@inproceedings{morin2005hierarchical,
title={Hierarchical Probabilistic Neural Network Language Model.},
author={Morin, Frederic and Bengio, Yoshua},
booktitle={Aistats},
volume={5},
pages={246--252},
year={2005},
organization={Citeseer}
}
@inproceedings{kneser1995improved,
title={Improved backing-off for m-gram language modeling},
author={Kneser, Reinhard and Ney, Hermann},
booktitle={Acoustics, Speech, and Signal Processing, 1995. ICASSP-95., 1995 International Conference on},
volume={1},
pages={181--184},
year={1995},
organization={IEEE}
}
@inproceedings{church2007compressing,
title={Compressing Trigram Language Models With Golomb Coding.},
author={Church, Kenneth and Hart, Ted and Gao, Jianfeng},
booktitle={EMNLP-CoNLL},
pages={199--207},
year={2007}
}
@inproceedings{chen1996empirical,
title={An empirical study of smoothing techniques for language modeling},
author={Chen, Stanley F and Goodman, Joshua},
booktitle={Proceedings of the 34th annual meeting on Association for Computational Linguistics},
pages={310--318},
year={1996},
organization={Association for Computational Linguistics}
}
@inproceedings{brants2007large,
title={Large language models in machine translation},
author={Brants, Thorsten and Popat, Ashok C and Xu, Peng and Och, Franz J and Dean, Jeffrey},
booktitle={In Proceedings of the Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning},
year={2007},
organization={Citeseer}
}
@article{brown1992class,
title={Class-based n-gram models of natural language},
author={Brown, Peter F and Desouza, Peter V and Mercer, Robert L and Pietra, Vincent J Della and Lai, Jenifer C},
journal={Computational linguistics},
volume={18},
number={4},
pages={467--479},
year={1992},
publisher={MIT Press}
}
@inproceedings{bacchiani2004language,
title={Language model adaptation with MAP estimation and the perceptron algorithm},
author={Bacchiani, Michiel and Roark, Brian and Saraclar, Murat},
booktitle={Proceedings of HLT-NAACL 2004: Short Papers},
pages={21--24},
year={2004},
organization={Association for Computational Linguistics}
}
@inproceedings{federico1996bayesian,
title={Bayesian estimation methods for n-gram language model adaptation},
author={Federico, Marcello},
booktitle={Spoken Language, 1996. ICSLP 96. Proceedings., Fourth International Conference on},
volume={1},
pages={240--243},
year={1996},
organization={IEEE}
}
@inproceedings{teh2006hierarchical,
title={A hierarchical Bayesian language model based on Pitman-Yor processes},
author={Teh, Yee Whye},
booktitle={Proceedings of the 21st International Conference on Computational Linguistics and the 44th annual meeting of the Association for Computational Linguistics},
pages={985--992},
year={2006},
organization={Association for Computational Linguistics}
}
@inproceedings{stolcke2002srilm,
title={{SRILM}-an extensible language modeling toolkit.},
author={Stolcke, Andreas and others},
booktitle={Interspeech},
volume={2002},
pages={2002},
year={2002}
}
@inproceedings{federico2008irstlm,
title={{IRSTLM}: an open source toolkit for handling large scale language models.},
author={Federico, Marcello and Bertoldi, Nicola and Cettolo, Mauro},
booktitle={Interspeech},
pages={1618--1621},
year={2008}
}
@article{rosenfeld2000two,
title={Two decades of statistical language modeling: Where do we go from here?},
author={Rosenfeld, Ronald},
journal={Proceedings of the IEEE},
volume={88},
number={8},
pages={1270--1278},
year={2000},
publisher={IEEE}
}
@article{shannon1951prediction,
title={Prediction and entropy of printed {E}nglish},
author={Shannon, Claude E},
journal={Bell Labs Technical Journal},
volume={30},
number={1},
pages={50--64},
year={1951},
publisher={Wiley Online Library}
}
@inproceedings{goodfellow2014generative,
title={Generative adversarial nets},
author={Goodfellow, Ian and Pouget-Abadie, Jean and Mirza, Mehdi and Xu, Bing and Warde-Farley, David and Ozair, Sherjil and Courville, Aaron and Bengio, Yoshua},
booktitle={Advances in neural information processing systems},
pages={2672--2680},
year={2014}
}
@Article{All92,
author = "Jens Allwood and Joakim Nivre and Elisabeth
{Ahls\'{e}n}",
title = "On the Semantics and Pragmatics of Linguistic
Feedback",
journal = "Journal of Semantics",
volume = "9",
pages = "1--26",
year = "1992",
}
@article{williams1992simple,
title={Simple statistical gradient-following algorithms for connectionist reinforcement learning},
author={Williams, Ronald J},
journal={Machine learning},
volume={8},
number={3-4},
pages={229--256},
year={1992},
publisher={Springer}
}
@article{li2016dialogue,
title={Dialogue learning with human-in-the-loop},
author={Li, Jiwei and Miller, Alexander H and Chopra, Sumit and Ranzato, Marc'Aurelio and Weston, Jason},
journal={ICLR},
year={2017}
}
@article{li2017adversarial,
title={Adversarial learning for neural dialogue generation},
author={Li, Jiwei and Monroe, Will and Shi, Tianlin and Ritter, Alan and Jurafsky, Dan},
journal={EMNLP},
year={2017}
}
@article{li2016learning,
title={Learning Through Dialogue Interactions by Asking Questions},
author={Li, Jiwei and Miller, Alexander H and Chopra, Sumit and Ranzato, Marc'Aurelio and Weston, Jason},
journal={ICLR},
year={2017}
}
@article{li2016deep,
title={Deep reinforcement learning for dialogue generation},
author={Li, Jiwei and Monroe, Will and Ritter, Alan and Galley, Michel and Gao, Jianfeng and Jurafsky, Dan},
journal={EMNLP},
year={2016}
}
@article{bowman2015generating,
title={Generating sentences from a continuous space},
author={Bowman, Samuel R and Vilnis, Luke and Vinyals, Oriol and Dai, Andrew M and Jozefowicz, Rafal and Bengio, Samy},
journal={ICLR},
year={2016}
}
@inproceedings{denton2015deep,
title={Deep Generative Image Models using a Laplacian Pyramid of Adversarial Networks},
author={Denton, Emily L and Chintala, Soumith and Fergus, Rob and others},
booktitle={Advances in neural information processing systems},
pages={1486--1494},
year={2015}
}
@inproceedings{koehn2007moses,
title={Moses: Open source toolkit for statistical machine translation},
author={Koehn, Philipp and Hoang, Hieu and Birch, Alexandra and Callison-Burch, Chris and Federico, Marcello and Bertoldi, Nicola and Cowan, Brooke and Shen, Wade and Moran, Christine and Zens, Richard and others},
booktitle={Proceedings of the 45th annual meeting of the ACL on interactive poster and demonstration sessions},
pages={177--180},
year={2007},
organization={Association for Computational Linguistics}
}
@article{bottou-13,
author = {Bottou, Leon and Peters, Jonas and Quiñonero-Candela, Joaquin amd Charles, Denis X. and Chickering, D. Max and Portugaly, Elon and Ray, Dipankar and Simard, Patrice and Snelson, Ed},
title = {Counterfactual Reasoning and Learning Systems: The Example of Computational Advertising},
journal = {Journal of Machine Learning Research},
volume = {14},
pages = {3207–-3260},
year = {2013}
}
@inproceedings{kannan,
title={Adversarial Evaluation of Dialogue Models},
author={Kannan, Anjuli and Vinyals, Oriol},
booktitle = {NIPS 2016 Workshop on Adversarial Training},
year={2016}
}
@article{li2015hierarchical,
title={A hierarchical neural autoencoder for paragraphs and documents},
author={Li, Jiwei and Luong, Minh-Thang and Jurafsky, Dan},
journal={ACL},
year={2015}
}
@article{bobrow1977gus,
title={GUS, a frame-driven dialog system},
author={Bobrow, Daniel G and Kaplan, Ronald M and Kay, Martin and Norman, Donald A and Thompson, Henry and Winograd, Terry},
journal={Artificial intelligence},
volume={8},
number={2},
pages={155--173},
year={1977},
publisher={Elsevier}
}
@inproceedings{bengio2009curriculum,
title={Curriculum learning},
author={Bengio, Yoshua and Louradour, J{\'e}r{\^o}me and Collobert, Ronan and Weston, Jason},
booktitle={Proceedings of the 26th annual international conference on machine learning},
pages={41--48},
year={2009},
organization={ACM}
}
@book{sutton1999policy,
title={The policy process: an overview},
author={Sutton, Rebecca},
year={1999},
publisher={Overseas Development Institute London}
}
@article{silver2016mastering,
title={Mastering the game of {G}o with deep neural networks and tree search},
author={Silver, David and Huang, Aja and Maddison, Chris J and Guez, Arthur and Sifre, Laurent and Van Den Driessche, George and Schrittwieser, Julian and Antonoglou, Ioannis and Panneershelvam, Veda and Lanctot, Marc and others},
journal={Nature},
volume={529},
number={7587},
pages={484--489},
year={2016},
publisher={Nature Research}
}
@article{mnih2013playing,
title={Playing atari with deep reinforcement learning},
author={Mnih, Volodymyr and Kavukcuoglu, Koray and Silver, David and Graves, Alex and Antonoglou, Ioannis and Wierstra, Daan and Riedmiller, Martin},
journal={NIPS},
year={2013}
}
@article{galley2015deltableu,
title={delta{BLEU}: A discriminative metric for generation tasks with intrinsically diverse targets},
author={Galley, Michel and Brockett, Chris and Sordoni, Alessandro and Ji, Yangfeng and Auli, Michael and Quirk, Chris and Mitchell, Margaret and Gao, Jianfeng and Dolan, Bill},
journal={ACL},
year={2015}
}
@inproceedings{papineni2002bleu,
title={BLEU: a method for automatic evaluation of machine translation},
author={Papineni, Kishore and Roukos, Salim and Ward, Todd and Zhu, Wei-Jing},
booktitle={Proceedings of the 40th annual meeting on association for computational linguistics},
pages={311--318},
year={2002},
organization={Association for Computational Linguistics}
}
@article{li2017learning,
title={Learning to Decode for Future Success},
author={Li, Jiwei and Monroe, Will and Jurafsky, Dan},
journal={arXiv preprint arXiv:1701.06549},
year={2017}
}
@article{li2015diversity,
title={A diversity-promoting objective function for neural conversation models},
author={Li, Jiwei and Galley, Michel and Brockett, Chris and Gao, Jianfeng and Dolan, Bill},
journal={NAACL},
year={2016}
}
@book{schank2013scripts,
title={Scripts, plans, goals, and understanding: An inquiry into human knowledge structures},
author={Schank, Roger C and Abelson, Robert P},
year={2013},
publisher={Psychology Press}
}
@book{waibel1988prosody,
title={Prosody and speech recognition},
author={Waibel, Alex},
year={1988},
publisher={Morgan Kaufmann}
}
@inproceedings{san2001designing,
title={Designing confirmation mechanisms and error recover techniques in a railway information system for spanish},
author={San-Segundo, Ruben and Montero, Juan Manuel and Ferreiros, Javier and C{\'o}rdoba, Ricardo and Pardo, Jose M},
booktitle={Proceedings of the Second SIGdial Workshop on Discourse and Dialogue-Volume 16},
pages={1--4},
year={2001},
organization={Association for Computational Linguistics}
}
@inproceedings{chu1997tracking,
title={Tracking initiative in collaborative dialogue interactions},
author={Chu-Carroll, Jennifer and Brown, Michael K},
booktitle={Proceedings of the 35th Annual Meeting of the Association for Computational Linguistics and Eighth Conference of the European Chapter of the Association for Computational Linguistics},
pages={262--270},
year={1997},
organization={Association for Computational Linguistics}
}
@article{seneff2002response,
title={Response planning and generation in the MERCURY flight reservation system},
author={Seneff, Stephanie},
journal={Computer Speech \& Language},
volume={16},
number={3},
pages={283--312},
year={2002},
publisher={Elsevier}
}
@article{seneff1992tina,
title={TINA: A natural language system for spoken language applications},
author={Seneff, Stephanie},
journal={Computational linguistics},
volume={18},
number={1},
pages={61--86},
year={1992},
publisher={MIT Press}
}
@inproceedings{walker1990mixed,
title={Mixed initiative in dialogue: An investigation into discourse segmentation},
author={Walker, Marilyn and Whittaker, Steve},
booktitle={Proceedings of the 28th annual meeting on Association for Computational Linguistics},
pages={70--78},
year={1990},
organization={Association for Computational Linguistics}
}
@inproceedings{warnke1997integrated,
title={Integrated dialog act segmentation and classification using prosodic features and language models.},
author={Warnke, Volker and Kompe, Ralf and Niemann, Heinrich and N{\"o}th, Elmar},
booktitle={Eurospeech},
year={1997}
}
@inproceedings{hori2003deriving,
title={Deriving disambiguous queries in a spoken interactive ODQA system},
author={Hori, Chiori and Hori, Takaaki and Isozaki, Hideki and Maeda, Eisaku and Katagiri, Shigeru and Furui, Sadaoki},
booktitle={Acoustics, Speech, and Signal Processing, 2003. Proceedings.(ICASSP'03). 2003 IEEE International Conference on},
volume={1},
pages={I--I},
year={2003},
organization={IEEE}
}
@misc{jurafskyspeech,
title={Speech and Language Processing: An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition},
author={Jurafsky, Daniel and Martin, James H},
publisher={MIT Press}
}
@article{cohen1979elements,
title={Elements of a plan-based theory of speech acts},
author={Cohen, Philip R and Perrault, C Raymond},
journal={Cognitive science},
volume={3},
number={3},
pages={177--212},
year={1979},
publisher={Wiley Online Library}
}
@incollection{maybury2008new,
title={New directions in question answering},
author={Maybury, Mark},
booktitle={Advances in open domain question answering},
pages={533--558},
year={2008},
publisher={Springer}
}
@article{purver2006clarie,
title={CLARIE: Handling clarification requests in a dialogue system},
author={Purver, Matthew},
journal={Research on Language \& Computation},
volume={4},
number={2},
pages={259--288},
year={2006},
publisher={Springer}
}
@inproceedings{stoyanchev2013modelling,
title={Modelling Human Clarification Strategies.},
author={Stoyanchev, Svetlana and Liu, Alex and Hirschberg, Julia},
booktitle={SIGDIAL Conference},
pages={137--141},
year={2013}
}
@inproceedings{stoyanchev2014towards,
title={Towards natural clarification questions in dialogue systems},
author={Stoyanchev, Svetlana and Liu, Alex and Hirschberg, Julia},
booktitle={AISB symposium on questions, discourse and dialogue},
volume={20},
year={2014}
}
@article{rieser2009does,
title={Does this list contain what you were searching for? Learning adaptive dialogue strategies for interactive question answering},
author={Rieser, Verena and Lemon, Oliver},
journal={Natural Language Engineering},
volume={15},
number={1},
pages={55--72},
year={2009},
publisher={Cambridge University Press}
}
@article{hirschman2001natural,
title={Natural language question answering: the view from here},
author={Hirschman, Lynette and Gaizauskas, Robert},
journal={natural language engineering},
volume={7},
number={4},
pages={275--300},
year={2001},
publisher={Cambridge University Press}
}
@article{stolcke2000dialogue,
title={Dialogue act modeling for automatic tagging and recognition of conversational speech},
author={Stolcke, Andreas and Ries, Klaus and Coccaro, Noah and Shriberg, Elizabeth and Bates, Rebecca and Jurafsky, Daniel and Taylor, Paul and Martin, Rachel and Van Ess-Dykema, Carol and Meteer, Marie},
journal={Computational linguistics},
volume={26},
number={3},
pages={339--373},
year={2000},
publisher={MIT Press}
}
@inproceedings{clarke2003passage,
title={Passage retrieval vs. document retrieval for factoid question answering},
author={Clarke, Charles LA and Terra, Egidio L},
booktitle={Proceedings of the 26th annual international ACM SIGIR conference on Research and development in informaion retrieval},
pages={427--428},
year={2003},
organization={ACM}
}
@inproceedings{iyyer2014neural,
title={A Neural Network for Factoid Question Answering over Paragraphs.},
author={Iyyer, Mohit and Boyd-Graber, Jordan L and Claudino, Leonardo Max Batista and Socher, Richard and Daum{\'e} III, Hal},
booktitle={EMNLP},
pages={633--644},
year={2014}
}
@inproceedings{berant2013semantic,
title={Semantic Parsing on Freebase from Question-Answer Pairs.},
author={Berant, Jonathan and Chou, Andrew and Frostig, Roy and Liang, Percy},
booktitle={EMNLP},
volume={2},
number={5},
pages={6},
year={2013}
}
@article{rajpurkar2016squad,
title={Squad: 100,000+ questions for machine comprehension of text},
author={Rajpurkar, Pranav and Zhang, Jian and Lopyrev, Konstantin and Liang, Percy},
journal={EMNLP},
year={2016}
}
@article{swanson2008say,
title={Say anything: A massively collaborative open domain story writing companion},
author={Swanson, Reid and Gordon, Andrew},
journal={Interactive Storytelling},
pages={32--40},
year={2008},
publisher={Springer}
}
@inproceedings{yan2016docchat,
title={DocChat: An Information Retrieval Approach for Chatbot Engines Using Unstructured Documents.},
author={Yan, Zhao and Duan, Nan and Bao, Jun-Wei and Chen, Peng and Zhou, Ming and Li, Zhoujun and Zhou, Jianshe},
booktitle={ACL (1)},
year={2016}
}
@inproceedings{reithinger1996predicting,
title={Predicting dialogue acts for a speech-to-speech translation system},
author={Reithinger, Norbert and Engel, Ralf and Kipp, Michael and Klesen, Martin},
booktitle={Spoken Language, 1996. ICSLP 96. Proceedings., Fourth International Conference on},
volume={2},
pages={654--657},
year={1996},
organization={IEEE}
}
@inproceedings{allen2001architecture,
title={An architecture for more realistic conversational systems},
author={Allen, James and Ferguson, George and Stent, Amanda},
booktitle={Proceedings of the 6th international conference on Intelligent user interfaces},
pages={1--8},
year={2001},
organization={ACM}
}
@article{nagata1994first,
title={First steps towards statistical modeling of dialogue to predict the speech act type of the next utterance},
author={Nagata, Masaaki and Morimoto, Tsuyoshi},
journal={Speech communication},
volume={15},
number={3-4},
pages={193--203},
year={1994},
publisher={Elsevier}
}
@article{kompe1993prosody,
title={Prosody takes over: A prosodically guided dialog system},
author={Kompe, Ralf and Kie{\ss}ling, Andreas and Kuhn, Thomas and Mast, Marion and Niemann, Heinrich and N{\"o}th, Elmar and Ott, K and Batliner, Anton},
year={1993}
}
@inproceedings{daly1992statistical,
title={Statistical and linguistic analyses of F0 in read and spontaneous speech},
author={Daly, Nancy A and Zue, Victor},
booktitle={Second International Conference on Spoken Language Processing},
year={1992}
}
@inproceedings{hinkelman1989two,
title={Two constraints on speech act ambiguity},
author={Hinkelman, Elizabeth A and Allen, James F},
booktitle={Proceedings of the 27th annual meeting on Association for Computational Linguistics},
pages={212--219},
year={1989},
organization={Association for Computational Linguistics}
}
@article{grosz1977representation,
title={The representation and use of focus in dialogue understanding.},
author={Grosz, Barbara Jean},
year={1977},
publisher={University of California, Berkeley}
}
@book{ochs1996interaction,
title={Interaction and grammar},
author={Ochs, Elinor and Schegloff, Emanuel A and Thompson, Sandra A},
volume={13},
year={1996},
publisher={Cambridge University Press}
}
@book{carberry1990plan,
title={Plan recognition in natural language dialogue},
author={Carberry, Sandra},
year={1990},
publisher={MIT press}
}
@techreport{litman1985plan,
title={Plan Recognition and Discourse Analysis: An Integrated Approach for Understanding Dialogues.},
author={Litman, Diane J},
year={1985},
institution={ROCHESTER UNIV NY DEPT OF COMPUTER SCIENCE}
}
@article{grosz1986attention,
title={Attention, intentions, and the structure of discourse},
author={Grosz, Barbara J and Sidner, Candace L},
journal={Computational linguistics},
volume={12},
number={3},
pages={175--204},
year={1986},
publisher={MIT Press}
}
@techreport{grosz1988plans,
title={Plans for discourse},
author={Grosz, Barbara J and Sidner, Candace L},
year={1988},
institution={BBN LABS INC CAMBRIDGE MA}
}
@article{wilensky1983planning,
title={Planning and understanding: A computational approach to human reasoning},
author={Wilensky, Robert},
year={1983},
publisher={Addison-Wesley Pub. Co., Reading, MA}
}
@article{allen1980analyzing,
title={Analyzing intention in utterances},
author={Allen, James F and Perrault, C Raymond},
journal={Artificial intelligence},
volume={15},
number={3},
pages={143--178},
year={1980},
publisher={Elsevier}
}
@article{perrault1980plan,
title={A plan-based analysis of indirect speech acts},
author={Perrault, C Raymond and Allen, James F},
journal={Computational Linguistics},
volume={6},
number={3-4},
pages={167--182},
year={1980},
publisher={MIT Press}
}
@article{fikes1971strips,
title={STRIPS: A new approach to the application of theorem proving to problem solving},
author={Fikes, Richard E and Nilsson, Nils J},
journal={Artificial intelligence},
volume={2},
number={3-4},
pages={189--208},
year={1971},
publisher={Elsevier}
}
@book{cohen1994role,
title={The role of voice in human-machine communication},
author={Cohen, Philip R and Oviatt, Sharon L},
year={1994},
publisher={Artificial Intelligence Center, SRI International}
}
@article{li2016simple,
title={A Simple, Fast Diverse Decoding Algorithm for Neural Generation},
author={Li, Jiwei and Monroe, Will and Jurafsky, Dan},
journal={arXiv preprint arXiv:1611.08562},
year={2016}
}
@inproceedings{grosz1992some,
title={Some intonational characteristics of discourse structure},
author={Grosz, Barbara and Hirschberg, Julia},
booktitle={Second International Conference on Spoken Language Processing},
year={1992}
}
@article{grosz1996collaborative,
title={Collaborative plans for complex group action},
author={Grosz, Barbara J and Kraus, Sarit},
journal={Artificial Intelligence},
volume={86},
number={2},
pages={269--357},
year={1996},
publisher={Elsevier}
}
@article{li2016persona,
title={A persona-based neural conversation model},
author={Li, Jiwei and Galley, Michel and Brockett, Chris and Spithourakis, Georgios P and Gao, Jianfeng and Dolan, Bill},
journal={ACL},
year={2016}
}
@inproceedings{sidner1981recognizing,
title={Recognizing Intended Meaning and Speakers' Plans.},
author={Sidner, Candace L and Israel, David J},
booktitle={IJCAI},
pages={203--208},
year={1981}
}
@inproceedings{he2017generating,
title={Generating Natural Answers by Incorporating Copying and Retrieving Mechanisms in Sequence-to-Sequence Learning},
author={He, Shizhu and Liu, Cao and Liu, Kang and Zhao, Jun},
booktitle={Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)},
volume={1},
pages={199--208},
year={2017}
}
@article{grice1969utterer,
title={Utterer's meaning and intention},
author={Grice, H Paul},
journal={The philosophical review},
volume={78},
number={2},
pages={147--177},
year={1969},
publisher={JSTOR}
}
@article{lochbaum1998collaborative,
title={A collaborative planning model of intentional structure},
author={Lochbaum, Karen E},
journal={Computational Linguistics},
volume={24},
number={4},
pages={525--572},
year={1998},
publisher={MIT Press}
}
@article{grosz1986attention,
title={Attention, intentions, and the structure of discourse},
author={Grosz, Barbara J and Sidner, Candace L},
journal={Computational linguistics},
volume={12},
number={3},
pages={175--204},
year={1986},
publisher={MIT Press}
}
@book{schegloff1979identification,
title={Identification and recognition in telephone conversation openings},
author={Schegloff, Emanuel A},
year={1979}
}
@article{schegloff1968sequencing,
title={Sequencing in conversational openings},
author={Schegloff, Emanuel A},
journal={American anthropologist},
volume={70},
number={6},
pages={1075--1095},
year={1968},
publisher={Wiley Online Library}
}
@article{jefferson1984notes,
title={Notes on a systematic deployment of the acknowledgement tokens ?yeah?; and ?mm hm?},
author={Jefferson, Gail},
year={1984},
publisher={Taylor \& Francis}
}
@article{sacks1974simplest,
title={A simplest systematics for the organization of turn-taking for conversation},
author={Sacks, Harvey and Schegloff, Emanuel A and Jefferson, Gail},
journal={language},
pages={696--735},
year={1974},
publisher={JSTOR}
}
@article{al2016conversational,
title={Conversational Contextual Cues: The Case of Personalization and History for Response Ranking},
author={Al-Rfou, Rami and Pickett, Marc and Snaider, Javier and Sung, Yun-hsuan and Strope, Brian and Kurzweil, Ray},
journal={arXiv preprint arXiv:1606.00372},
year={2016}
}
@article{serban2015hierarchical,
title={Hierarchical neural network generative models for movie dialogues},
author={Serban, Iulian V and Sordoni, Alessandro and Bengio, Yoshua and Courville, Aaron C and Pineau, Joelle},
journal={CoRR, abs/1507.04808},
year={2015}
}
@article{vinyals2015neural,
title={A neural conversational model},
author={Vinyals, Oriol and Le, Quoc},
journal={ICML Deep Learning Workshop},
year={2015}
}
@incollection{modi2005cmradar,
title={Cmradar: A personal assistant agent for calendar management},
author={Modi, Pragnesh Jay and Veloso, Manuela and Smith, Stephen F and Oh, Jean},
booktitle={Agent-Oriented Information Systems II},
pages={169--181},
year={2005},
publisher={Springer}
}
@article{werts1995instructive,
title={Instructive feedback: Review of parameters and effects},
author={Werts, Margaret G and Wolery, Mark and Holcombe, Ariane and Gast, David L},
journal={Journal of Behavioral Education},
volume={5},
number={1},
pages={55--75},
year={1995},
publisher={Springer}
}
@article{bassiri2011interactional,
title={Interactional feedback and the impact of attitude and motivation on noticing l2 form},
author={Bassiri, Mohammad Amin},
journal={English Language and Literature Studies},
volume={1},
number={2},
pages={61},
year={2011},
publisher={Canadian Center of Science and Education}
}
@article{berry2011ptime,
title={PTIME: Personalized assistance for calendaring},
author={Berry, Pauline M and Gervasio, Melinda and Peintner, Bart and Yorke-Smith, Neil},
journal={ACM Transactions on Intelligent Systems and Technology (TIST)},
volume={2},
number={4},
pages={40},
year={2011},
publisher={ACM}
}
@misc{d1993personal,
title={Personal financial assistant computer method},
author={D'agostino, Richard J},
year={1993},
month=jul # "~27",
publisher={Google Patents},
note={US Patent 5,231,571}
}
@article{myers2007intelligent,
title={An intelligent personal assistant for task and time management},
author={Myers, Karen and Berry, Pauline and Blythe, Jim and Conley, Ken and Gervasio, Melinda and McGuinness, Deborah L and Morley, David and Pfeffer, Avi and Pollack, Martha and Tambe, Milind},
journal={AI Magazine},
volume={28},
number={2},
pages={47},
year={2007}
}
@article{kim2014convolutional,
title={Convolutional neural networks for sentence classification},
author={Kim, Yoon},
journal={EMNLP},
year={2014}
}
@inproceedings{yan2016learning,
title={Learning to respond with deep neural networks for retrieval-based human-computer conversation system},
author={Yan, Rui and Song, Yiping and Wu, Hua},
booktitle={Proceedings of the 39th International ACM SIGIR conference on Research and Development in Information Retrieval},
pages={55--64},
year={2016},
organization={ACM}
}
@inproceedings{krizhevsky2012imagenet,
title={Imagenet classification with deep convolutional neural networks},
author={Krizhevsky, Alex and Sutskever, Ilya and Hinton, Geoffrey E},
booktitle={Advances in neural information processing systems},
pages={1097--1105},
year={2012}
}
@article{peters2008reinforcement,
title={Reinforcement learning of motor skills with policy gradients},
author={Peters, Jan and Schaal, Stefan},
journal={Neural networks},