-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathstats-nlp.js
10187 lines (10187 loc) · 242 KB
/
stats-nlp.js
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
var date = "Sat Jan 18 2025 23:08:22 GMT-0500 (EST)"
var data = [
{
"name": "Eugene Agichtein",
"url": "https://scholar.google.com/citations?user=3BX3vWcAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=3BX3vWcAAAAJ&citpid=9",
"affiliation": "Professor of Computer Science, Emory University and Amazon Scholar",
"keywords": [
"Information Retrieval",
"Web Search",
"Conversational AI",
"Natural Language Processing"
],
"stats": {
"citations": [
"15758",
"3621"
],
"hindex": [
"52",
"30"
],
"i10index": [
"115",
"63"
]
},
"year": "2002"
},
{
"name": "Eneko Agirre",
"url": "https://scholar.google.com/citations?user=kSuqts0AAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=kSuqts0AAAAJ&citpid=4",
"affiliation": "Full Professor, Director of HiTZ center, member of Ixa, University of the Basque Country (UPV/EHU)",
"keywords": [
"Natural Language Processing",
"Computational Linguistics",
"Deep Learning",
"Machine Learning",
"Artificial Intelligence"
],
"stats": {
"citations": [
"23601",
"11506"
],
"hindex": [
"64",
"38"
],
"i10index": [
"184",
"90"
]
},
"year": "2000"
},
{
"name": "Aishwarya Agrawal",
"url": "https://scholar.google.com/citations?user=znH6xJ8AAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=znH6xJ8AAAAJ&citpid=1",
"affiliation": "University of Montreal, Mila, Google DeepMind",
"keywords": [
"Artificial Intelligence",
"Multimodal Vision-Language",
"Computer Vision",
"NLP",
"Deep Learning"
],
"stats": {
"citations": [
"8968",
"6791"
],
"hindex": [
"14",
"13"
],
"i10index": [
"17",
"16"
]
},
"year": "2015"
},
{
"name": "Waleed Ammar",
"url": "https://scholar.google.com/citations?user=4NZ58cQAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=4NZ58cQAAAAJ&citpid=2",
"affiliation": "Google",
"keywords": [],
"stats": {
"citations": [
"5391",
"3851"
],
"hindex": [
"24",
"19"
],
"i10index": [
"34",
"27"
]
},
"year": "2012"
},
{
"name": "Sophia Ananiadou",
"url": "https://scholar.google.com/citations?user=quhi-K0AAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=quhi-K0AAAAJ&citpid=6",
"affiliation": "Professor, Computer Science, Manchester University, National Centre for Text Mining",
"keywords": [
"Natural Language Processing",
"Text Mining",
"Computational Linguistics",
"Artificial Intelligence"
],
"stats": {
"citations": [
"23062",
"9922"
],
"hindex": [
"74",
"47"
],
"i10index": [
"283",
"170"
]
},
"year": "2000"
},
{
"name": "Jacob Andreas",
"url": "https://scholar.google.com/citations?user=dnZ8udEAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=dnZ8udEAAAAJ&citpid=5",
"affiliation": "MIT",
"keywords": [
"NLP",
"ML"
],
"stats": {
"citations": [
"11935",
"9601"
],
"hindex": [
"51",
"46"
],
"i10index": [
"92",
"86"
]
},
"year": "2013"
},
{
"name": "Yoav Artzi",
"url": "https://scholar.google.com/citations?user=XuQW7ogAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=XuQW7ogAAAAJ&citpid=9",
"affiliation": "Cornell University; ASAPP",
"keywords": [
"Language Modeling",
"Natural Language Processing",
"Machine Learning",
"Artificial Intelligence"
],
"stats": {
"citations": [
"13482",
"11334"
],
"hindex": [
"37",
"32"
],
"i10index": [
"56",
"53"
]
},
"year": "2013"
},
{
"name": "Isabelle Augenstein",
"url": "https://scholar.google.com/citations?user=DjJp0dcAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=DjJp0dcAAAAJ&citpid=6",
"affiliation": "Full Professor, Department of Computer Science, University of Copenhagen",
"keywords": [
"Natural Language Processing",
"Machine Learning"
],
"stats": {
"citations": [
"7698",
"6404"
],
"hindex": [
"45",
"42"
],
"i10index": [
"100",
"86"
]
},
"year": "2014"
},
{
"name": "Ahmed Hassan Awadallah",
"url": "https://scholar.google.com/citations?user=sNGk-9MAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=sNGk-9MAAAAJ&citpid=6",
"affiliation": "Microsoft Research",
"keywords": [
"Natural Language Processing",
"Machine Learning",
"Information Retrieval"
],
"stats": {
"citations": [
"15145",
"10567"
],
"hindex": [
"55",
"45"
],
"i10index": [
"158",
"130"
]
},
"year": "2010"
},
{
"name": "Timothy Baldwin",
"url": "https://scholar.google.com/citations?user=wjBD1dkAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=wjBD1dkAAAAJ&citpid=8",
"affiliation": "MBZUAI and The University of Melbourne",
"keywords": [
"computational linguistics",
"natural language processing",
"artificial intelligence"
],
"stats": {
"citations": [
"27726",
"14077"
],
"hindex": [
"77",
"55"
],
"i10index": [
"314",
"202"
]
},
"year": "2003"
},
{
"name": "Miguel Ballesteros",
"url": "https://scholar.google.com/citations?user=lhDwr-AAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=lhDwr-AAAAAJ&citpid=22",
"affiliation": "Principal Applied Scientist, Amazon",
"keywords": [
"Natural Language Processing",
"Deep Learning",
"Computational Linguistics"
],
"stats": {
"citations": [
"12231",
"7420"
],
"hindex": [
"37",
"30"
],
"i10index": [
"69",
"52"
]
},
"year": "2013"
},
{
"name": "Mohit Bansal",
"url": "https://scholar.google.com/citations?user=DN8QtscAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=DN8QtscAAAAJ&citpid=5",
"affiliation": "Parker Distinguished Professor, Computer Science, UNC Chapel Hill",
"keywords": [
"Natural Language Processing",
"Computer Vision",
"Machine Learning",
"Multimodal AI"
],
"stats": {
"citations": [
"31120",
"27194"
],
"hindex": [
"83",
"79"
],
"i10index": [
"238",
"226"
]
},
"year": "2015"
},
{
"name": "Asma Ben Abacha",
"url": "https://scholar.google.com/citations?user=KO6_r0cAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=KO6_r0cAAAAJ&citpid=6",
"affiliation": "Microsoft",
"keywords": [
"Artificial Intelligence",
"Natural Language Processing",
"Medical Informatics"
],
"stats": {
"citations": [
"3884",
"2984"
],
"hindex": [
"33",
"31"
],
"i10index": [
"59",
"50"
]
},
"year": "2011"
},
{
"name": "Meriem Beloucif",
"url": "https://scholar.google.com/citations?user=yRo5n7cAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=yRo5n7cAAAAJ&citpid=4",
"affiliation": "Assistant Professor, Uppsala University",
"keywords": [
"NLP for low-resource Languages",
"Neural Machine Translation",
"Statistical Machine Translation",
"Machine"
],
"stats": {
"citations": [
"528",
"449"
],
"hindex": [
"11",
"9"
],
"i10index": [
"12",
"8"
]
},
"year": "2013"
},
{
"name": "Emily M. Bender",
"url": "https://scholar.google.com/citations?user=9r_f1w4AAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=9r_f1w4AAAAJ&citpid=3",
"affiliation": "Professor, Dept of Linguistics, University of Washington",
"keywords": [
"Computational Linguistics",
"Linguistics"
],
"stats": {
"citations": [
"15395",
"10963"
],
"hindex": [
"38",
"24"
],
"i10index": [
"81",
"48"
]
},
"year": "2000"
},
{
"name": "Jonathan Berant",
"url": "https://scholar.google.com/citations?user=xCYHonIAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=xCYHonIAAAAJ&citpid=4",
"affiliation": "Associate Professor, Tel-Aviv University, Visiting Faculty Researcher, Google DeepMInd",
"keywords": [
"Natural Language Processing",
"Machine Learning"
],
"stats": {
"citations": [
"17383",
"14182"
],
"hindex": [
"57",
"52"
],
"i10index": [
"116",
"104"
]
},
"year": "2011"
},
{
"name": "Shane Bergsma",
"url": "https://scholar.google.com/citations?user=nrE1OroAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=nrE1OroAAAAJ&citpid=17",
"affiliation": "Cerebras Systems",
"keywords": [
"Machine Learning",
"Artificial Intelligence",
"Natural Language Processing"
],
"stats": {
"citations": [
"2402",
"612"
],
"hindex": [
"24",
"13"
],
"i10index": [
"37",
"19"
]
},
"year": "2005"
},
{
"name": "Steven Bethard",
"url": "https://scholar.google.com/citations?user=sXM8J5EAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=sXM8J5EAAAAJ&citpid=4",
"affiliation": "Associate Professor, University of Arizona",
"keywords": [
"Natural Language Processing",
"Computational Linguistics",
"Machine Learning",
"Information Extraction",
"Health Informatics"
],
"stats": {
"citations": [
"18877",
"9548"
],
"hindex": [
"51",
"35"
],
"i10index": [
"112",
"80"
]
},
"year": "2009"
},
{
"name": "Chandra Bhagavatula",
"url": "https://scholar.google.com/citations?user=AsgHp14AAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=AsgHp14AAAAJ&citpid=5",
"affiliation": "Allen Institute for Artificial Intelligence",
"keywords": [
"Natural language processing",
"Commonsense Reasoning",
"Information Extraction",
"Artificial Intelligence",
"Machine Learning"
],
"stats": {
"citations": [
"10170",
"9550"
],
"hindex": [
"38",
"38"
],
"i10index": [
"51",
"50"
]
},
"year": "2017"
},
{
"name": "Archna Bhatia",
"url": "https://scholar.google.com/citations?user=CGkSPL0AAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=CGkSPL0AAAAJ&citpid=2",
"affiliation": "Institute for Human and Machine Cognition",
"keywords": [
"Natural Language Processing",
"natural language understanding",
"speech processing for clinical applications",
"Linguistics"
],
"stats": {
"citations": [
"1127",
"521"
],
"hindex": [
"13",
"11"
],
"i10index": [
"17",
"11"
]
},
"year": "2009"
},
{
"name": "Pushpak Bhattacharyya",
"url": "https://scholar.google.com/citations?user=vvg-pAkAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=vvg-pAkAAAAJ&citpid=6",
"affiliation": "Professor of Computer Science and Engineering, IIT Bombay",
"keywords": [
"Natural Language Processing",
"Machine Learning",
"Machine Translation",
"Cross Lingual IR",
"Word Sense Disambiguation"
],
"stats": {
"citations": [
"17738",
"11603"
],
"hindex": [
"63",
"48"
],
"i10index": [
"406",
"290"
]
},
"year": "2003"
},
{
"name": "Chris Biemann",
"url": "https://scholar.google.com/citations?user=BdwP-3QAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=BdwP-3QAAAAJ&citpid=4",
"affiliation": "Professor for Language Technology, University of Hamburg",
"keywords": [
"language technology",
"natural language processing",
"computational linguistics",
"information retrieval",
"cognitive computing"
],
"stats": {
"citations": [
"11816",
"6856"
],
"hindex": [
"51",
"39"
],
"i10index": [
"178",
"124"
]
},
"year": "2006"
},
{
"name": "Lidong Bing",
"url": "https://scholar.google.com/citations?user=_oYzrzAAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=_oYzrzAAAAAJ&citpid=5",
"affiliation": "Shanda Group, Alibaba DAMO, Tencent, CMU, CUHK",
"keywords": [
"Natural Language Processing",
"Large Language Models",
"Large Multimodal Models"
],
"stats": {
"citations": [
"13120",
"11896"
],
"hindex": [
"55",
"51"
],
"i10index": [
"141",
"125"
]
},
"year": "2015"
},
{
"name": "Yonatan Bisk",
"url": "https://scholar.google.com/citations?user=bWoGh8UAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=bWoGh8UAAAAJ&citpid=11",
"affiliation": "Assistant Professor, Carnegie Mellon University",
"keywords": [
"Natural Language Processing",
"Embodied AI",
"Robot Learning"
],
"stats": {
"citations": [
"12782",
"11947"
],
"hindex": [
"41",
"41"
],
"i10index": [
"71",
"66"
]
},
"year": "2015"
},
{
"name": "Alexander Bondarenko",
"url": "https://scholar.google.com/citations?user=VfqzIMcAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=VfqzIMcAAAAJ&citpid=2",
"affiliation": "Leipzig University, Friedrich-Schiller-Universität Jena",
"keywords": [
"Argumentation",
"NLP",
"information retrieval",
"question answering"
],
"stats": {
"citations": [
"719",
"710"
],
"hindex": [
"14",
"14"
],
"i10index": [
"19",
"19"
]
},
"year": "2019"
},
{
"name": "Claire Bonial",
"url": "https://scholar.google.com/citations?user=PqD57uMAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=PqD57uMAAAAJ&citpid=4",
"affiliation": "Computational Linguist, ARL",
"keywords": [
"Natural Language Processing"
],
"stats": {
"citations": [
"3329",
"1995"
],
"hindex": [
"23",
"18"
],
"i10index": [
"40",
"28"
]
},
"year": "2010"
},
{
"name": "Kalina Bontcheva",
"url": "https://scholar.google.co.uk/citations?user=kUbDCnMAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=kUbDCnMAAAAJ&citpid=2",
"affiliation": "Professor of Text Analytics, University of Sheffield",
"keywords": [
"Natural Language Processing"
],
"stats": {
"citations": [
"18466",
"7067"
],
"hindex": [
"64",
"42"
],
"i10index": [
"195",
"110"
]
},
"year": "2001"
},
{
"name": "Ondřej Bojar",
"url": "https://scholar.google.com/citations?user=G_65vFsAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=G_65vFsAAAAJ&citpid=2",
"affiliation": "Charles University, Faculty of Mathematics and Physics, Institute of Formal and Applied Linguistics",
"keywords": [
"machine translation",
"speech translation",
"parsing",
"treebanking"
],
"stats": {
"citations": [
"18690",
"9056"
],
"hindex": [
"44",
"34"
],
"i10index": [
"160",
"95"
]
},
"year": "2007"
},
{
"name": "Johan Bos",
"url": "https://scholar.google.ca/citations?user=Pkj8OSoAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=Pkj8OSoAAAAJ&citpid=12",
"affiliation": "Professor of Computational Semantics, University of Groningen",
"keywords": [
"Computational Semantics",
"Computational Humanities"
],
"stats": {
"citations": [
"9029",
"2462"
],
"hindex": [
"47",
"26"
],
"i10index": [
"123",
"61"
]
},
"year": "1995"
},
{
"name": "Antal van den Bosch",
"url": "https://scholar.google.com/citations?user=LCuzJyYAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=LCuzJyYAAAAJ&citpid=9",
"affiliation": "Utrecht University",
"keywords": [
"Computational Linguistics",
"Digital Humanities",
"Artificial Intelligence",
"Machine Learning",
"Text Analytics"
],
"stats": {
"citations": [
"11309",
"2890"
],
"hindex": [
"46",
"26"
],
"i10index": [
"185",
"68"
]
},
"year": "1996"
},
{
"name": "Antoine Bosselut",
"url": "https://scholar.google.com/citations?user=XD9hkJwAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=XD9hkJwAAAAJ&citpid=2",
"affiliation": "EPFL",
"keywords": [
"Natural Language Processing",
"Machine Learning",
"Commonsense Representation and Reasoning"
],
"stats": {
"citations": [
"11747",
"11448"
],
"hindex": [
"30",
"30"
],
"i10index": [
"54",
"52"
]
},
"year": "2018"
},
{
"name": "Florian Boudin",
"url": "https://scholar.google.ca/citations?user=Vk68rbkAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=Vk68rbkAAAAJ&citpid=9",
"affiliation": "Associate Professor, LS2N - Nantes Université and JFLI - National Institute of Informatics / Tokyo",
"keywords": [
"Natural Language Processing",
"Information Retrieval",
"Computational Linguistics"
],
"stats": {
"citations": [
"2428",
"1441"
],
"hindex": [
"20",
"15"
],
"i10index": [
"37",
"23"
]
},
"year": "2007"
},
{
"name": "Jordan Boyd-Graber",
"url": "https://scholar.google.com/citations?user=BT4XTP4AAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=BT4XTP4AAAAJ&citpid=4",
"affiliation": "Full Professor, University of Maryland",
"keywords": [
"Machine Learning",
"Computational Linguistics",
"Natural Language Processing",
"Topic Models",
"Question Answering"
],
"stats": {
"citations": [
"15731",
"9097"
],
"hindex": [
"55",
"42"
],
"i10index": [
"133",
"106"
]
},
"year": "2009"
},
{
"name": "Samuel R. Bowman",
"url": "https://scholar.google.ca/citations?user=kV9XRxYAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=kV9XRxYAAAAJ&citpid=10",
"affiliation": "Anthropic and NYU",
"keywords": [
"ai alignment",
"natural language processing",
"large language models",
"computational linguistics"
],
"stats": {
"citations": [
"42336",
"37553"
],
"hindex": [
"61",
"59"
],
"i10index": [
"108",
"102"
]
},
"year": "2016"
},
{
"name": "Leonid Boytsov",
"url": "https://scholar.google.com/citations?user=I79y2i4AAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=I79y2i4AAAAJ&citpid=4",
"affiliation": "Amazon AWS AI Labs",
"keywords": [
"natural language processing",
"information retrieval",
"computer vision",
"nearest neighbor search"
],
"stats": {
"citations": [
"1815",
"1020"
],
"hindex": [
"17",
"14"
],
"i10index": [
"23",
"19"
]
},
"year": "2012"
},
{
"name": "Phil Blunsom",
"url": "https://scholar.google.com/citations?user=eJwbbXEAAAAJ",
"photo": "http://scholar.google.com/citations/images/avatar_scholar_128.png",
"affiliation": "Cohere & St Hugh’s College Oxford",
"keywords": [
"Artificial Intelligence",
"Machine Learning",
"Computational Linguistics",
"Natural Language Processing"
],
"stats": {
"citations": [
"29459",
"16749"
],
"hindex": [
"61",
"48"
],
"i10index": [
"127",
"96"
]
},
"year": "2009"
},
{
"name": "Jill Burstein",
"url": "https://scholar.google.com/citations?user=bDKurOUAAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=bDKurOUAAAAJ&citpid=4",
"affiliation": "Duolingo",
"keywords": [
"Natural Language Processing",
"Educational Technology",
"Language Assessment"
],
"stats": {
"citations": [
"10192",
"3346"
],
"hindex": [
"51",
"32"
],
"i10index": [
"103",
"69"
]
},
"year": "2000"
},
{
"name": "Bill Byrne",
"url": "https://scholar.google.com/citations?user=BVUcMU4AAAAJ",
"photo": "http://scholar.google.comhttps://scholar.googleusercontent.com/citations?view_op=view_photo&user=BVUcMU4AAAAJ&citpid=4",
"affiliation": "Professor of Information Engineering, Cambridge University",
"keywords": [
"speech recognition",
"machine translation",
"speech synthesis",
"machine learning"
],
"stats": {
"citations": [
"7451",
"2043"
],
"hindex": [
"45",
"23"
],
"i10index": [
"148",