-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathlang.bib
1460 lines (1297 loc) · 46.7 KB
/
lang.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
#Created by Kbib version 0.6.5
#Last modified: Fri May 21 15:08:57 2010
@book{A,
title = {Handbook of Mathematical Functions},
publisher = {Dover Publications},
year = {1972},
editor = {Milton Abramowitz and Irene A. Stegun},
edition = {10th printing},
lockkey = {Y}
}
@article{Aitchison2016,
author = {Laurence Aitchison and Nicola Corradi and Peter E. Latham},
title = {Zipf's Law Arises Naturally When There Are Underlying, Unobserved Variables},
journal = {PLoS Computational Biology},
year = 2016,
volume = 12,
issue = 12,
pages = {e1005110},
doi = {doi:10.1371/journal.pcbi.1005110},
url = {http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1005110},
lockkey = {Y}
}
@book{AmHeritage2000,
author = {American Heritage Staff},
title = {The American Heritage® Dictionary of the English Language},
publisher = {Houghton Mifflin Company},
year = 2000,
edition = {Fourth Edition},
}
@inproceedings{Anderson2012,
author = {Steven R. Anderson},
title = {Dimensions of Morphological Complexity},
booktitle = {Understanding and measuring morphological complexity},
year = 2012,
pages = {},
editor = {Matthew Baerman, Dunstan Brown, Greville G. Corbett },
url = {http:// xxx yale.edu/dimensions_revised.pdf}
}
@book{Ash1965,
author = {Robert B. Ash},
title = {Information Theory},
publisher = {Dover Publications},
year = 1965,
isbn = {0-486-66521-6},
lockkey = {Y}
}
@book{Baader1998,
author = {Franz Baader and Tobias Nipkow},
title = {Term Rewriting and All That},
publisher = {Cambridge University Press},
year = 1998,
isbn = {0-521-45520-0},
doi = {10.1145/356458.1008651},
lockkey = {Y}
}
@article{Baez2009,
title = {Physics, Topology, Logic and Computation: A Rosetta Stone},
author = {John C. Baez and Mike Stay},
journal = {Arxiv/abs/0903.0340},
year = 2009,
url = {http://math.ucr.edu/home/baez/rosetta.pdf},
doi = {10.1007/978-3-642-12821-9_2},
lockkey = {Y}
}
@book{Barendregt1981,
author = {H. P. Barendregt},
title = {The Lambda Calculus, Its Syntax and Semantics},
publisher = {North-Holland},
year = 1981,
doi = {10.2307/2274112},
isbn = {0-444-87508-5}
}
@article{Bartunov2015,
author = {Bartunov, Sergei and Kondrashkin, Dmitry and Osokin, Anton and Vetrov, Dmitry},
title = {Breaking Sticks and Ambiguities with Adaptive Skip-gram},
year = 2015,
journal = {arXiv/arXiv:1502.07257v2}
}
@article{Bell1998,
author = {Anthony J. Bell},
title = {The Co-Information Lattice},
journal = {Somewhere or other},
year = {1998},
url = {http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.457.2244&rep=rep1&type=pdf},
doi = {10.1.1.457.2244}
}
@article{Bengio2003,
author = {Bengio, Y. and Ducharme, R. and Vincent. P.},
title = {A neural probabilistic language model.},
year = 2003,
journal = {Journal of Machine Learning Research},
volume = 3,
pages = {1137-1155}
}
@article{Braunstein2002,
author = {Braunstein, A. and M\'ezard, M. and Weigt, M. and Zecchina, R.},
title = {Constraint Satsifaction by Survey Propagation},
year = 2002,
journal = {Advances in Neural Information Processing Systems},
volume = {9},
url = {https://arxiv.org/pdf/cond-mat/0212451.pdf},
}
@article{Charniak2000,
author = {Eugene Charniak},
title = {A Maximum-Entropy-Inspired Parser},
year = 2000,
journal = {Proceedings of NAACL-2000},
url = {https://cs.brown.edu/people/echarnia/papers/shortMeP.ps.gz}
}
@article{Chavas2005,
author = {Chavas, Jo\"el and Furtlehner, Cyril and M\'ezard, Marc and Zecchina, Riccardo},
title = {Survey-propagation decimation through distributed local computations},
year = 2005,
journal = {Journal of Statistical Mechanics: Theory and Experiment},
volume = {P11016},
url = {https://www.marcmezard.fr/wp-content/uploads/2019/01/05\_CFMZ\_JSM.pdf},
doi = {doi:10.1088/1742-5468/2005/11/P11016}
}
@article{Coecke2010,
title = {Quantum Links Let Computers Read},
author = {Bob Coecke},
journal = {New Scientist},
year = 2010,
month = {December},
url = {http://www.cs.ox.ac.uk/people/bob.coecke/NewScientist.pdf},
lockkey = {Y}
}
@article{Coecke2016,
title = {Quantum Algorithms for Compositional Natural Language Processing},
author = {William Zeng and Bob Coecke},
journal = {Electronic Proceedings in Theoretical Computer Science (EPTCS)},
volume = {221},
year = 2016,
url = {https://arxiv.org/abs/1608.01406},
doi = {10.4204/EPTCS.221.8},
lockkey = {Y}
}
@article{Cohen2010,
author = {Shay B. Cohen and Noah A. Smith},
title = {Covariance in Unsupervised Learning of Probabilistic Grammars},
journal = {Journal of Machine Learning Research },
year = 2010,
volume = {11},
pages = {3117-3151},
lockkey = {Y}
}
@book{Dalen1980,
author = {Dirk van Dalen},
title = {Logic and Structure},
publisher = {Springer-Verlag},
year = 2004,
edition = {Fourth Edition},
isbn = {3-540-20879-8},
lockkey = {Y}
}
# DOI is of the proceedings, not the article!?
@article{Dhillon2003,
author = {Inderjit S. Dhillon and Subramanyam Mallela and Dharmendra S. Modha},
title = {Information-Theoretic Co-clustering },
journal = {Proceedings of the ninth ACM SIGKDD international conference on Knowledge discovery and data mining},
year = 2003,
volume = {2003},
pages = {89-98},
url = {http://www.cs.utexas.edu/users/inderjit/public_papers/kdd_cocluster.pdf},
doi = {10.1145/956750.956764}
}
@article{Ding2005,
author = {Chris Ding and Xiaofeng He and Horst D. Simon},
title = {On the equivalence of nonnegative matrix factorization and spectral clustering},
journal = {Proc. SIAM Data Mining Conf},
url = {http://franger.uta.edu/~chqding/papers/NMF-SDM2005.pdf},
year = {2005}
}
@article{Ding2008,
author = {Chris Ding and Tao Li and Wei Peng},
title = {On the equivalence between Non-negative Matrix Factorization
and Probabilistic Latent Semantic Indexing},
journal = {Computational Statistics \& Data Analysis},
volume = {52},
number = {8},
pages = {3913-3927},
url={http://users.cis.fiu.edu/~taoli/pub/NMFpLSIequiv.pdf},
year={2008},
}
@inproceedings{Domingos2006,
author = {Domingos, Pedro and Kok, Stanley and Poon, Hoifung and Richardson, Matthew and Singla, Parag},
title = {Unifying logical and statistical AI},
booktitle = {AAAI'06: Proceedings of the 21st national conference on Artificial intelligence},
pages = {2--7},
year = 2006,
publisher = {AAAI Press},
abstract = {Intelligent agents must be able to handle the complexity and uncertainty of the real world. Logical AI has focused mainly on the former, and statistical AI on the latter. Markov logic combines the two by attaching weights to first-order formulas and viewing them as templates for features of Markov networks. Inference algorithms for Markov logic draw on ideas from satisfiability, Markov chain Monte Carlo and knowledge-based model construction. Learning algorithms are based on the voted perceptron, pseudo-likelihood and inductive logic programming. Markov logic has been successfully applied to problems in entity resolution, link prediction, information extraction and others, and is the basis of the open-source Alchemy system.},
isbn = {978-1-57735-281-5},
location = {Boston, Massachusetts},
lockkey = {Y}
}
@unpublished{Dzuigaite2015,
author = {Gintare Karolina Dziugaite and Daniel M. Roy},
title = {Neural Network Matrix Factorization},
note = {ArXiv abs/1511.06443},
year = 2015,
url = {https://arxiv.org/abs/1511.06443},
}
@book{Eisenbud2000,
title = {The Geometry of Schemes},
author = {David Eisenbud and Joe Harris},
publisher = {Springer},
year = 2000,
isbn = {0-387-98637-5},
lockkey = {Y}
}
@article{Eggert2004,
author = {Julian Eggert and Edgar K{\o}rner},
title = {Sparse coding and NMF},
journal = {Proc. of the IEEE International Joint Conference on Neural Networks IJCNN 2004},
pages={2529-2533},
url={https://www.researchgate.net/publication/4117104_Sparse_coding_and_NMF},
year={2004},
}
@article{Ferrer2006,
author = {Ramon Ferrer-i-Cancho},
title = {Why do syntactic links not cross?},
journal = {EPL (Europhysics Letters) },
volume = {76},
number={6},
pages={1228-1234},
url={http://stacks.iop.org/0295-5075/76/i=6/a=1228},
year={2006},
abstract={Here we study the arrangement of vertices of trees in a
1-dimensional Euclidean space when the Euclidean distance between linked
vertices is minimized. We conclude that links are unlikely to cross when
drawn over the vertex sequence. This finding suggests that the
uncommonness of crossings in the trees specifying the syntactic
structure of sentences could be a side-effect of minimizing the
Euclidean distance between syntactically related words. As far as we
know, nobody has provided a successful explanation of such a
surprisingly universal feature of languages that was discovered in the
60s of the past century by Hays and Lecerf. On the one hand, support for
the role of distance minimization in avoiding edge crossings comes from
statistical studies showing that the Euclidean distance between
syntactically linked words of real sentences is minimized or constrained
to a small value. On the other hand, that distance is considered a
measure of the cost of syntactic relationships in various frameworks. By
cost, we mean the amount of computational resources needed by the brain.
The absence of crossings in syntactic trees may be universal just
because all human brains have limited resources.}
}
@unpublished{Ferrer2013,
author = {Ramon Ferrer-i-Cancho},
title = {Hubiness, length, crossings and their relationships in dependency trees},
note = {ArXiv abs/ArXiv 1304.4086},
url = {https://arxiv.org/abs/1304.4086},
year = {2013},
}
@unpublished{Ferrer2017,
author = {R. Ferrer-i-Cancho and C. Gómez-Rodrı́guez and J. L. Esteban},
title = {Are crossing dependencies really scarce?},
note = {ArXiv abs/ArXiv 1703.08324},
url = {https://arxiv.org/abs/1703.08324},
year = {2017},
}
@article{Gibson1998,
author = {Edward Gibson},
title = {Linguistic complexity: locality of syntactic dependencies},
journal = {Cognition},
volume = {68},
pages={1-76},
url={http://www.linguistics.pomona.edu/lgcs121spring2005/reading/gibson98.pdf},
year={1998},
}
@article{Gokcay2002,
author = {Erhan Gokcay and Jose C. Principe},
title = {Information Theoretic Clustering},
journal = {IEEE Transactions on Pattern Analysis and Machine Intelligence},
volume = {24},
number = {2},
pages={158-172},
url={https://pdfs.semanticscholar.org/f706/5b6edb59fb19d987c5d791e73514528ce0ca.pdf},
year={2002},
}
@BOOK{Goertzel1994,
title = {Chaotic Logic},
publisher = {Plenum},
year = {1994},
author = {Goertzel, Ben},
}
@InProceedings{Goertzel2006,
author = {Goertzel, Ben and Pinto, Hugo and Pennachin, Cassio and Goertzel, Izabela Freire},
title = {Using Dependency Parsing and Probabilistic Inference to Extract Relationships
between Genes, Proteins and Malignancies Implicit Among Multiple
Biomedical Research Abstracts},
booktitle={Proc. of Bio-NLP 2006},
year = {2006},
}
@inproceedings{Goertzel2009,
author = {Ben Goertzel},
title = {OpenCogPrime: A Cognitive Synergy Based Architecture for Embodied Artificial General Intelligence},
booktitle = {Proceedings of ICCI},
year = 2009,
address = {Hong Kong},
}
@inproceedings{Goertzel2008,
author = {David Hart and Ben Goertzel},
title = {OpenCog: A Software Framework for Integrative Artificial General Intelligence.},
booktitle = {Proceedings of the First Conference on Artificial General Intelligence},
year = 2008,
publisher = {IOS Press},
}
@InProceedings {Goertzel2008a,
title = {A Pragmatic Path Toward Endowing Virtually-Embodied AIs with Human-Level Linguistic Capability},
author = {Ben Goertzel},
series = {IEEE World Congress on Computational Intelligence (WCCI) },
year = 2008
}
@INPROCEEDINGS{Goertzel2010,
title = { A General Intelligence Oriented Architecture for Embodied Natural Language Processing},
booktitle = { Proceedings of the Third Conference on Artificial General Intelligence},
publisher = {Springer},
year = {2010},
author = { Goertzel, Ben and Cassio Pennachin and Samir Araujo and Ruiting Lian and Fabricio Silva and Murilo Queiroz and Welter Silva and Mike Ross and Linas Vepstas and Andre Senna},
}
@unpublished{Goertzel2014,
author = {Ben Goertzel and Linas Vepstas},
title = {Langauge Learning},
note = {ArXiv abs/1401.3372},
year = 2014,
url = {https://arxiv.org/abs/1401.3372},
}
@unpublished{RelEx,
author = {Mike Ross and Linas Vepstas and Ben Goertzel},
title = {RelEx Semantic Relationship Extractor},
note = {http://opencog.org/wiki/RelEx},
year = 2005,
url = {http://opencog.org/wiki/RelEx},
}
@article{Grygorash2006,
author = {Oleksandr Grygorash and Yan Zhou and Zach Jorgensen},
title = {Minimum spanning tree based clustering algorithms},
journal = {International Conference on Tools with Artificial Intelligence (2006)},
year = {2006},
url = {https://static.aminer.org/pdf/PDF/000/219/731/computing_hierarchies_of_clusters_from_the_euclidean_minimum_spanning_tree.pdf}
}
@article{Guthrie2006,
title = {A Closer Look at Skip-gram Modelling},
author = {David Guthrie and Ben Allison and Wei Liu and Louise Guthrie and Yorick Wilks},
year = 2006,
journal = {Proceedings of the Fifth international Conference on Language Resources and Evaluation},
url = {https://homepages.inf.ed.ac.uk/ballison/pdf/lrec_skipgrams.pdf},
abstract = {Data sparsity is a large problem in natural language processing that refers to the fact that language is a system of rare events, so varied and complex, that even using an extremely large corpus, we can never accurately model all possible strings of words. This paper examines the use of skip-grams (a technique where by n-grams are still stored to model language, but they allow for tokens to be skipped) to overcome the data sparsity problem. We analyze this by computing all possible skip-grams in a training corpus and measure how many adjacent (standard) n-grams these cover in test documents. We examine skip-gram modelling using one to four skips with various amount of training data and test against similar documents as well as documents generated from a machine translation system. In this paper we also determine the amount of extra training data required to achieve skip-gram coverage using standard adjacent tri-grams.},
lockkey = {Y}
}
@inproceedings{Havelka2007,
title={Beyond Projectivity: Multilingual Evaluation of Constraints and Measures on Non-Projective Structures},
author={Jiří Havelka},
pages={608-615},
booktitle = {ACL 2007, Proceedings of the 45th Annual Meeting of the
Association for Computational Linguistics},
year={2007},
url = {https://www.researchgate.net/publication/220873382_Beyond_Projectivity_Multilingual_Evaluation_of_Constraints_and_Measures_on_Non-Projective_Structures}
}
@book{Hodges1997,
author = {Wilfrid Hodges},
title = {A Shorter Model Theory},
publisher = {Cambridge University Press},
year = 1997,
isbn = {0-521-58713-1},
doi = {10.5555/262326},
lockkey = {Y}
}
@book{HoTT2013,
author = {The Univalent Foundations Program},
publisher = {Institute for Advanced Study},
title = {Homotopy Type Theory: Univalent Foundations of Mathematics},
year = 2013,
url = {https://homotopytypetheory.org/book/},
keywords = {type theory},
lockkey = {Y}
}
@book{Hud84,
title = {Word Grammar},
publisher = {Oxford: Blackwell},
year = {1984},
author = {Richard Hudson},
lockkey = {Y}
}
@book{Hud07,
title = {Language Networks: The New Word Grammar},
publisher = {Oxford Linguistics},
year = {2007},
author = {Richard Hudson},
lockkey = {Y}
}
@article{Kahane2003,
title={The Meaning-Text Theory},
author={Kahane, Sylvain},
journal={Dependency and Valency. An International Handbook of Contemporary Research},
volume={1},
pages={546--570},
year={2003},
url = {http://www.coli.uni-saarland.de/courses/syntactic-theory-09/literature/MTT-Handbook2003.pdf},
lockkey = {Y}
}
@inproceedings{Kart2012,
author = {Dimitri Kartsaklis and Mehrnoosh Sadrzadeh and Stephen Pulman},
title = {A Unified Sentence Space for Categorical Distributional-Compositional Semantics: Theory and Experiments},
booktitle = {Proceedings of COLING 2012: Posters},
year = {2012},
pages = {549-558},
url = {http://www.cs.ox.ac.uk/files/5265/kartsaklis_etal_2012.pdf},
lockkey = {Y}
}
@inproceedings{Kart2013,
author = {Dimitri Kartsaklis and Mehrnoosh Sadrzadeh and Stephen Pulman and Bob Coecke},
title = {Reasoning about Meaning in Natural Language with Compact Closed Categories and Frobenius Algebras},
booktitle = {Logic and Algebraic Structures in Quantum Computing},
publisher = {Cambridge University Press},
year = 2013,
url = {https://www.cs.ox.ac.uk/files/5468/sadrzadeh_kartsaklis.pdf},
lockkey = {Y}
}
@article{Kart2014,
author = {Dimitri Kartsaklis and Mehrnoosh Sadrzadeh},
title = {A Study of Entanglement in a Categorical Framework of Natural Language},
journal = {Proceedings Quantum Physics and Logic, Electronic Proceedings in Theoretical Computer Science},
year = 2014,
volume = 172,
pages = {249-260},
url = {https://arxiv.org/abs/1405.2874},
doi = {10.4204/EPTCS.172.17},
lockkey = {Y}
}
@inproceedings{klein2003fast,
author = {Dan Klein and Christopher D. Manning},
title = {Fast Exact Inference with a Factored Model for Natural Language Parsing},
booktitle = {Advances in Neural Information Processing Systems},
year = 2003,
volume = 15,
publisher = {MIT Press},
keywords = {NT2OD nlp parser stanford},
url = {http://www-nlp.stanford.edu/~manning/papers/lex-parser.pdf},
abstract = {We present a novel generative model for natural language
tree structures in which semantic (lexical dependency) and syntactic
(PCFG) structures are scored with separate models. This factorization
provides conceptual simplicity, straightforward opportunities for
separately improving the component models, and a level of performance
comparable to similar, non-factored models. Most importantly, unlike
other modern parsing models, the factored model admits an extremely
effective A* parsing algorithm, which enables efficient, exact
inference.},
biburl = {http://www.bibsonomy.org/bibtex/2505045157cd1142aec85fa272f937559/butonic},
school = {The Stanford Natural Language Processing Group}
}
@inproceedings{Klein2004,
author = {Dan Klein and Christopher D. Manning},
title = {Corpus-Based Induction of Syntactic Structure: Models of Dependency and Constituency},
booktitle = {ACL '04 Proceedings of the 42nd Annual Meeting on Association for Computational Linguistics},
pages = {479--486},
year = 2004,
publisher = {Association for Computational Linguistics},
url = {http:/http://www.cs.berkeley.edu/~klein/papers/acl04-factored_induction.pdf},
doi = {10.3115/1218955.1219016},
lockkey = {Y}
}
@book{Kuc67,
author = {Henry Kucera and W. Nelson Francis},
title = {Computational Analysis of Present-Day American English},
publisher = {Brown University},
year = 1967,
}
@inproceedings{Lambek61,
author = {J. Lambek},
title = {On the calculus of syntactic types},
booktitle = {Structure of Language and its Mathematical Aspects},
publisher = {America Methematical Society},
year = {1961},
pages = {166-178},
lockkey = {Y}
}
@article{Lee2016,
author = {Joonseok Lee and Seungyeon Kim and Guy Lebanon and Yoram Singer and Samy Bengio},
title = {LLORMA: Local Low-Rank Matrix Approximation},
journal = {Journal of Machine Learning Research},
year = 2016,
volume = {16},
pages = {1--24},
lockkey = {Y}
}
@inproceedings{Levy2014,
author = {Omer Levy and Yoav Goldberg},
title = {Neural Word Embedding as Implicit Matrix Factorization},
year = 2014,
booktitle = {Proceedings of the 27th International Conference on Neural Information Processing Systems},
series = {NIPS'14},
pages = {2177--2185},
publisher = {MIT Press},
url = {https://papers.nips.cc/paper/5477-neural-word-embedding-as-implicit-matrix-factorization.pdf},
lockkey = {Y}
}
@ARTICLE{Lian2010,
author = {Ruiting Lian, Ben Goertzel, et al.},
title = {Language Generation via Glocal Similarity Matching},
journal = {Neurocomputing},
year = {2010},
}
@INPROCEEDINGS{Lian2012,
author = {Ruiting Lian and Ben Goertzel and Shujing Ke and Jade O'Neill and Keyvan Sadeghi and Simon Shiu and Dingjie Wang and Oliver Watkins and Gino Yu},
title = {Syntax-Semantic Mapping for General Intelligence: Language Comprehension as Hypergraph Homomorphism, Language Generation as Constraint Satisfaction},
booktitle = {Artificial General Intelligence: Lecture Notes in Computer Science Volume 7716},
publisher = {Springer},
year = {2012},
}
@article{Li92,
author = {Wentian Li},
title = {Random Texts Exhibit Zipf's-Law-Like Word Frequency Distribution},
journal = {IEEE Transactions on Information Theory},
year = 1992,
volume = {38},
number = 6,
pages = {1842-1845},
url = {http://www.nslij-genetics.org/wli/pub/ieee92_pre.pdf},
doi = {10.1109/18.165464}
}
@inproceedings{Lin1998,
author = {Lin, Dekang},
title = {Automatic retrieval and clustering of similar words},
booktitle = {Proceedings of the 17th international conference on Computational linguistics},
pages = {768--774},
year = 1998,
address = {Morristown, NJ, USA},
publisher = {Association for Computational Linguistics},
doi = {10.3115/980691.980696}
}
@inproceedings{Lin1998minipar,
author = {Dekang Lin},
title = {Dependency-based Evaluation of MINIPAR},
booktitle = {Proc. Workshop on the Evaluation of Parsing Systems},
year = 1998,
series = {Granada},
biburl = {http://www.bibsonomy.org/bibtex/241c0fe4de5685916d5590b532a6aaf21/diego_ma},
lockkey = {Y}
}
@inproceedings{Lin2001,
author = {Lin, Dekang and Pantel, Patrick},
title = {DIRT: Discovery of Inference Rules from Text},
booktitle = {Proceedings of the Seventh ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD'01)},
pages = {323--328},
year = 2001,
publisher = {ACM Press},
doi = {10.1145/502512.502559},
lockkey = {Y}
}
@unpublished{Lin2017,
author = {Henry W. Lin and Max Tegmark and David Rolnick},
title = {Why does deep and cheap learning work so well?},
note = {ArXiv 1606.08225v4 [cond-mat.dis-nn]},
year = 2017,
url = {https://arxiv.org/pdf/1608.08225.pdf}
}
@article{Liu2008,
author = {Haitao Liu},
title = {Dependency distance as a metric of language comprehension difficulty},
journal = {Journal of Cognitive Science},
volume = {9},
number = {2},
pages={159-191},
url={http://www.lingviko.net/JCS.pdf},
year={2008},
}
@book{Looks2006,
author = {Moshe Looks},
publisher = {PhD thesis, Washington University St. Louis},
title = {Competent Program Evolution},
year = 2006,
keywords = {AGI machine-learning},
lockkey = {Y}
}
@inproceedings{Looks2007,
author = {Moshe Looks},
title = {Meta-optimizing semantic evolutionary search},
booktitle = {Genetic and Evolutionary Computation Conference (GECCO)},
year = {2007},
pages = {626},
ee = {http://doi.acm.org/10.1145/1276958.1277086},
crossref = {DBLP:conf/gecco/2007},
bibsource = {DBLP, http://dblp.uni-trier.de},
lockkey = {Y}
}
# booktitle = {Genetic and Evolutionary Computation Conference, GECCO 2007,
# Proceedings, London, England, UK, July 7-11, 2007},
@proceedings{DBLP:conf/gecco/2007,
editor = {Hod Lipson},
booktitle = {Genetic and Evolutionary Computation Conference, GECCO 2007,
Proceedings, London, England, UK, July 7-11, 2007},
publisher = {ACM},
year = {2007},
isbn = {978-1-59593-697-4},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@inproceedings{Louw2007,
author = {Bill Louw},
title = {Truth, literary worlds and devices as collocation},
url = {https://www.academia.edu/843973/Truth_literary_worlds_and_devices_as_collocation},
year = 2007,
booktitle = {Language and Computers, Corpora in the Foreign Language Classroom},
editor = {Encarnación Hildalgo, Luis Quereda and Juan Santana},
pages = {329-362},
issue = 34,
publisher = Rodopi,
lockkey = {Y}
}
@book{MacLane1978,
author = {Saunders Mac Lane},
title = {Categories for the Working Mathematician},
year = 1978,
publisher = {Springer},
doi = {doi:10.1007/978-1-4757-4721-8}
}
@book{MacLane1992,
author = {Saunders Mac Lane and Ieke Moerdijk},
title = {Sheaves in Geometry and Logic},
year = 1992,
publisher = {Springer},
isbn = {0-387-97710-4},
doi = {10.1007/978-1-4612-0927-0},
lockkey = {Y}
}
@book{Manin1977,
author = {Yu. I. Manin},
title = {A Course in Mathematical Logic},
publisher = {Springer-Verlag},
year = {1977},
isbn = {0-387-90243-0},
lockkey = {Y}
}
@book{Marcus1967,
author = {Solomon Marcus},
title = {Algebraic Linguistics; Analytical Models},
year = 1967,
url = {https://monoskop.org/images/2/26/Marcus_Solomon_editor_Algebraic_Linguistics_Analytical_Models_1967.pdf},
publisher = {Elsevier},
lockkey = {Y}
}
@inproceedings{Marneffe2008,
author = {Marie-Catherine de Marneffe and Christopher D. Manning},
title = {The Stanford typed dependencies representation},
booktitle = {CrossParser '08: Coling 2008: Proceedings of the workshop on Cross-Framework and Cross-Domain Parser Evaluation},
pages = {1--8},
year = {2008},
address = {Morristown, NJ, USA},
publisher = {Association for Computational Linguistics},
isbn = {978-1-905593-50-7},
location = {Manchester, United Kingdom},
lockkey = {Y}
}
@inproceedings{Marneffe2006stanford,
author = {Marie-Catherine de Marneffe, Bill MacCartney and Christopher D. Manning},
title = {Generating typed dependency parses from phrase structure parses},
booktitle = {Proceedings of the fifth international conference on Language Resources and Evaluation (LREC-06)},
pages = {449--454},
year = {2006},
lockkey = {Y}
}
@inproceedings{McDonald2005,
author = {Ryan McDonald and Fernando Pereira and Kiril Ribarov and Jan Haji},
title = {Non-projective Dependency Parsing using Spanning Tree Algorithms},
booktitle = {HLT 05: Proceedings of the conference on Human Language Technology and Empirical Methods in Natural Language Processing},
pages = {523--530},
year = 2005,
publisher = {Association for Computational Linguistics},
url = {https://www.seas.upenn.edu/~strctlrn/bib/PDF/nonprojectiveHLT-EMNLP2005.pdf}
}
@inproceedings{McDonald2006,
author = {McDonald, Ryan and Lerman, Kevin and Pereira, Fernando},
title = {Multilingual dependency analysis with a two-stage discriminative parser},
booktitle = {CoNLL-X '06: Proceedings of the Tenth Conference on Computational Natural Language Learning},
pages = {216--220},
year = 2006,
address = {Morristown, NJ, USA},
publisher = {Association for Computational Linguistics},
location = {New York City, New York},
lockkey = {Y}
}
@article{Mel'cuk1987,
author = {Igor A. Mel'čuk and Alain Polguere},
title = {A Formal Lexicon in Meaning-Text Theory},
journal = {Computational Linguistics},
year = 1987,
volume = {13},
pages = {261-275},
lockkey = {Y}
}
@inproceedings{Meza-Ruiz2009,
author = {Meza-Ruiz, Ivan and Riedel, Sebastian},
title = {Jointly identifying predicates, arguments and senses using Markov logic},
booktitle = {NAACL '09: Proceedings of Human Language Technologies: The 2009 Annual Conference of the North American Chapter of the Association for Computational Linguistics},
pages = {155--163},
year = 2009,
address = {Morristown, NJ, USA},
publisher = {Association for Computational Linguistics},
isbn = {978-1-932432-41-1},
location = {Boulder, Colorado},
lockkey = {Y}
}
@unpublished{Mezard2008,
author = {Marc M\'ezard and Thierry Mora},
title = {Constraint satisfaction problems and neural networks: a statistical physics perspective},
note = {ArXiv abs/0803.3061},
year = 2008,
url = {https://arxiv.org/abs/0803.3061},
}
@inproceedings{Mihalcea2004,
author = {Mihalcea, Rada and Tarau, Paul and Figa, Elizabeth},
title = {PageRank on semantic networks, with application to word sense disambiguation},
booktitle = {COLING '04},
year = 2004,
pages = {1126},
publisher = {ACL},
url = {http://web.eecs.umich.edu/~mihalcea/papers/mihalcea.coling04.pdf},
doi = {10.3115/1220355.1220517},
lockkey = {Y}
}
# booktitle = {COLING '04: Proceedings of the 20th international conference on Computational Linguistics},
# address = {Morristown, NJ, USA},
# publisher = {Association for Computational Linguistics},
@inproceedings{Mihalcea2005,
author = {Rada Mihalcea},
title = {Unsupervised Large-Vocabulary Word Sense Disambiguation with Graph-based Algorithms for Sequence Data Labeling},
booktitle = {Proceedings of HLT '05},
pages = {411--418},
year = 2005,
publisher = {ACL},
doi = {10.3115/1220575.1220627},
lockkey = {Y}
}
# booktitle = {HLT '05: Proceedings of the conference on Human Language Technology and Empirical Methods in Natural Language Processing},
# address = {Morristown, NJ, USA},
# publisher = {Association for Computational Linguistics},
@inproceedings{Mihalcea2007,
author = {Ravi Sinha and Rada Mihalcea},
title = {Unsupervised Graph-basedWord Sense Disambiguation Using Measures of Word Semantic Similarity},
booktitle = {ICSC '07: Proceedings of the International Conference on Semantic Computing},
pages = {363--369},
year = 2007,
address = {Washington, DC, USA},
publisher = {IEEE Computer Society},
doi = {10.1109/ICSC.2007.107},
}
@article{Mikolov2013a,
author = {Mikolov, Tomas and Chen, Kai and Corrado, Greg and Dean, Jeffrey},
title = {Efficient Estimation of Word Representations in Vector Space},
year = 2013,
journal = {arXiv/1301.3781v3},
url = {https://arxiv.org/abs/1310.3781},
}
@article{Mikolov2013b,
author = {Mikolov, Tomas and Sutskever, Ilya and Chen, Kai and Dean, Jeffrey and Corrado, Greg},
title = {Distributed Representations of Words and Phrases and their Compositionality},
year = 2013,
journal = {arXiv/1310.4546},
url = {https://arxiv.org/abs/1310.4546},
}
@article{Milicevic2006,
title={A short guide to the meaning-text linguistic theory},
author={Mili{\'c}evi{\'c}, Jasmina},
journal={Journal of Koralex},
number={8},
pages={187--233},
year={2006},
url = {http://www.olst.umontreal.ca/pdf/IntroMTTJM.pdf},
doi = {10.1.1.83.7153}
}
# journal={한국사전학},
# publisher={한국사전학회}
@unpublished{Minnaar2015a,
author = {Alex Minnaar},
title = {Word2Vec Tutorial Part I: The SkipGram Model},
year = {2015},
note = {weblog},
url = {http://mccormickml.com/assets/word2vec/Alex_Minnaar_Word2Vec_Tutorial_Part_I_The_Skip-Gram_Model.pdf}
}
@unpublished{Minnaar2015b,
author = {Alex Minnaar},
title = {Word2Vec Tutorial Part II: The Continuous Bag-of-Words Model},
year = {2015},
note = {weblog},
url = {http://mccormickml.com/assets/word2vec/Alex_Minnaar_Word2Vec_Tutorial_Part_II_The_Continuous_Bag-of-Words_Model.pdf}
}
@article{Mora2010,
author = {Thierry Mora and Aleksandra M. Walczak and William Bialek and Curtis G. Callan Jr.},
title = {Maximum entropy models for antibody diversity},
journal = {Proceedings of the National Academy of Sciences},
year = {2010},
volume = {107},
pages = {5405-5410},
doi = {10.1073/pnas.1001705107},
url = {http://www.pnas.org/content/107/12/5405}
}
@article{Mora2011,
author = {Thierry Mora and William Bialek},
title = {Are biological systems poised at criticality?},
journal = {Journal of Statistical Physics},
year = 2011,
volume = {144},
pages = {268--302},
doi = {10.1007/s10955-011-0229-4},
url = {https://arxiv.org/abs/1012.2242}
}
@article{Moulton2018,
author = {R. Moulton and Y. Jiang},
title = {Maximally Consistent Sampling and the Jaccard Index of Probability Distributions},
journal = {International Conference on Data Mining, Workshop on High Dimensional Data Mining},
year = 2018,
pages = {347--356},
doi = {10.1109/ICDM.2018.00050},
url = {https://arxiv.org/abs/1809.04052}
}
@article{Nida97,
author = {EA Nida},
title = {The Molecular Level of Lexical Semantics},
year = 1997,
journal = {International Journal of Lexicography},
volume = 10,
issue = 4,
pages = {265--274},
url = {https://www.academia.edu/36534355/The_Molecular_Level_of_Lexical_Semantics_by_EA_Nida},
lockkey = {Y}
}
@book{Nivre2006,
author = {Nivre, Joakim},
title = {Inductive Dependency Parsing (Text, Speech and Language Technology)},
publisher = {Springer-Verlag New York, Inc.},
year = 2006,
address = {Secaucus, NJ, USA},
isbn = {1402048882},
lockkey = {Y}
}
@article{Osborne2012,
author = {Timothy Osborne and Michael Putnam and Thomas Groß},
title = {Catenae: Introducing a Novel Unit of Syntactic Analysis},
year = 2012,
journal = {Syntax},
volume = {15},
issue = 4,
pages = {354--396},
doi = {10.1111/j.1467-9612.2012.00172.x}
}
@article{Ostler1991,
author = {N. Ostler and B.T.S.Atkins},
title = {Predictable Meaning Shift: Some Linguistic Properties of Lexical Implication Rules},
year = 1991,
journal = {Proceedings of the First SIGLEX Workshop on Lexical Semantics and Knowledge Representation},
doi = {10.1007/3-540-55801-2_29},
}
@article{Penne2001,
author = {Shannon Wiltsey Stirman and James W. Pennebaker},
title = {Word Use in the Poetry of Suicidal and Nonsuicidal Poets},
journal = {Psychosomatic Medicine},
year = 2001,
volume = {63},
number = 6,
pages = {517-522},
url = {http://homepage.psy.utexas.edu/homepage/faculty/pennebaker/reprints/SuicidalPoets.PDF},
lockkey = {Y}
}
@inproceedings{Penne2007,
author = {Cindy Chung and James Pennebaker},
title = {The Psychological Functions of Function Words},
booktitle = {Social communication: Frontiers of social psychology},
crossref = {SocComm/2007},
year = 2007,
pages = {343-359},
url = {http://homepage.psy.utexas.edu/homePage/Class/Psy301/Pennebaker/HRtraining/ChungPennebaker2007.pdf},
lockkey = {Y}
}
@inproceedings{Pennington2014,
author = {Jeffrey Pennington and Richard Socher and Christopher D. Manning},
title = {Glove: Global vectors for word representation},
year = 2014,
booktitle = {Proceedings of the Empiricial Methods in Natural Language Processing},
url = {https://nlp.stanford.edu/pubs/glove.pdf}
}
@article{Pentus98,
author = {Mati Pentus},
title = {Lambek Calculus and Formal Grammars},
year = 1998,
journal = {American Mathematical Society Translations},
url = {http://lpcs.math.msu.su/~pentus/ftp/papers/ams.pdf},
lockkey = {Y}
}
@BOOK{PLN,
title = {Probabilistic Logic Networks},
publisher = {Springer},