-
Notifications
You must be signed in to change notification settings - Fork 3
/
bibtex.bib
1683 lines (1488 loc) · 58.7 KB
/
bibtex.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
% jason tweet
@misc{Jason2023,
author = {Jason},
title = {{Tweet content}},
year = {2023},
note = {Twitter post. Retrieved from https://twitter.com/Jason/status/1736986300652433748},
url = {https://twitter.com/Jason/status/1736986300652433748}
}
% collins
@phdthesis{collins1999head,
author = {Michael Collins},
title = {Head-Driven Statistical Models for Natural Language Parsing},
school = {University of Pennsylvania},
year = {1999},
note = {PhD Dissertation}
}
@article{collins2003head,
author = {Michael Collins},
title = {Head-Driven Statistical Models for Natural Language Parsing},
journal = {Computational Linguistics},
volume = {29},
number = {4},
year = {2003},
pages = {589--637},
url = {https://aclanthology.org/J03-4003},
doi = {10.1162/089120103322753356}
}
@inproceedings{collins2005clause,
author = {Michael Collins and Philipp Koehn and Ivona Kucerova},
title = {Clause Restructuring for Statistical Machine Translation},
booktitle = {Proceedings of the 43rd Annual Meeting of the Association for Computational Linguistics (ACL 2005)},
year = {2005},
pages = {531--540},
url = {https://aclanthology.org/P05-1066}
}
@inproceedings{collins2005discriminative,
author = {Michael Collins and Terry Koo},
title = {Discriminative Reranking for Natural Language Parsing},
booktitle = {Computational Linguistics},
volume = {31},
number = {1},
year = {2005},
pages = {25--69},
url = {https://aclanthology.org/J05-1003}
}
@inproceedings{collins2004incremental,
author = {Michael Collins and Brian Roark},
title = {Incremental Parsing with the Perceptron Algorithm},
booktitle = {Proceedings of the 42nd Annual Meeting of the Association for Computational Linguistics (ACL 2004)},
year = {2004},
pages = {111--118},
url = {https://aclanthology.org/P04-1015}
}
@inproceedings{collins1997three,
title = {Three Generative, Lexicalised Models for Statistical Parsing},
author = {Collins, Michael},
booktitle = {35th Annual Meeting of the Association for Computational Linguistics and 8th Conference of the European Chapter of the Association for Computational Linguistics},
year = {1997},
address = {Madrid, Spain},
pages = {16--23},
url = {https://aclanthology.org/P97-1003},
doi = {10.3115/976909.979620}
}
% charniak
@inproceedings{charniak1997statistical,
title = {Statistical Parsing with a Context-Free Grammar and Word Statistics},
author = {Charniak, Eugene},
booktitle = {Proceedings of the Fourteenth National Conference on Artificial Intelligence (AAAI 1997)},
year = {1997},
address = {Providence, RI, USA},
publisher = {AAAI Press/MIT Press},
note = {Available online at: [URL of the paper if available online]}
}
% LLM papers
@article{bengio2003neural,
title = {A Neural Probabilistic Language Model},
author = {Bengio, Yoshua and Ducharme, Réjean and Vincent, Pascal and Jauvin, Christian},
journal = {Journal of Machine Learning Research},
year = {2003},
volume = {3},
pages = {1137--1155},
url = {http://www.jmlr.org/papers/volume3/bengio03a/bengio03a.pdf}
}
@article{sutskever2014sequence,
title = {Sequence to Sequence Learning with Neural Networks},
author = {Sutskever, Ilya and Vinyals, Oriol and Le, Quoc V.},
journal = {Advances in Neural Information Processing Systems},
year = {2014},
volume = {27},
url = {https://papers.nips.cc/paper/5346-sequence-to-sequence-learning-with-neural-networks.pdf}
}
@inproceedings{vaswani2017attention,
title = {Attention Is All You Need},
author = {Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and Uszkoreit, Jakob and Jones, Llion and Gomez, Aidan N. and Kaiser, Lukasz and Polosukhin, Illia},
booktitle = {Advances in Neural Information Processing Systems},
year = {2017},
volume = {30},
url = {https://arxiv.org/abs/1706.03762}
}
@inproceedings{devlin2018bert,
title = {BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding},
author = {Devlin, Jacob and Chang, Ming-Wei and Lee, Kenton and Toutanova, Kristina},
booktitle = {Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies},
year = {2018},
url = {https://aclanthology.org/N19-1423}
}
@article{radford2018improving,
title = {Improving Language Understanding by Generative Pre-Training},
author = {Radford, Alec and Narasimhan, Karthik and Salimans, Tim and Sutskever, Ilya},
year = {2018},
url = {https://s3-us-west-2.amazonaws.com/openai-assets/research-covers/language-unsupervised/language_understanding_paper.pdf}
}
@article{radford2019language,
title = {Language Models are Unsupervised Multitask Learners},
author = {Radford, Alec and Wu, Jeffrey and Child, Rewon and Luan, David and Amodei, Dario and Sutskever, Ilya},
year = {2019},
url = {https://cdn.openai.com/better-language-models/language_models_are_unsupervised_multitask_learners.pdf}
}
@article{brown2020language,
title = {Language Models are Few-Shot Learners},
author = {Brown, Tom B. and Mann, Benjamin and Ryder, Nick and Subbiah, Melanie and Kaplan, Jared and Dhariwal, Prafulla and Neelakantan, Arvind and Shyam, Pranav and Sastry, Girish and Askell, Amanda and others},
journal = {Advances in Neural Information Processing Systems},
year = {2020},
volume = {33},
pages = {1877--1901},
url = {https://arxiv.org/abs/2005.14165}
}
@article{kaplan2020scaling,
title = {Scaling Laws for Neural Language Models},
author = {Kaplan, Jared and McCandlish, Sam and Henighan, Tom and Brown, Tom B. and Chess, Benjamin and Child, Rewon and Gray, Scott and Radford, Alec and Wu, Jeffrey and Amodei, Dario},
journal = {arXiv preprint arXiv:2001.08361},
year = {2020},
url = {https://arxiv.org/abs/2001.08361}
}
% ccg
@book{steedman2000syntactic,
title={The Syntactic Process},
author={Steedman, Mark},
year={2000},
publisher={MIT Press},
address={Cambridge, MA}
}
% markov models
@article{rabiner1986maximum,
title={A maximum likelihood approach to continuous speech recognition},
author={Rabiner, Lawrence R and Wilpon, Jay G and Juang, Biing-Hwang},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
number={2},
pages={179--190},
year={1986},
publisher={IEEE}
}
@article{rabiner1989tutorial,
title={A tutorial on hidden Markov models and selected applications in speech recognition},
author={Rabiner, Lawrence R},
journal={Proceedings of the IEEE},
volume={77},
number={2},
pages={257--286},
year={1989},
publisher={IEEE}
}
@article{baum1966statistical,
title={Statistical inference for probabilistic functions of finite state Markov chains},
author={Baum, Leonard E and Petrie, Ted},
journal={The annals of mathematical statistics},
pages={1554--1563},
year={1966},
publisher={Institute of Mathematical Statistics}
}
@article{Jelinek1997,
title={Statistical methods for speech recognition},
author={Jelinek, Frederick},
journal={Language and Speech},
volume={40},
number={1},
pages={115--118},
year={1997},
publisher={SAGE Publications Sage UK: London, England}
}
% phrase structure parsing
@inproceedings{charniak-johnson-2005-coarse,
title = "Coarse-to-Fine n-Best Parsing and {M}ax{E}nt Discriminative Reranking",
author = "Charniak, Eugene and
Johnson, Mark",
editor = "Knight, Kevin and
Ng, Hwee Tou and
Oflazer, Kemal",
booktitle = "Proceedings of the 43rd Annual Meeting of the Association for Computational Linguistics ({ACL}{'}05)",
month = jun,
year = "2005",
address = "Ann Arbor, Michigan",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/P05-1022",
doi = "10.3115/1219840.1219862",
pages = "173--180",
}
@inproceedings{huang-chiang-2007-forest,
title = "Forest Rescoring: Faster Decoding with Integrated Language Models",
author = "Huang, Liang and
Chiang, David",
editor = "Zaenen, Annie and
van den Bosch, Antal",
booktitle = "Proceedings of the 45th Annual Meeting of the Association of Computational Linguistics",
month = jun,
year = "2007",
address = "Prague, Czech Republic",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/P07-1019",
pages = "144--151",
}
% dependency parsing
@article{chen2014fast,
title={A fast and accurate dependency parser using neural networks},
author={Chen, Danqi and Manning, Christopher},
journal={Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP)},
pages={740--750},
year={2014}
}
@inproceedings{mcdonald2005online,
title={Online learning of approximate dependency parsing algorithms},
author={McDonald, Ryan and Crammer, Koby and Pereira, Fernando},
booktitle={Proceedings of the 11th Conference of the European Chapter of the Association for Computational Linguistics},
year={2005}
}
@inproceedings{zhang2011transition,
title={Transition-based dependency parsing with rich non-local features},
author={Zhang, Yue and Nivre, Joakim},
booktitle={Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies},
pages={188--193},
year={2011}
}
@inproceedings{eisner1996bilexical,
title={Bilexical grammars and their cubic-time parsing algorithms},
author={Eisner, Jason},
booktitle={Advances in probabilistic and other parsing technologies},
pages={29--62},
year={2000},
organization={Springer}
}
@inproceedings{mcdonald2005non,
title={Non-projective dependency parsing using spanning tree algorithms},
author={McDonald, Ryan and Pereira, Fernando and Ribarov, Kiril and Haji{\v{c}}, Jan},
booktitle={Proceedings of the conference on Human Language Technology and Empirical Methods in Natural Language Processing},
pages={523--530},
year={2005}
}
@inproceedings{eisner1996three,
title={Three new probabilistic models for dependency parsing: An exploration},
author={Eisner, Jason},
booktitle={Proceedings of the 16th conference on Computational linguistics-Volume 1},
pages={340--345},
year={1996},
organization={Association for Computational Linguistics}
}
@inproceedings{kubler2006investigations,
title={Investigations on treebank transformation-based learning},
author={K{\"u}bler, Sandra and McDonald, Ryan and Nivre, Joakim},
booktitle={Proceedings of the Human Language Technology Conference of the NAACL, Main Conference},
pages={298--305},
year={2006},
organization={Association for Computational Linguistics}
}
@article{klein2004corpus,
title={Corpus-based induction of syntactic structure: Models of dependency and constituency},
author={Klein, Dan and Manning, Christopher D},
journal={Proceedings of the 42nd Annual Meeting on Association for Computational Linguistics},
pages={478},
year={2004},
organization={Association for Computational Linguistics}
}
@inproceedings{collins1999unsupervised,
title={Unsupervised models for named entity classification},
author={Collins, Michael and Singer, Yoram},
booktitle={Proceedings of the joint SIGDAT conference on Empirical methods in natural language processing and very large corpora},
pages={100--110},
year={1999},
organization={Association for Computational Linguistics}
}
@article{mcdonald2006online,
title={Online large-margin training of dependency parsers},
author={McDonald, Ryan and Pereira, Fernando and Ribarov, Kiril and Haji{\v{c}}, Jan},
journal={Proceedings of the 21st International Conference on Computational Linguistics and the 44th annual meeting of the Association for Computational Linguistics},
pages={91--98},
year={2006},
organization={Association for Computational Linguistics}
}
@inproceedings{eisner1996three,
title={Three new probabilistic models for dependency parsing: An exploration},
author={Eisner, Jason},
booktitle={Proceedings of the 16th conference on Computational linguistics-Volume 1},
pages={340--345},
year={1996},
organization={Association for Computational Linguistics}
}
@inproceedings{kubler2006investigations,
title={Investigations on treebank transformation-based learning},
author={K{\"u}bler, Sandra and McDonald, Ryan and Nivre, Joakim},
booktitle={Proceedings of the Human Language Technology Conference of the NAACL, Main Conference},
pages={298--305},
year={2006},
organization={Association for Computational Linguistics}
}
@article{klein2004corpus,
title={Corpus-based induction of syntactic structure: Models of dependency and constituency},
author={Klein, Dan and Manning, Christopher D},
journal={Proceedings of the 42nd Annual Meeting on Association for Computational Linguistics},
pages={478},
year={2004},
organization={Association for Computational Linguistics}
}
@inproceedings{collins1999unsupervised,
title={Unsupervised models for named entity classification},
author={Collins, Michael and Singer, Yoram},
booktitle={Proceedings of the joint SIGDAT conference on Empirical methods in natural language processing and very large corpora},
pages={100--110},
year={1999},
organization={Association for Computational Linguistics}
}
@inproceedings{klein2004fast,
title={Fast Exact Inference with a Factored Model for Natural Language Parsing},
author={Klein, Dan and Manning, Christopher D.},
booktitle={Advances in Neural Information Processing Systems},
pages={3--10},
year={2004}
}
@inproceedings{klein2002generative,
title={A Generative Constituent-Context Model for Improved Grammar Induction},
author={Klein, Dan and Manning, Christopher D.},
booktitle={Proceedings of the 40th Annual Meeting of the Association for Computational Linguistics},
pages={256--263},
year={2002},
organization={Association for Computational Linguistics}
}
% logic
@book{aristotle_organon,
title = {Organon},
author = {Aristotle},
year = {384-322 BC},
note = {Ancient texts, exact publication date unknown}
}
@book{frege_begriffsschrift,
title = {Begriffsschrift, a Formula Language, Modeled Upon That of Arithmetic, for Pure Thought},
author = {Gottlob Frege},
year = {1879},
publisher = {Friedrich Frommann Verlag (Günther Holzboog)}
}
@article{montague_proper_treatment,
title = {The Proper Treatment of Quantification in Ordinary English},
author = {Richard Montague},
journal = {Approaches to Natural Language},
pages = {221--242},
year = {1973},
publisher = {Reidel}
}
% bayes nets
@book{koller2009probabilistic,
title={Probabilistic Graphical Models: Principles and Techniques},
author={Koller, Daphne and Friedman, Nir},
year={2009},
publisher={MIT Press}
}
@book{jensen2007bayesian,
title={Bayesian Networks and Decision Graphs},
author={Jensen, Finn V. and Nielsen, Thomas D.},
year={2007},
publisher={Springer Science & Business Media}
}
@book{korb2010bayesian,
title={Bayesian Artificial Intelligence},
author={Korb, Kevin B. and Nicholson, Ann E.},
year={2010},
publisher={CRC Press}
}
@book{bishop2006pattern,
title={Pattern Recognition and Machine Learning},
author={Bishop, Christopher M.},
year={2006},
publisher={Springer}
}
@article{pearl1988probabilistic,
title={Probabilistic Reasoning in Intelligent Systems: Networks of Plausible Inference},
author={Pearl, Judea},
journal={Morgan Kaufmann},
year={1988}
}
@article{lauritzen1988local,
title={Local Computations with Probabilities on Graphical Structures and their Application to Expert Systems},
author={Lauritzen, Steffen L. and Spiegelhalter, David J.},
journal={Journal of the Royal Statistical Society. Series B (Methodological)},
pages={157--224},
year={1988},
publisher={JSTOR}
}
% latent variable
@inproceedings{petrov2008sparse,
title={Sparse Multi-Scale Grammars for Discriminative Latent Variable Parsing},
author={Petrov, Slav and Klein, Dan},
booktitle={Proceedings of the 2008 Conference on Empirical Methods in Natural Language Processing},
pages={867--876},
year={2008},
organization={Association for Computational Linguistics},
address={Honolulu, Hawaii}
}
@article{petrov2007improved,
title={Improved Inference for Unlexicalized Parsing},
author={Petrov, Slav and Klein, Dan},
journal={Proceedings of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies},
pages={404--411},
year={2007},
publisher={Association for Computational Linguistics}
}
% ccg references from "Inducing Probabilistic CCG Grammars from Logical Form with Higher-Order Unification"
@inproceedings{kwiatkowski2010,
title = "Inducing Probabilistic CCG Grammars from Logical Form with Higher-Order Unification",
abstract = "This paper addresses the problem of learning to map sentences to logical form, given training data consisting of natural language sentences paired with logical representations of their meaning. Previous approaches have been designed for particular natural languages or specific meaning representations; here we present a more general method. The approach induces a probabilistic CCG grammar that represents the meaning of individual words and defines how these meanings can be combined to analyze complete sentences. We use higher-order unification to define a hypothesis space containing all grammars consistent with the training data, and develop an online learning algorithm that efficiently searches this space while simultaneously estimating the parameters of a log-linear parsing model. Experiments demonstrate high accuracy on benchmark data sets in four languages with two different meaning representations.",
author = "Tom Kwiatkowski and Luke Zettlemoyer and Sharon Goldwater and Mark Steedman",
year = "2010",
language = "English",
isbn = "978-1-932432-86-2",
pages = "1223--1233",
booktitle = "Proceedings of the Conference on Empirical Methods in Natural Language Processing",
publisher = "ASSOC COMPUTATIONAL LINGUISTICS-ACL",
}
@inproceedings{Bos2004,
author = {Johan Bos and Stephen Clark and Mark Steedman and James R. Curran and Julia Hockenmaier},
title = {Wide-coverage semantic representations from a CCG parser},
booktitle = {Proceedings of the International Conference on Computational Linguistics},
year = {2004},
}
@article{Buszkowski1990,
author = {Wojciech Buszkowski and Gerald Penn},
title = {Categorial grammars determined from linguistic data by unification},
journal = {Studia Logica},
volume = {49},
pages = {431--454},
year = {1990},
}
@book{Carpenter1997,
author = {Bob Carpenter},
title = {Type-Logical Semantics},
publisher = {The MIT Press},
year = {1997},
}
@inproceedings{Clark2003,
author = {Stephen Clark and James R. Curran},
title = {Log-linear models for wide-coverage CCG parsing},
booktitle = {Proceedings of the Conference on Empirical Methods in Natural Language Processing},
year = {2003},
}
@article{Clark2007,
author = {Stephen Clark and James R. Curran},
title = {Wide-coverage efficient statistical parsing with CCG and log-linear models},
journal = {Computational Linguistics},
volume = {33},
number = {4},
pages = {493--552},
year = {2007},
}
@article{Dalrymple1991,
author = {Mary Dalrymple and Stuart Shieber and Fernando Pereira},
title = {Ellipsis and higher-order unification},
journal = {Linguistics and Philosophy},
volume = {14},
pages = {399--452},
year = {1991},
}
@inproceedings{Ge2006,
author = {Ruichang Ge and Raymond J. Mooney},
title = {Discriminative reranking for semantic parsing},
booktitle = {Proceedings of the COLING/ACL 2006 Main Conference Poster Sessions},
year = {2006},
}
@article{Huet1975,
author = {Gérard Huet},
title = {A unification algorithm for typed λ-calculus},
journal = {Theoretical Computer Science},
volume = {1},
pages = {27–57},
year = {1975},
}
@article{Huet1973,
author = {Gérard P. Huet},
title = {The undecidability of unification in third order logic},
journal = {Information and Control},
volume = {22},
number = {3},
pages = {257–267},
year = {1973},
}
@inproceedings{Kate2006,
author = {Rohit J. Kate and Raymond J. Mooney},
title = {Using string-kernels for learning semantic parsers},
booktitle = {Proceedings of the 44th Annual Meeting of the Association for Computational Linguistics},
year = {2006},
}
@inproceedings{Kate2005,
author = {Rohit J. Kate and Yuk Wah Wong and Raymond J. Mooney},
title = {Learning to transform natural to formal languages},
booktitle = {Proceedings of the National Conference on Artificial Intelligence},
year = {2005},
}
@article{LeCun1998,
author = {Yann LeCun and Léon Bottou and Yoshua Bengio and Patrick Haffner},
title = {Gradient-based learning applied to document recognition},
journal = {Proceedings of the IEEE},
volume = {86},
number = {11},
pages = {2278–2324},
year = {1998},
}
@inproceedings{Lu2008,
author = {Wei Lu and Hwee Tou Ng and Wee Sun Lee and Luke S. Zettlemoyer},
title = {A generative model for parsing natural language to meaning representations},
booktitle = {Proceedings of The Conference on Empirical Methods in Natural Language Processing},
year = {2008},
}
@inproceedings{Miller1996,
author = {Scott Miller and David Stallard and Robert J. Bobrow and Richard L. Schwartz},
title = {A fully statistical approach to natural language interfaces},
booktitle = {Proceedings of the Association for Computational Linguistics},
year = {1996},
}
@article{Och2003,
author = {Franz Josef Och and Hermann Ney},
title = {A systematic comparison of various statistical alignment models},
journal = {Computational Linguistics},
volume = {29},
number = {1},
pages = {19–51},
year = {2003},
}
@book{Steedman1996,
author = {Mark Steedman},
title = {Surface Structure and Interpretation},
publisher = {The MIT Press},
year = {1996},
}
@book{steedman2000,
author = {Mark Steedman},
title = {The Syntactic Process},
publisher = {The MIT Press},
year = {2000},
}
@article{Thompson2002,
author = {Cynthia A. Thompson and Raymond J. Mooney},
title = {Acquiring word-meaning mappings for natural language interfaces},
journal = {Journal of Artificial Intelligence Research},
volume = {18},
year = {2002},
}
@phdthesis{Villavicencio2002,
author = {Aline Villavicencio},
title = {The acquisition of a unification-based generalised categorial grammar},
school = {University of Cambridge},
year = {2002},
}
@inproceedings{Wong2007,
author = {Yuk Wah Wong and Raymond J. Mooney},
title = {Learning synchronous grammars for semantic parsing with lambda calculus},
booktitle = {Proceedings of the Association for Computational Linguistics},
year = {2007},
}
@inproceedings{Zelle1996,
author = {John M. Zelle and Raymond J. Mooney},
title = {Learning to parse database queries using inductive logic programming},
booktitle = {Proceedings of the National Conference on Artificial Intelligence},
year = {1996},
}
@inproceedings{Zettlemoyer2005,
author = {Luke S. Zettlemoyer and Michael Collins},
title = {Learning to map sentences to logical form: Structured classification with probabilistic categorial grammars},
booktitle = {Proceedings of the Conference on Uncertainty in Artificial Intelligence},
year = {2005},
}
@inproceedings{Zettlemoyer2007,
author = {Luke S. Zettlemoyer and Michael Collins},
title = {Online learning of relaxed CCG grammars for parsing to logical form},
booktitle = {Proceedings of the Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning},
year = {2007},
}
@inproceedings{Zettlemoyer2009,
author = {Luke S. Zettlemoyer and Michael Collins},
title = {Learning context-dependent mappings from sentences to logical form},
booktitle = {Proceedings of The Joint Conference of the Association for Computational Linguistics and International Joint Conference on Natural Language Processing},
year = {2009},
}
@article{Zettlemoyer2012,
author = {Luke S. Zettlemoyer and
Michael Collins},
title = {Learning to Map Sentences to Logical Form: Structured Classification
with Probabilistic Categorial Grammars},
journal = {CoRR},
volume = {abs/1207.1420},
year = {2012},
url = {http://arxiv.org/abs/1207.1420},
eprinttype = {arXiv},
eprint = {1207.1420},
timestamp = {Mon, 13 Aug 2018 16:46:14 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-1207-1420.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
% semantic role labeling
@article{Fillmore1968,
author = {Charles J. Fillmore},
title = {The Case for Case},
journal = {In Universals in Linguistic Theory},
year = {1968},
editor = {Emmon Bach and Robert T. Harms},
publisher = {Holt, Rinehart and Winston},
pages = {1--88}
}
@article{Ruppenhofer2006,
author = {Josef Ruppenhofer and Michael Ellsworth and Miriam R. L. Petruck and Christopher R. Johnson and Jan Scheffczyk},
title = {FrameNet II: Extended Theory and Practice},
year = {2006},
url = {https://framenet2.icsi.berkeley.edu/docs/r1.5/book.pdf}
}
@inproceedings{Gildea2002,
author = {Daniel Gildea and Daniel Jurafsky},
title = {Automatic Labeling of Semantic Roles},
booktitle = {Computational Linguistics},
year = {2002},
volume = {28},
number = {3},
pages = {245--288},
doi = {10.1162/089120102760275983}
}
@article{Palmer2005,
author = {Martha Palmer and Daniel Gildea and Paul Kingsbury},
title = {The Proposition Bank: An Annotated Corpus of Semantic Roles},
journal = {Computational Linguistics},
year = {2005},
volume = {31},
number = {1},
pages = {71--106},
doi = {10.1162/0891201053630264}
}
@inproceedings{Hovy2006,
author = {Eduard Hovy and Mitchell Marcus and Martha Palmer and Lance Ramshaw and Ralph Weischedel},
title = {OntoNotes: The 90\% Solution},
booktitle = {Proceedings of the Human Language Technology Conference of the North American Chapter of the Association for Computational Linguistics},
year = {2006},
url = {https://aclanthology.org/N06-2015}
}
% smith and eisner
@inproceedings{SmithEisner2005,
author = {Noah A. Smith and Jason Eisner},
title = {Guiding Unsupervised Grammar Induction Using Contrastive Estimation},
booktitle = {Proceedings of the IJCAI Workshop on Grammatical Inference Applications},
pages = {73--82},
year = {2005},
address = {Edinburgh, UK},
month = {July}
}
@article{SmithJohnson2007,
author = {Noah A. Smith and Mark Johnson},
title = {Weighted and Probabilistic Context-Free Grammars Are Equally Expressive},
journal = {Computational Linguistics},
volume = {33},
number = {4},
pages = {477--491},
year = {2007},
month = {Dec}
}
@inproceedings{smith2008dependency,
title={Dependency parsing by belief propagation},
author={Smith, David A and Eisner, Jason},
booktitle={Proceedings of the 2008 Conference on Empirical Methods in Natural Language Processing},
pages={145--156},
year={2008}
}
@inproceedings{CohenSimmonsSmith2008,
author = {Shay B. Cohen and Robert J. Simmons and Noah A. Smith},
title = {Dynamic Programming Algorithms as Products of Weighted Logic Programs},
booktitle = {Proceedings of the International Conference on Logic Programming (ICLP 2008)},
year = {2008},
address = {Udine, Italy},
month = {Dec},
note = {Also available: extended technical report}
}
@inproceedings{CohenGimpelSmith2008,
author = {Shay B. Cohen and Kevin Gimpel and Noah A. Smith},
title = {Logistic Normal Priors for Unsupervised Probabilistic Grammar Induction},
booktitle = {Advances in Neural Information Processing Systems 21 (NIPS 2008)},
pages = {321--328},
year = {2008},
address = {Vancouver, BC},
month = {Dec}
}
@inproceedings{GimpelSmith2009,
author = {Kevin Gimpel and Noah A. Smith},
title = {Cube Summing, Approximate Inference with Non-Local Features, and Dynamic Programming without Semirings},
booktitle = {Proceedings of the Conference of the European Chapter of the Association for Computational Linguistics (EACL 2009)},
pages = {157--166},
year = {2009},
address = {Athens, Greece},
month = {Mar/Apr}
}
%categorial grammar
@article{Ajdukiewicz1935,
author = {Kazimierz Ajdukiewicz},
title = {Die syntaktische Konnexit{\"a}t},
journal = {Studia Philosophica},
year = {1935},
volume = {1},
pages = {1--27}
}
@article{BarHillel1953,
author = {Yehoshua Bar-Hillel},
title = {A Quasi-Arithmetical Notation for Syntactic Description},
journal = {Language},
year = {1953},
volume = {29},
number = {1},
pages = {47--58}
}
@article{Lambek1958,
author = {Joachim Lambek},
title = {The Mathematics of Sentence Structure},
journal = {American Mathematical Monthly},
year = {1958},
volume = {65},
number = {3},
pages = {154--170}
}
@book{Montague1970,
author = {Richard Montague},
title = {Universal Grammar},
year = {1970},
publisher = {University of California Press}
}
@book{Moortgat1988,
author = {Michael Moortgat},
title = {Categorial Investigations: Logical and Linguistic Aspects of the Lambek Calculus},
year = {1988},
publisher = {Foris Publications}
}
@book{Oehrle1988,
editor = {Richard T. Oehrle and Emmon Bach and Deirdre Wheeler},
title = {Categorial Grammars and Natural Language Structures},
year = {1988},
publisher = {D. Reidel Publishing Company}
}
% perceptron
@article{Rosenblatt1958,
author = {Frank Rosenblatt},
title = {The Perceptron: A Probabilistic Model for Information Storage and Organization in the Brain},
journal = {Psychological Review},
year = {1958},
volume = {65},
number = {6},
pages = {386--408},
publisher = {American Psychological Association}
}
@article{Rumelhart1986,
author = {David E. Rumelhart and Geoffrey E. Hinton and Ronald J. Williams},
title = {Learning representations by back-propagating errors},
journal = {Nature},
year = {1986},
volume = {323},
pages = {533--536}
}
% tree banks
@article{Marcus1993,
author = {Mitchell P. Marcus and Mary Ann Marcinkiewicz and Beatrice Santorini},
title = {Building a Large Annotated Corpus of English: The Penn Treebank},
journal = {Computational Linguistics},
year = {1993},
volume = {19},
number = {2},
pages = {313--330}
}
@inproceedings{Hajic1998,
author = {Jan Hajič},
title = {Building a Syntactically Annotated Corpus: The Prague Dependency Treebank},
booktitle = {Issues of Valency and Meaning},
year = {1998},
editor = {Eva Hajičová and Petr Sgall},
pages = {106--132},
publisher = {Karolinum Press}
}
@inproceedings{Nivre2007,
author = {Joakim Nivre and Johan Hall and Sandra Kübler and Ryan McDonald and Jens Nilsson and Sebastian Riedel and Deniz Yuret},
title = {The CoNLL 2007 Shared Task on Dependency Parsing},
booktitle = {Proceedings of the CoNLL Shared Task Session of EMNLP-CoNLL},
year = {2007},
pages = {915--932}
}
@inproceedings{Brants2004,
author = {Thorsten Brants and Sabine Dipper and Peter Eisenberg and Silvia Hansen-Schirra and Esther König and Wolfgang Lezius and Christian Rohrer and George Smith and Hans Uszkoreit},
title = {TIGER: Linguistic Interpretation of a German Corpus},
booktitle = {Research on Language and Computation},
year = {2004},
volume = {2},
number = {4},
pages = {597--620}
}
@misc{BNC1995,
author = {{British National Corpus Consortium}},
title = {The British National Corpus, version 3 (BNC XML Edition)},
year = {2007},
url = {http://www.natcorp.ox.ac.uk/}
}
@inproceedings{Marcus1993WSJ,
author = {Mitchell P. Marcus and Beatrice Santorini and Mary Ann Marcinkiewicz},
title = {Building a Large Annotated Corpus of English: The Penn Treebank},
booktitle = {Computational Linguistics},
year = {1993},
volume = {19},
number = {2},
pages = {313--330},
note = {Includes the Wall Street Journal Corpus}
}
@inproceedings{Bouma2002,
author = {Gosse Bouma and Gertjan van Noord and Robert Malouf},
title = {Alpino: Wide-Coverage Computational Analysis of Dutch},
booktitle = {Language and Computers},
year = {2002},
volume = {45},
pages = {45--59}
}
% classical computing papers
@article{Turing1937,
author = {Alan Turing},
title = {On Computable Numbers, with an Application to the Entscheidungsproblem},
journal = {Proceedings of the London Mathematical Society},
year = {1937},
volume = {s2-42},
number = {1},
pages = {230--265},
doi = {10.1112/plms/s2-42.1.230}
}
@article{vonNeumann1945,
author = {John von Neumann},
title = {First Draft of a Report on the EDVAC},
year = {1945},
publisher = {University of Pennsylvania},
url = {https://web.archive.org/web/20130314123032/http://qss.stanford.edu/~godfrey/vonNeumann/vnedvac.pdf}
}
@article{Shannon1948,
author = {Claude E. Shannon},
title = {A Mathematical Theory of Communication},
journal = {Bell System Technical Journal},
year = {1948},
volume = {27},
pages = {379--423, 623--656},
url = {https://ieeexplore.ieee.org/document/6773024}
}
@article{Church1936,
author = {Alonzo Church},
title = {An Unsolvable Problem of Elementary Number Theory},
journal = {American Journal of Mathematics},
year = {1936},
volume = {58},
number = {2},
pages = {345--363},
jstor = {2371045}
}
@article{Godel1931,
author = {Kurt Gödel},
title = {Über formal unentscheidbare Sätze der Principia Mathematica und verwandter Systeme I},
journal = {Monatshefte für Mathematik},
year = {1931},
volume = {38},
number = {1},
pages = {173--198},
doi = {10.1007/BF01700692},
note = {English title: On Formally Undecidable Propositions of Principia Mathematica and Related Systems I}
}
% thinking fast and slow
@book{Kahneman2011ThinkingFast,
title={Thinking, Fast and Slow},
author={Kahneman, Daniel},
year={2011},
publisher={Farrar, Straus and Giroux},
address={New York}
}
% videos of deep learning people talking about ChatGPT
@misc{hinton:cbs:2023,