-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocalbibliography.bib
More file actions
7441 lines (6661 loc) · 238 KB
/
Copy pathlocalbibliography.bib
File metadata and controls
7441 lines (6661 loc) · 238 KB
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
@inproceedings{cook2014,
Author = {Paul Cook and Jey Han Lau and Michael Rundell and Diana McCarthy and Timothy Baldwin},
Booktitle = {{Proceedings of the 16th {EURALEX} International Congress}},
Organization = {EURAC},
Pages = {319--328},
Address = {Ljubljana},
Publisher = {Ljubljana University Press},
Title = {Applying a word-sense induction system to the automatic extraction of diverse dictionary examples},
Year = {2014}}
@phdthesis{kutuzov2020-phd,
author = {Kutuzov, Andrey},
school = {University of Oslo},
title = {Distributional word embeddings in modeling diachronic semantic change},
year = {2020}
}
@misc{karjus2020communicative,
archiveprefix = {arXiv},
author = {Andres Karjus and Richard A. Blythe and Simon Kirby and Kenny Smith},
eprint = {2006.09277},
howpublished = {https://arxiv.org/abs/2006.09277},
primaryclass = {cs.CL},
title = {Communicative need modulates competition in language change},
year = {2020}
}
@book{SO2009,
author = {{Svenska Akademien}},
options = {indexing=false},
title = {Svensk ordbok utgiven av {Svenska Akademien}},
url = {https://svenska.se},
year = {2009}
}
@misc{SAOB,
author = {{Svenska Akademien}},
options = {indexing=false},
title = {Svenska {Akademiens} ordbok},
url = {https://svenska.se/},
year = {1898--}
}
@incollection{Borin2012,
author = {Lars Borin and Markus Forsberg and Johan Roxendal},
title = {Korp: {The} corpus infrastructure of {Språkbanken}},
booktitle = {Proceedings of {LREC} 2012},
location = {Istanbul},
publisher = {ELRA},
pages = {474--478},
year = {2012},
url = {https://spraakbanken.gu.se/korp},
editor = {Nicoletta Calzolari and Khalid Choukri and Thierry Declerck and Mehmet Uğur Doğan and Bente Maegaard and Joseph Mariani and Asuncion Moreno and Jan Odijk and Stelios Piperidis}
}
@misc{DDO,
editor = {{Det Danske Sprog- og Litteraturselskab}},
year = {1918--},
title = {{Den Danske Ordbog}},
url = {https://ordnet.dk/ddo},
}
@inproceedings{zhang-etal-2015-omnia,
address = {Beijing},
author = {Zhang, Yating and Jatowt, Adam and Bhowmick, Sourav and Tanaka, Katsumi},
booktitle = {Proceedings of {{ACL}/{IJCNLP}} 2015 ({Volume 1: {{L}}ong} Papers)},
doi = {10.3115/v1/P15-1063},
pages = {645--655},
publisher = {ACL},
title = {Omnia Mutantur, Nihil Interit: {Connecting} Past with Present by Finding Corresponding Terms across Time},
year = {2015}
}
@inproceedings{tahmasebi2012neer,
address = {Mumbai},
author = {Tahmasebi, Nina and Gossen, Gerhard and Kanhabua, Nattiya and Holzmann, Helge and Risse, Thomas},
booktitle = {Proceedings of {{COLING}} 2012},
pages = {2553--2568},
publisher = {ACL},
title = {{{NEER}}: {An} Unsupervised Method for Named Entity Evolution Recognition},
url = {https://www.aclweb.org/anthology/C12-1156},
year = {2012}
}
@inproceedings{stewartabv17,
author = {Ian Stewart and Dustin Arendt and Eric Bell and Svitlana Volkova},
bibsource = {dblp computer science bibliography, https://dblp.org},
biburl = {https://dblp.org/rec/conf/icwsm/StewartABV17.bib},
booktitle = {Proceedings of {ICWSM} 2017},
pages = {672--675},
publisher = {{AAAI} Press},
address = {Montr{é}al},
title = {Measuring, Predicting and Visualizing Short-Term Change in Word Representation and Usage in {VK}ontakte Social Network},
year = {2017}
}
@inproceedings{schlechtweg-etal-2020-semeval,
address = {Barcelona},
author = {Schlechtweg, Dominik and McGillivray, Barbara and Hengchen, Simon and Dubossarsky, Haim and Tahmasebi, Nina},
booktitle = {Proceedings of {SemEval} 2020},
pages = {1--23},
publisher = {ACL},
title = {{{SemE}val}-2020 Task 1: {Unsupervised} Lexical Semantic Change Detection},
url = {https://www.aclweb.org/anthology/2020.semeval-1.1},
year = {2020}
}
@inproceedings{sagi-etal-2009-semantic,
address = {Athens},
author = {Sagi, Eyal and Kaufmann, Stefan and Clark, Brady},
booktitle = {{Proceedings of the Workshop on Geometrical Models of Natural Language Semantics}},
pages = {104--111},
publisher = {ACL},
title = {Semantic Density Analysis: {{C}}omparing Word Meaning across Time and Phonetic Space},
url = {https://www.aclweb.org/anthology/W09-0214},
year = {2009}
}
@inproceedings{rosenfeld-erk-2018-deep,
address = {New Orleans},
author = {Rosenfeld, Alex and Erk, Katrin},
booktitle = {Proceedings of {{NAACL}-{HLT}} 2018: {Volume} 1 ({Long} Papers)},
doi = {10.18653/v1/N18-1044},
pages = {474--484},
publisher = {ACL},
title = {Deep Neural Models of Semantic Shift},
year = {2018}
}
@inproceedings{rodina2019measuring,
author = {Rodina, Julia and Bakshandaeva, Daria and Fomin, Vadim and Kutuzov, Andrey and Touileb, Samia and Velldal, Erik},
booktitle = {{Proceedings of the 1st International Workshop on Computational Approaches to Historical Language Change}},
pages = {202--209},
title = {Measuring Diachronic Evolution of Evaluative Adjectives with Word Embeddings: {The} Case for {{English}, {Norwegian}, and {Russian}}},
year = {2019}
}
@inproceedings{pilan2016,
address = {San Diego},
author = {Pilán, Ildikó},
booktitle = {{Proceedings of the 11th Workshop on Innovative Use of {{NLP}} for Building Educational Applications}},
pages = {151--161},
publisher = {ACL},
title = {Detecting context dependence in exercise item candidates selected from corpora.},
year = {2016}
}
@inproceedings{petersson2020,
address = {Alexandroupolis},
author = {Petersson, Stellan and Sköldberg, Emma},
booktitle = {{EURALEX} {XIXI} Book of Proceedings {Vol. 1.}},
pages = {381--386},
publisher = {EURAC},
title = {{To} discriminate between discrimination and inclusion: {A lexicographer's dilemma}},
year = {2020}
}
@inproceedings{pennington-etal-2014-glove,
address = {Doha},
author = {Pennington, Jeffrey and Socher, Richard and Manning, Christopher},
booktitle = {Proceedings of {{EMNLP}} 2014},
doi = {10.3115/v1/D14-1162},
pages = {1532--1543},
publisher = {ACL},
title = {{GloVe}: {{G}}lobal Vectors for Word Representation},
year = {2014}
}
@inproceedings{orlikowski-etal-2018-learning,
address = {Santa Fe},
author = {Orlikowski, Matthias and Hartung, Matthias and Cimiano, Philipp},
booktitle = {Proceedings of the second joint SIGHUM workshop on
computational linguistics for cultural heritage, social
sciences, humanities and literature},
pages = {1--11},
publisher = {ACL},
title = {Learning Diachronic Analogies to Analyze Concept Change},
url = {https://www.aclweb.org/anthology/W18-4501},
year = {2018}
}
@inproceedings{montariola19,
author = {Syrielle Montariol and Alexandre Allauzen},
booktitle = {Proceedings of {RANLP} 2019},
doi = {10.26615/978-954-452-056-4_092},
editor = {Ruslan Mitkov and Galia Angelova},
address = {Varna},
pages = {795--803},
publisher = {{INCOMA} Ltd.},
title = {Empirical Study of Diachronic Word Embeddings for Scarce Data},
year = {2019}
}
@inproceedings{mitra-etal-2014-thats,
address = {Baltimore},
author = {Mitra, Sunny and Mitra, Ritwik and Riedl, Martin and Biemann, Chris and Mukherjee, Animesh and Goyal, Pawan},
booktitle = {Proceedings of {{ACL}} 2014 ({Volume 1: {{L}}ong} Papers)},
doi = {10.3115/v1/P14-1096},
pages = {1020--1029},
publisher = {ACL},
title = {That{'}s sick dude!: {{A}}utomatic identification of word sense change across different timescales},
year = {2014}
}
@inproceedings{martincmzp20,
address = {Taipei},
author = {Matej Martinc and Syrielle Montariol and Elaine Zosa and Lidia Pivovarova},
booktitle = {{Companion of the 2020 Web Conference}},
doi = {10.1145/3366424.3382186},
editor = {Amal El Fallah Seghrouchni and Gita Sukthankar and Tie-Yan Liu and Maarten van Steen},
pages = {343--349},
publisher = {{ACM}/{IW3C2}},
title = {Capturing Evolution in Word Usage: {Just} Add More Clusters?},
year = {2020}
}
@inproceedings{martinc-etal-2020-leveraging,
address = {Marseille},
author = {Martinc, Matej and Kralj Novak, Petra and Pollak, Senja},
booktitle = {Proceedings of {{LREC}} 2020},
pages = {4811--4819},
publisher = {ELRA},
title = {Leveraging Contextual Embeddings for Detecting Diachronic Semantic Shift},
url = {https://www.aclweb.org/anthology/2020.lrec-1.592},
year = {2020}
}
@inproceedings{malmgren1988,
address = {Stockholm},
author = {Malmgren, Sven-Göran},
booktitle = {Studies in computer-aided lexicology},
pages = {179--200},
publisher = {Almqvist \& Wiksell},
series = {Data Linguistica 18},
title = {On regular polysemy in {{Swedish}}},
year = {1988}
}
@inproceedings{lin-etal-2012-syntactic,
address = {Jeju Island},
author = {Lin, Yuri and Michel, Jean-Baptiste and Aiden Lieberman, Erez and Orwant, Jon and Brockman, Will and Petrov, Slav},
booktitle = {Proceedings of the {ACL 2012 System Demonstrations}},
pages = {169--174},
publisher = {ACL},
title = {Syntactic Annotations for the {G}oogle {B}ooks {{NG}}ram Corpus},
url = {https://www.aclweb.org/anthology/P12-3029},
year = {2012}
}
@inproceedings{lau-etal-2012-word,
address = {Avignon},
author = {Lau, Jey Han and Cook, Paul and McCarthy, Diana and Newman, David and Baldwin, Timothy},
booktitle = {Proceedings of {{EACL}} 2012},
pages = {591--601},
publisher = {ACL},
title = {Word Sense Induction for Novel Sense Detection},
url = {https://www.aclweb.org/anthology/E12-1060},
year = {2012}
}
@inproceedings{kim-etal-2014-temporal,
address = {Baltimore},
author = {Kim, Yoon and Chiu, Yi-I and Hanaki, Kentaro and Hegde, Darshan and Petrov, Slav},
booktitle = {Proceedings of the {{ACL}} 2014 Workshop on Language Technologies and Computational Social Science},
doi = {10.3115/v1/W14-2517},
pages = {61--65},
publisher = {ACL},
title = {Temporal Analysis of Language through Neural Language Models},
year = {2014}
}
@inproceedings{kilgarriff2004,
address = {Lorient},
author = {Kilgarriff, Adam and Rychlý, Pavel and Smrz, Pavel and Tugwell, David},
booktitle = {Proceedings of the 11th {EURALEX International Congress}},
pages = {105--115},
publisher = {Université de Bretagne Sud},
title = {The sketch engine},
year = {2004}
}
@inproceedings{hellrich-hahn-2016-bad,
address = {Osaka},
author = {Hellrich, Johannes and Hahn, Udo},
booktitle = {Proceedings of {{COLING}} 2016: {Technical} Papers},
pages = {2785--2796},
publisher = {ACL},
title = {Bad Company: {N}eighborhoods in Neural Embedding Spaces Considered Harmful},
url = {https://www.aclweb.org/anthology/C16-1262},
year = {2016}
}
@inproceedings{hamilton-etal-2016-cultural,
address = {Austin},
author = {Hamilton, William L. and Leskovec, Jure and Jurafsky, Dan},
booktitle = {Proceedings of {{EMNLP}} 2016},
doi = {10.18653/v1/D16-1229},
pages = {2116--2121},
publisher = {ACL},
title = {Cultural Shift or Linguistic Drift? {{C}}omparing Two Computational Measures of Semantic Change},
year = {2016}
}
@inproceedings{gulordava-baroni-2011-distributional,
address = {Edinburgh},
author = {Gulordava, Kristina and Baroni, Marco},
booktitle = {{Proceedings of the {{GEMS}} 2011 Workshop on {{GE}}ometrical Models of Natural Language Semantics}},
pages = {67--71},
publisher = {ACL},
title = {A distributional similarity approach to the detection of semantic change in the {Google Books Ngram} corpus.},
url = {https://www.aclweb.org/anthology/W11-2508},
year = {2011}
}
@inproceedings{gale-etal-1992-one,
author = {Gale, William A. and Church, Kenneth W. and Yarowsky, David},
booktitle = {Speech and Natural Language: {{P}}roceedings of a Workshop Held at {Harriman}, {New York}, {February} 23--26, 1992},
title = {{One} Sense Per Discourse},
url = {https://www.aclweb.org/anthology/H92-1045},
year = {1992}
}
@inproceedings{ferrari2017detecting,
author = {Ferrari, Alessio and Donati, Beatrice and Gnesi, Stefania},
booktitle = {{Proceedings of the 2017 {IEEE} 25th International Requirements Engineering Conference Workshops}},
pages = {393--399},
title = {Detecting Domain-specific Ambiguities: {An} {{NLP}} Approach based on {Wikipedia} Crawling and Word Embeddings},
year = {2017}
}
@inproceedings{eger-mehler-2016-linearity,
address = {Berlin},
author = {Eger, Steffen and Mehler, Alexander},
booktitle = {Proceedings of {{ACL}} 2016 ({Volume 2: {{S}}hort} Papers)},
doi = {10.18653/v1/P16-2009},
pages = {52--58},
publisher = {ACL},
title = {On the Linearity of Semantic Change: {{I}}nvestigating Meaning Variation via Dynamic Graph Models},
year = {2016}
}
@inproceedings{cook-etal-2014-novel,
address = {Dublin},
author = {Cook, Paul and Lau, Jey Han and McCarthy, Diana and Baldwin, Timothy},
booktitle = {Proceedings of {{COLING}} 2014: {Technical} Papers},
pages = {1624--1635},
publisher = {ACL},
title = {Novel Word-sense Identification},
url = {https://www.aclweb.org/anthology/C14-1154},
year = {2014}
}
@inproceedings{bender-2009,
address = {Athens},
author = {Bender, Emily M.},
booktitle = {{Proceedings of the {{EACL}} 2009 Workshop on the Interaction between Linguistics and Computational Linguistics: {Virtuous}, Vicious or Vacuous?}},
pages = {26--32},
publisher = {ACL},
title = {Linguistically {Naïve} != Language Independent: {Why} {{NLP}} Needs Linguistic Typology},
url = {https://www.aclweb.org/anthology/W09-0106},
year = {2009}
}
@inproceedings{bamman2011,
author = {Bamman, David and Crane, Gregory},
booktitle = {{Proceedings of the 11th {{ACM}/{IEEE}-{CS}} Joint Conference on Digital Libraries}},
mendeley-groups = {Computational historical linguistics/semantic change},
pages = {1--10},
publisher = {ACM},
title = {Measuring Historical Word Sense Variation},
year = {2011}
}
@book{waldron1967,
address = {London},
author = {Waldron, Ronald A.},
publisher = {Andre Deutch Limited},
title = {Sense and sense development},
year = {1967}
}
@book{sjogren2010,
address = {Stockholm},
author = {Sjögren, Peter A. and Györki, Iréne},
publisher = {Bonnier},
sortname = {Sj{o}gren, Peter A. and Gyorki, Irene},
title = {Bonniers svenska ordbok},
year = {2010}
}
@book{lyons1968,
address = {Cambridge},
author = {Lyons, John},
publisher = {Cambridge University Press},
title = {Introduction to theoretical lingustics},
year = {1968}
}
@book{Wojahn2015,
address = {Uppsala},
author = {Wojahn, Daniel},
publisher = {Institutionen för nordiska språk, Uppsala universitet},
series = {Studier utgivna av Institutionen för nordiska språk vid Uppsala universitet 92},
title = {Språkaktivism: {Diskussioner} om feministiska språkförändringar i {Sverige} från 1960-talet till 2015 {{\textup{[Language activism. {{D}}iscussions on feminist language change in {Sweden} from the 1960s until 2015]}}}},
year = {2015}
}
@book{Longman,
editor = {{Pearson Longman}},
options = {indexing=false},
location = {Harlow, UK},
Title = {Longman dictionary of contemporary {English}},
Edition = {5th},
Year = {2009}}
@book{Merriam,
editor = {{Merriam-Webster}},
options = {indexing=false},
publisher = {Merriam-Webster},
address = {Springfield},
Title = {{Merriam-Webster} dictionary},
note = {Version 5.2.0},
Year = {2019}}
@article{vejdemo2016semantic,
author = {Vejdemo, Susanne and Hörberg, Thomas},
journal = {PLOS ONE},
number = {1},
pages = {e0147924},
publisher = {Public Library of Science San Francisco, CA USA},
sortname = {Vejdemo, Susanne and H{o}rberg, Thomas},
title = {Semantic factors predict the rate of lexical replacement of content words},
volume = {11},
year = {2016}
}
@article{turney2019natural,
author = {Turney, Peter D. and Mohammad, Saif M.},
journal = {PLOS ONE},
number = {1},
pages = {e0211512},
publisher = {Public Library of Science San Francisco, CA USA},
title = {The natural selection of words: {{F}}inding the features of fitness},
volume = {14},
year = {2019}
}
@article{tahmasebi2018survey,
title={Survey of computational approaches to lexical semantic change},
author={Tahmasebi, Nina and Borin, Lars and Jatowt, Adam},
journal = {arXiv preprint 1811.06278},
year={2018}
}
@article{rosenkvist2011,
author = {Rosenkvist, Henrik and Skärlund, Sanna},
journal = {Spr{\aa}k \& Stil},
pages = {5--25},
sortname = {Rosenkvist, Henrik and Sk{a}rlund, Sanna},
title = {Grammatikalisering i nutid -- utvecklingen av \emph{typ} fram till 2009 {{\textup{[Present-day grammaticalization -- the development of \emph{typ} until 2009]}}}},
volume = {21},
year = {2011}
}
@article{nimb2020,
author = {Sanni Nimb and Hartvig Sørensen, Nicolai and Lorentzen, Henrik},
journal = {Slovenščina 2.0},
number = {2},
pages = {112--138},
sortname = {Sanni Nimb and Hartvig Sørensen, Nicolai and Lorentzen, Henrik.},
title = {Updating the dictionary: {Semantic} change identification based on change in bigrams over time},
volume = {8},
year = {2020}
}
@article{marjanen2020expansion,
author = {Marjanen, Jani and Kurunmäki, Jussi and Pivovarova, Lidia and Zosa, Elaine},
journal = {Journal of Data Mining \& Digital Humanities},
sortname = {Marjanen, Jani and Kurunmaki, Jussi and Pivovarova, Lidia and Zosa, Elaine},
title = {The expansion of isms, 1820--1917: {{D}}ata-driven analysis of political language in digitized newspaper collections},
url = {https://jdmdh.episciences.org/6728},
year = {2020}
}
@article{koplenig2016population,
author = {Koplenig, Alexander and Müller-Spitzer, Carolin},
journal = {PLOS ONE},
number = {3},
pages = {e0150771},
publisher = {Public Library of Science San Francisco, CA USA},
sortname = {Koplenig, Alexander and M{u}ller-Spitzer, Carolin},
title = {Population size predicts lexical diversity, but so does the mean sea level--why it is important to correctly account for the structure of temporal data},
volume = {11},
year = {2016}
}
@article{englhardt2020improving,
author = {Englhardt, Adrian and Willkomm, Jens and Schäler, Martin and Böhm, Klemens},
journal = {International Journal on Digital Libraries},
number = {3},
pages = {247--264},
publisher = {Springer},
sortname = {Englhardt, Adrian and Willkomm, Jens and Sch{a}ler, Martin and B{o}hm, Klemens},
title = {Improving semantic change analysis by combining word embeddings and word frequencies},
volume = {21},
year = {2020}
}
@article{duan2019mapping,
author = {Duan, Yijun and Jatowt, Adam and Bhowmick, Sourav S. and Yoshikawa, Masatoshi},
journal = {Data Science and Engineering},
number = {3},
pages = {208--222},
publisher = {Springer},
title = {Mapping entity sets in news archives across time},
volume = {4},
year = {2019}
}
@article{alper-nash-1999,
author = {Barry Alpher and David Nash},
doi = {10.1080/07268609908599573},
journal = {Australian Journal of Linguistics},
number = {1},
pages = {5--56},
title = {Lexical replacement and cognate equilibrium in {{Australia}}},
volume = {19},
year = {1999}
}
@book{Sametinget,
Author = {Sametinget},
Title = {{Svenska Sametingets} kommentar till {Sveriges} 22:a och 23:a periodiska rapport till {Kommittén} för avskaffande av rasdiskriminering {{\textup{Comments by the Swedish Sami Parliament regarding Sweden's 22nd and 23rd periodic reports to the Committee on the Elimination of Racial Discrimination}}}},
Year = {2017},
Lastchecked = {2021-01-21},
publisher = {Sametinget},
address = {Kiruna/Giron},
Url = {https://www.sametinget.se/117555}}
@misc{Nationalencyklopedin,
Title = {{\emph{Nationalencyklopedin}, eskimåer}},
Lastchecked = {2021-01-21},
Url = {http://www.ne.se.ezproxy.ub.gu.se/uppslagsverk/encyklopedi/lång/eskimåer}}
@article{Bird1999,
author = {Bird, Michael Yellow},
journal = {American Indian Quarterly},
number = {2},
pages = {1--21},
title = {What we want to be called: {Indigenous} people's perspectives on racial and ethnic identity labels},
volume = {23},
year = {1999}
}
@unpublished{schatzle:hal-02914284,
author = {Schätzle, Christin and Butt, Miriam},
hal_id = {hal-02914284},
hal_version = {v1},
note = {working paper or preprint},
pdf = {https://hal.inria.fr/hal-02914284/file/JDMDH-HistoBankVis.pdf},
title = {Visual analytics for historical linguistics: {{O}}pportunities and challenges},
url = {https://hal.inria.fr/hal-02914284},
year = {2020}
}
@unpublished{ayers,
author = {Ayers, Gail M.},
note = {Paper presented at the Linguistic Society of America annual meeting},
title = {Discourse Functions of Pitch Range in Spontaneous and Read Speech},
year = {1992}
}
@techreport{rumelhart1985learning,
author = {Rumelhart, David E. and Hinton, Geoffrey E. and Williams, Ronald J.},
institution = {California Univ San Diego La Jolla Inst for Cognitive Science},
title = {Learning internal representations by error propagation},
year = {1985}
}
@techreport{robinson,
address = {Santa Monica},
author = {Robinson, Jane J.},
institution = {The RAND Corporation},
number = {RM-3892-PR},
title = {Automatic Parsing and Fact Retrieval: {{A}} Comment on Grammar, Paraphrase, and Meaning},
type = {Memorandum},
year = {1964}
}
@techreport{appelt,
author = {Appelt, Douglas E.},
institution = {SRI},
number = {259},
title = {Planning Natural-Language Utterances to Satisfy Multiple Goals},
year = {1982}
}
@proceedings{ws-2019-international-approaches,
address = {Florence},
booktitle = {{Proceedings of the 1st International Workshop on Computational Approaches to Historical Language Change}},
editor = {Tahmasebi, Nina and Borin, Lars and Jatowt, Adam and Xu, Yang},
publisher = {ACL},
title = {{Proceedings of the 1st International Workshop on Computational Approaches to Historical Language Change}},
url = {https://www.aclweb.org/anthology/W19-4700},
year = {2019}
}
@proceedings{dblp:conf/www/2018,
address = {Lyon},
bibsource = {dblp computer science bibliography, https://dblp.org},
booktitle = {Proceedings of {{WWW}} 2018},
doi = {10.1145/3178876},
editor = {Pierre{-}Antoine Champin and Fabien L. Gandon and Mounia Lalmas and Panagiotis G. Ipeirotis},
publisher = {{ACM}},
title = {Proceedings of {{WWW}} 2018},
year = {2018}
}
@proceedings{dblp:conf/nips/2004,
bibsource = {dblp computer science bibliography, https://dblp.org},
biburl = {https://dblp.org/rec/bib/conf/nips/2004},
title = {Advances in Neural Information Processing Systems 17 [Neural Information Processing Systems, {{NIPS}} 2004, December 13-18, 2004, Vancouver, {British} {Columbia}, {Canada}]},
url = {http://papers.nips.cc/book/advances-in-neural-information-processing-systems-17-2004},
year = {2004}
}
@proceedings{dblp:conf/networds/2015,
address = {Aachen},
bibsource = {dblp computer science bibliography, https://dblp.org},
biburl = {https://dblp.org/rec/bib/conf/networds/2015},
booktitle = {{Proceedings of the {{NetW}ordS} Final Conference on Word Knowledge and Word Usage: {{R}}epresentations and Processes in the Mental Lexicon, {P}isa, {I}taly, {M}arch 30 -- {A}pril 1, 2015}},
editor = {Vito Pirrelli and Claudia Marzi and Marcello Ferro},
publisher = {CEUR-WS.org},
series = {{CEUR} Workshop Proceedings},
title = {{Proceedings of the {{NetW}ordS} Final Conference on Word Knowledge and Word Usage: {{R}}epresentations and Processes in the Mental Lexicon, {P}isa, {I}taly, {M}arch 30 -- {A}pril 1, 2015}},
url = {http://ceur-ws.org/Vol-1347},
urn = {urn:nbn:de:0074-1347-8},
volume = {1347},
year = {2015}
}
@proceedings{dblp:conf/jcdl/2010,
bibsource = {DBLP, http://dblp.uni-trier.de},
booktitle = {{JCDL}},
editor = {Jane Hunter and Carl Lagoze and C. Lee Giles and Yuan-Fang Li},
isbn = {978-1-4503-0085-8},
publisher = {ACM},
title = {{Proceedings of the 2010 Joint International Conference on Digital Libraries, {JCDL} 2010, Gold Coast, Queensland, {Australia}, June 21-25, 2010}},
year = {2010}
}
@proceedings{dblp:conf/ic3k/2017kdir,
bibsource = {dblp computer science bibliography, https://dblp.org},
biburl = {https://dblp.org/rec/bib/conf/ic3k/2017kdir},
booktitle = {{Proceedings of the 9th International Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management - (Volume 1), Funchal, Madeira, {Portugal}, November 1-3, 2017}},
editor = {Ana L. N. Fred and Joaquim Filipe},
isbn = {978-989-758-271-4},
publisher = {SciTePress},
title = {{Proceedings of the 9th International Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management - (Volume 1), Funchal, Madeira, {Portugal}, November 1-3, 2017}},
url = {http://www.scitepress.org/DigitalLibrary/ProceedingsDetails.aspx?ID=oMFBKw/aoDM=},
year = {2017}
}
@proceedings{dblp:conf/emnlp/2017,
address = {Copenhagen},
bibsource = {dblp computer science bibliography, https://dblp.org},
biburl = {https://dblp.org/rec/bib/conf/emnlp/2017},
booktitle = {Proceedings of {{EMNLP}} 2017},
editor = {Martha Palmer and Rebecca Hwa and Sebastian Riedel},
isbn = {978-1-945626-83-8},
publisher = {ACL},
title = {Proceedings of {{EMNLP}} 2017},
url = {https://aclanthology.info/volumes/proceedings-of-the-2017-conference-on-empirical-methods-in-natural-language-processing},
year = {2017}
}
@proceedings{dblp:conf/aaai/2017,
bibsource = {dblp computer science bibliography, https://dblp.org},
biburl = {https://dblp.org/rec/bib/conf/aaai/2017},
booktitle = {{Proceedings of the Thirty-First {{AAAI}} Conference on Artificial Intelligence, February 4-9, 2017, {San} Francisco, {California}, {{USA}}}},
editor = {Satinder P. Singh and Shaul Markovitch},
publisher = {{AAAI} Press},
title = {{Proceedings of the Thirty-First {{AAAI}} Conference on Artificial Intelligence, February 4-9, 2017, {San} Francisco, {California}, {{USA}}}},
url = {http://www.aaai.org/Library/AAAI/aaai17contents.php},
year = {2017}
}
@proceedings{benoit,
address = {Grenoble},
booktitle = {{Proceedings of the {European} Speech Communication Association Workshop on Speech Synthesis, Autrans, {September}}},
editor = {Benoit, Christian and Gerard Bailly},
organization = {European Speech Communication Association},
publisher = {Institut de la Communication Parlee},
title = {{Proceedings of the {European} Speech Communication Association Workshop on Speech Synthesis, Autrans, {September}}},
year = {1989}
}
@phdthesis{tahmasebi2013models,
author = {Tahmasebi, Nina},
interhash = {53616df94218a34a24b77ace30e618e0},
intrahash = {143920ef1c49abe416bfb77716259976},
school = {Gottfried Wilhelm Leibniz Universität Hannover},
title = {Models and Algorithms for Automatic Detection of Language Evolution},
url = {http://edok01.tib.uni-hannover.de/edoks/e01dh13/771705034.pdf},
year = {2013}
}
@book{syrjamaki_sins_2011,
address = {Tampere},
author = {Syrjämäki, Sami},
publisher = {Tampere University Press},
shorttitle = {Sins of a historian},
title = {Sins of a historian: {Perspectives} on the problem of anachronism},
year = {2011}
}
@phdthesis{stern1921swift,
address = {Gothenburg},
author = {Stern, Nils Gustaf},
page = {298},
school = {Göteborgs universitet},
title = {Swift, swiftly and their synonyms. {A{}} contribution to semantic analysis and theory.},
year = {1921}
}
@phdthesis{spaerckjones,
address = {Cambridge},
author = {Spärck Jones, Karen},
school = {University of Cambridge},
title = {Synonymy and Semantic Classification},
type = {{D.Phil.}\ dissertation},
year = {1964}
}
@phdthesis{ramsey17,
author = {Rachel Ramsey},
school = {Northumbria University},
title = {An exemplar-theoretic account of word senses},
year = {2017}
}
@phdthesis{mague2005changements,
author = {Magué, Jean-Philippe},
title = {Changements sémantiques et cognition: {{D}}ifférentes méthodes pour différentes échelles temporelles},
year = {2005},
address = {Lyon},
school = {Université Lumière}
}
@phdthesis{koplenig2016,
author = {Alexander Koplenig},
school = {Universität Mannheim},
title = {Analyzing lexical change in diachronic corpora},
url = {http://nbn-resolving.de/urn:nbn:de:bsz:mh39-48905},
year = {2016}
}
@phdthesis{keuleers08,
author = {Keuleers, Emmanuel},
school = {Universiteit Antwerpen},
title = {Memory-based learning of inflectional morphology},
year = {2008}
}
@phdthesis{keersmaekers,
author = {Keersmaekers, Alek},
school = {KU Leuven},
title = {A Computational Approach to the {{Greek}} Papyri: {{D}}eveloping a Corpus to Study Variation and Change in the Post-Classical {{Greek}} Complementation System},
year = {2020}
}
@phdthesis{hengchen2017does,
address = {Brussels},
author = {Hengchen, Simon},
school = {Université libre de Bruxelles},
title = {When Does it Mean? {D}etecting Semantic Change in Historical Texts},
year = {2017}
}
@phdthesis{frermann,
address = {Edinburgh},
author = {Frermann, Lea},
school = {University of Edinburgh},
title = {{Bayesian} Models of Category Acquisition and Meaning Development},
year = {2017}
}
@phdthesis{dubossarsky-2018,
author = {Dubossarsky, Haim},
school = {Hebrew University of Jerusalem, Edmond and Lily Safra Center for Brain Sciences},
title = {Semantic change at large: {{A}} computational approach for semantic change research},
year = {2018}
}
@phdthesis{baart,
address = {Leiden},
author = {Baart, Joan L. G.},
school = {Leiden University},
title = {Focus, Syntax, and Accent Placement},
year = {1987}
}
@article{tsakalidis2020autoencoding,
journal = {arXiv preprint 2004.13703},
author = {Adam Tsakalidis and Maria Liakata},
title = {Autoencoding Word Representations through Time for Semantic Change Detection},
year = {2020}
}
@article{torresrivera2020detecting,
journal = {arXiv preprint 2001.05285},
author = {Andrés Torres-Rivera and Juan-Manuel Torres-Moreno},
title = {Detecting New Word Meanings: {{A}} Comparison of Word Embedding Models in {Spanish}},
year = {2020}
}
@misc{taylor2000change,
author = {Taylor, Wayne A.},
title = {Change-point analysis: {{A}} powerful new tool for detecting changes},
year = {2000}
}
@misc{stinchcombe1968,
author = {Stinchcombe, Arthur},
publisher = {New York: Harcourt},
title = {L.(1968): {{C}}onstructing Social Theories}
}
@book{oed,
url = {http://dictionary.oed.com},
title = {The {{Oxford} {English} Dictionary}},
edition = {2},
year = {1989},
editor = {John Simpson and Edmund Weiner}
}
@misc{liberman-2013,
author = {Liberman, Mark},
howpublished = {Blog posting on Language Log, 2013-02-03},
note = {{\url{http://languagelog.ldc.upenn.edu/nll/?p=4456}}},
title = {{\sout{Word}} {String} frequency distributions},
year = {2013}
}
@misc{flynn-2006,
author = {Flynn, James R.},
howpublished = {Lecture at the Psychometrics Centre, Cambridge Judge Business School, University of Cambridge},
note = {{\url{https://www.psychometrics.cam.ac.uk/about-us/directory/beyond-the-flynn-effect}}},
title = {Beyond the {Flynn} effect: {Solution} to all outstanding problems except enhancing wisdom},
year = {2006}
}
@misc{davies2008corpus,
author = {Davies, Mark},
title = {The corpus of contemporary {A}merican {{E}}nglish ({{COCA}}): 560 million words, 1990-present},
year = {2008}
}
@misc{cognatesuban:robyn_speer_2018_1443582,
author = {Robyn Speer and Joshua Chin and Andrew Lin and Sara Jewett and Lance Nathan},
title = {{LuminosoI}nsight/wordfreq: {{V}}2.2},
doi = {10.5281/zenodo.1443582},
year = {2018}
}
@misc{chang2011lda,
author = {Chang, Jonathan},
publisher = {R},
title = {{lda}: {{C}}ollapsed {Gibbs} sampling methods for topic models},
year = {2011}
}
@misc{ancientgreekwordnet,
author = {Boschetti, Federico and Del Gratta, Riccardo and Diakoff, Harry},
copyright = {Creative Commons - Attribution-{ShareAlike} 4.0 International ({CC} {BY}-{SA} 4.0)},
note = {{ILC}-{CNR} for {CLARIN}-{IT} repository hosted at Institute for Computational Linguistics {A. Zampolli}, National Research Council, in Pisa},
title = {Open Ancient {Greek} {{WordN}et} 0.5},
year = {2016}
}
@mastersthesis{koch2015,
author = {Gregory Koch},
school = {University of Toronto},
title = {Siamese Neural Networks for {One}-Shot Image Recognition},
year = {2015}
}
@mastersthesis{cahn,
author = {Cahn, Janet E.},
school = {MIT},
title = {Generating Expression in Synthesized Speech},
year = {1989}
}
@inproceedings{kilgarriff2008,
address = {Barcelona},
author = {Adam Kilgarriff and Husák Miloš and McAdam, Katy and Rundell, Michael and Rychlý Pavel},
booktitle = {Proceedings of the {{XIII} {EURALEX}} International Congress},
editor = {Bernal, E. and DeCesaris, J.},
pages = {425--433},
publisher = {Universitat Pompeu Fabra},
title = {{{GDEX}}: {Automatically} Finding Good Dictionary Examples in a Corpus},
year = {2008}
}
@inproceedings{zosa2020disappearing,
author = {Zosa, Elaine and Hengchen, Simon and Marjanen, Jani and Pivovarova, Lidia and Tolonen, Mikko},
booktitle = {{Book} of abstracts of the 2020 Digital {Humanities} in the {Nordic} Countries ({{DHN}}) conference},
title = {Disappearing Discourses: {Avoiding} anachronisms and teleology with data-driven methods in studying digital newspaper collections},
year = {2020}
}
@inproceedings{zhou-etal-2020-temporalteller,
address = {Barcelona},
author = {Zhou, Jinan and Li, Jiaxin},
booktitle = {{Proceedings of the 14th International Workshop on Semantic Evaluation}},
publisher = {ACL},
title = {{TemporalTeller at SemEval-2020 Task 1}: {U}nsupervised Lexical Semantic Change Detection with Temporal Reference},
year = {2020}
}
@inproceedings{zhewei,
address = {Montréal},
author = {Sun, Z. and Zemel, R. and Xu, Y.},
booktitle = {Proceedings of the forty-first {A}nnual {M}eeting of the {C}ognitive {S}cience {S}ociety},
title = {Slang generation as categorization},
year = {2019}
}
@inproceedings{zhangwsdm,
address = {Melbourne},
author = {Zhang, Yating and Jatowt, Adam and Bhowmick, S. Sourav and Matsumoto, Yuji},
booktitle = {{WSDM}2019},
publisher = {ACM},
title = {{{ATAR}}: {Aspect}-based Temporal Analog Retrieval System for Document Archives},
year = {2019}
}
@inproceedings{zhang:2017:tar:3132847.3132917,
acmid = {3132917},
address = {Singapore},
author = {Zhang, Yating and Jatowt, Adam and Tanaka, Katsumi},
doi = {10.1145/3132847.3132917},
isbn = {978-1-4503-4918-5},
numpages = {10},
pages = {717--726},
publisher = {ACM},
series = {CIKM '17},
title = {Temporal Analog Retrieval Using Transformation over Dual Hierarchical Structures},
year = {2017}
}
@inproceedings{zhang2016towards,
author = {Zhang, Yating and Jatowt, Adam and Tanaka, Katsumi},
booktitle = {{International Conference on Big Data 2016 }},
pages = {823--832},
publisher = {IEEE},
title = {Towards understanding word embeddings: {{A}}utomatically explaining similarity of terms},
year = {2016}
}
@inproceedings{zhang2016detecting,
author = {Zhang, Yating and Jatowt, Adam and Tanaka, Katsumi},
booktitle = {Proceedings of {{WWW}} 2016},
pages = {649--660},
publisher = {ACM},
title = {Detecting evolution of concepts based on cause-effect relationships in online reviews},
year = {2016}
}
@inproceedings{zhang2010evolutionary,
author = {Zhang, Jianwen and Song, Yangqiu and Zhang, Changshui and Liu, Shixia},
booktitle = {Proceedings of the 16th {ACM} {SIGKDD} international conference on Knowledge discovery and data mining},
pages = {1079--1088},
title = {Evolutionary hierarchical dirichlet processes for multiple correlated time-varying corpora},
year = {2010}
}
@inproceedings{zhang2004interpreting,
author = {Zhang, Ying and Vogel, Stephan and Waibel, Alex},
booktitle = {Proceedings of {{LREC}} 2004},
publisher = {ELRA},
title = {Interpreting bleu/nist scores: {{H}}ow much improvement do we need to have a better system?},
year = {2004}
}
@inproceedings{zanzotto2010,
author = {Fabio~Massimo Zanzotto and Ioannis Korkontzelos and Francesca Fallucchi and Suresh Manandhar},
booktitle = {Proceedings of {{COLING}} 2010},
publisher = {ACL},
title = {Estimating Linear Models for Compositional Distributional Semantics},
year = 2010, address = {Beijing}
}
@inproceedings{zampieri2016modeling,
address = {Portorož},
author = {Marcos Zampieri and Shervin Malmasi and Mark Dras},
booktitle = {Proceedings of {{LREC}} 2016},
editor = {Nicoletta Calzolari and others},
publisher = {ELRA},