generated from mmistakes/mm-github-pages-starter
-
Notifications
You must be signed in to change notification settings - Fork 19
/
authors.yml
1119 lines (1060 loc) · 29.5 KB
/
authors.yml
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
# # To get started: Copy this template profile below and start editing.
# John Doe:
# name: "John Doe"
# role: "PhD"
# avatar: "/assets/images/bio/placeholder/martlet.jpeg"
# date: "Sep 2030"
# advisor: "John Doe Sr."
# bio: "Just some cool student"
# note: "Co-advised by Amasa L."
# alumni: true
# new_role: "Professing at Leland Junior S. University"
# links:
# - label: "Website"
# url: "https://john-doe.github.io/"
# - label: "GitHub"
# url: "https://github.com/john-doe"
# - label: "Twitter"
# url: "https://twitter.com/john-doe"
# - label: "Scholar"
# icon: "fas fa-fw fa-graduation-cap"
# url: "https://scholar.google.com/citations?user=<user_id>"
David Adelani:
bio: "Assistant Professor"
name: David Adelani
role: Faculty
username: david.adelani
semantic_scholar_id: '2518906'
avatar: /assets/images/bio/David Adelani.avatar.webp
date: Jan 2024
alumni: false
links:
- label: Website
url: https://dadelani.github.io/
- label: Twitter
url: https://twitter.com/davlanade
- label: GitHub
url: https://github.com/dadelani
- label: Scholar
url: https://scholar.google.com/citations?user=W9sTkS0AAAAJ
Vaibhav Adlakha:
name: Vaibhav Adlakha
role: PhD
username: vaibhav.adlakha
semantic_scholar_id: '1666183192'
avatar: /assets/images/bio/Vaibhav Adlakha.avatar.webp
advisor: Siva Reddy
date: Fall 2020
bio: Interested in knowledge-grounded conversations
alumni: false
links:
- label: Twitter
url: https://twitter.com/vaibhav_adlakha
- label: GitHub
url: https://github.com/vaibhavad
- label: Scholar
url: https://scholar.google.com/citations?user=0qmIfUoAAAAJ
Malik H. Altakrori:
name: Malik H. Altakrori
role: PhD
avatar: /assets/images/bio/malikaltakrori.avatar.webp
semantic_scholar_id: '51935928'
advisor: Jackie Cheung, Benjamin Fung
date: Sept. 2017
bio: Interested in writing style analysis, authorship identification and authorship
obfuscation using DL/NLP
alumni: true
new_role: Postdoc at IBM
links:
- label: Website
url: https://malikaltakrori.github.io/
- label: Twitter
url: https://twitter.com/AltakroriM
- label: GitHub
url: https://github.com/malikaltakrori
- label: Scholar
url: https://www.semanticscholar.org/author/Malik-H.-Altakrori/51935928
Rahul Aralikatte:
name: Rahul Aralikatte
role: Postdoc
semantic_scholar_id: '19509693'
avatar: /assets/images/bio/Rahul Aralikatte.avatar.webp
advisor: Jackie Cheung
date: Aug-2022
bio: Text summarization and low-resource learning
alumni: true
links:
- label: Website
url: http://www.rahular.com/
- label: GitHub
url: https://github.com/rahular
- label: Scholar
url: https://scholar.google.com/citations?user=UbcNXvQAAAAJ&hl=en
Kushal Arora:
name: Kushal Arora
role: PhD
avatar: /assets/images/bio/Kushal Arora.avatar.webp
advisor: Jackie Cheung
alumni: false
links:
- label: Website
url: https://kushalarora.github.io/
Ines Arous:
name: Ines Arous
role: Postdoc
avatar: /assets/images/bio/Ines Arous.avatar.webp
advisor: Jackie Cheung
date: Nov 2022
alumni: false
links:
- label: Website
url: https://inesarous.github.io/
- label: Scholar
url: https://scholar.google.com/citations?user=RWXHLa8AAAAJ&hlr=UbcNXvQAAAAJ&hl=en
David Austin:
name: David Austin
role: Master
username: david.austin
semantic_scholar_id: '2299329319'
avatar: /assets/images/bio/David Austin.jpg
advisor: Jackie Cheung
date: Fall 2024
bio: NLP, Pragmatics
alumni: false
links:
- label: Website
url: https://davaus80.github.io/
- label: Twitter
url: https://x.com/DavidAustinCS
- label: GitHub
url: https://github.com/davaus80
- label: Scholar
url: https://scholar.google.ca/citations?user=c-iLCzEAAAAJ&hl=en
Dzmitry Bahdanau:
name: Dzmitry Bahdanau
role: Adjunct Faculty
username: bahdanau
semantic_scholar_id: '3335364'
avatar: /assets/images/bio/Dzmitry Bahdanau.avatar.webp
bio: Adjunct Professor
note: Research Lead, ServiceNow Research
alumni: false
links:
- label: Scholar
url: https://scholar.google.com/citations?user=Nq0dVMcAAAAJ&hl=en&oi=ao
- label: Website
url: https://rizar.github.io/
- label: Twitter
url: https://twitter.com/dbahdanau
Parishad BehnamGhader:
name: Parishad BehnamGhader
role: PhD
semantic_scholar_id: '2101317786'
avatar: /assets/images/bio/Parishad BehnamGhader.avatar.webp
advisor: Siva Reddy
date: Jan 2022
alumni: false
links:
- label: Website
url: https://parishadbehnam.github.io
- label: GitHub
url: https://github.com/parishadbehnam
- label: Scholar
url: https://scholar.google.com/citations?user=pw9mblYAAAAJ
Mehar Bhatia:
name: Mehar Bhatia
role: PhD
username: mehar.bhatia
semantic_scholar_id: '2057417892'
avatar: /assets/images/bio/Mehar Bhatia.jpg
advisor: Siva Reddy
date: Fall 2024
note: Co-advised by Vered Shwartz (UBC)
alumni: false
links:
- label: Website
url: https://meharbhatia.github.io/
- label: Twitter
url: https://twitter.com/bhatia_mehar
- label: GitHub
url: https://meharbhatia.github.io/
Laurestine Bradford:
name: Laurestine Bradford
role: Intern
username: laurestine.bradford
advisor: Siva Reddy, Tim O'Donnell
date: Jan 2022
bio: Language in math and connecting syntax to semantics
new_role: back to McGill
alumni: true
avatar: /assets/images/bio/Laurestine Bradford.avatar.webp
links:
- label: Website
url: https://laurestine.github.io/
- label: GitHub
url: https://github.com/laurestine/
Emanuele Bugliarello:
name: Emanuele Bugliarello
role: Intern
avatar: /assets/images/bio/Emanuele Bugliarello.avatar.webp
semantic_scholar_id: '83574123'
alumni: true
links:
- label: Website
url: https://e-bug.github.io/
advisor: Siva Reddy
date: Jan 2022
new_role: Intern at Deepmind
Meng Cao:
name: Meng Cao
role: PhD
username: caomeng
advisor: Jackie Cheung
date: Sep 2019
bio: Works on factuality/bias in NLG
alumni: false
links:
- label: Website
url: https://mcao516.github.io/
- label: GitHub
url: https://github.com/mcao516
- label: Scholar
url: https://scholar.google.com/citations?user=CvHeFv8AAAAJ&hl=en
avatar: /assets/images/bio/Meng Cao.avatar.webp
Xuanda Chen:
name: Xuanda Chen
role: Intern
advisor: Siva Reddy, Timothy J. O'Donnell
avatar: /assets/images/bio/Xuanda Chen.avatar.webp
date: Fall 2022
bio: Works on language model probing
new_role: back to McGill
alumni: true
links:
- label: Website
url: https://xdchen2.github.io/
Ziling Cheng:
name: Ziling Cheng
avatar: /assets/images/bio/Ziling Cheng.avatar.webp
role: Intern
username: ziling.cheng
advisor: Jackie CK Cheung
date: Summer 2022
alumni: false
links: []
Jackie Cheung:
name: Jackie Cheung
role: Faculty
username: cheung.ja
semantic_scholar_id: '3159752'
avatar: /assets/images/bio/Jackie Cheung.avatar.webp
date: '2015'
bio: Associate Professor
alumni: false
links:
- label: Website
url: https://www.cs.mcgill.ca/~jcheung/
- label: Scholar
url: https://scholar.google.com/citations?hl=en&user=Um-wmYQAAAAJ
Andre Cianflone:
name: Andre Cianflone
role: PhD
avatar: /assets/images/bio/Andre Cianflone.avatar.webp
advisor: Jackie Cheung
alumni: false
links:
- label: Website
url: https://scholar.google.ca/citations?user=NAS_x_QAAAAJ&hl=en
Maxime Darrin:
name: Maxime Darrin
role: PhD
avatar: /assets/images/bio/Maxime Darrin.avatar.webp
advisor: Jackie Cheung
date: Fall 2023
alumni: false
links:
- label: Website
url: https://icannos.github.io/
Yue Dong:
name: Yue Dong
role: PhD
avatar: /assets/images/bio/Yue Dong.avatar.webp
advisor: Jackie Cheung
new_role: Assistant Professor at UC Riverside
alumni: true
links:
- label: Website
url: https://yuedong.netlify.app/
- label: Twitter
url: https://twitter.com/yuedongcs
Bonaventure Dossou:
name: Bonaventure Dossou
role: PhD
avatar: /assets/images/bio/Bonaventure Dossou.avatar.webp
advisor: Jackie Cheung
date: Winter 2024
alumni: false
links:
- label: Website
url: https://bonaventuredossou.github.io/
Amanda Doucette:
name: Amanda Doucette
role: PhD
advisor: Timothy J. O'Donnell
date: Fall 2020
bio: Works on computational phonology
alumni: false
links:
- label: Website
url: https://www.amandadoucette.com
- label: GitHub
url: https://github.com/amnda-d
- label: Scholar
url: https://scholar.google.com/citations?user=KpJRQbsAAAAJ&hl=en
Nouha Dziri:
name: Nouha Dziri
role: Intern
avatar: /assets/images/bio/Nouha Dziri.avatar.webp
semantic_scholar_id: '46217681'
alumni: true
links:
- label: Website
url: https://webdocs.cs.ualberta.ca/~dziri/
advisor: Siva Reddy
date: May 2021
new_role: Postdoc at Allen Institute for AI (AI2)
Sabina Elkins:
name: Sabina Elkins
role: Master
avatar: /assets/images/bio/Sabina Elkins.avatar.webp
advisor: Jackie Cheung
date: Sep 2021
alumni: true
links:
- label: Website
url: https://sabina-elkins.github.io/
Ali Emami:
name: Ali Emami
role: PhD
avatar: /assets/images/bio/Ali Emami.avatar.webp
advisor: Jackie Cheung
new_role: Assistant Professor at Brock University
alumni: true
links:
- label: Website
url: https://www.cosc.brocku.ca/~aemami/
Aylin Erman:
name: Aylin Erman
role: Master
avatar: /assets/images/bio/Aylin Erman.avatar.webp
advisor: Jackie Cheung
date: Fall 2022
bio: Works at the intersection of Health and AI
note: Co-advised by Dan Poenaru from paediatric surgery
alumni: yulu
links:
- label: Website
url: https://aylinerma.github.io
Ori Ernst:
name: Ori Ernst
role: Postdoc
avatar: /assets/images/bio/Ori Ernst.avatar.webp
advisor: Jackie Cheung
date: Jan 2024
alumni: false
links:
- label: Website
url: https://oriern.github.io/
- label: Scholar
url: https://scholar.google.co.il/citations?hl=iw&user=_AZDDnMAAAAJ
Lorenzo Flores:
name: Lorenzo Flores
role: Master
username: lorenzo.flores
semantic_scholar_id: '2127831186'
avatar: /assets/images/bio/Lorenzo Flores.png
advisor: Jackie Cheung
date: AUG-2024
bio: 'Research Interests: NLP, Active Learning, Hallucinations'
alumni: false
links:
- label: Website
url: https://ljyflores.github.io/
- label: Twitter
url: https://x.com/ljyflores38
- label: GitHub
url: https://github.com/ljyflores
- label: Scholar
url: https://www.semanticscholar.org/author/Lorenzo-Jaime-Yu-Flores/2127831186
Jules Gagnon-Marchand:
name: Jules Gagnon-Marchand
role: Master
avatar: /assets/images/bio/Jules Gagnon-Marchand.avatar.webp
advisor: Jackie Cheung
alumni: true
links:
- label: Website
url: https://julesgm.github.io/
Emily Goodwin:
name: "Emily Goodwin"
role: "Master"
new_role: "PhD at Stanford Linguistics"
avatar: "/assets/images/bio/Emily Goodwin.avatar.webp"
date: "Jan 2020"
advisor: "Siva Reddy, Tim O'Donnell"
note: "Co-advised by Dzmitry Bahdanau"
alumni: true
links:
- label: "Website"
url: "https://emilygoodwin.github.io/"
Lucas Torroba Hennigen:
name: "Lucas Torroba Hennigen"
role: "Intern"
advisor: "Siva Reddy"
new_role: "PhD at MIT Computer Science"
avatar: "/assets/images/bio/Lucas Torroba Hennigen.avatar.webp"
date: "Fall 2021"
alumni: true
links:
- label: "Website"
url: "https://ltorroba.github.io/"
- label: "GitHub"
url: "https://github.com/ltorroba"
- label: "Scholar"
url: "https://scholar.google.com/citations?user=Zhy1N1sAAAAJ"
Jacob Louis Hoover:
name: Jacob Louis Hoover
role: PhD
username: hooverjac
semantic_scholar_id: '1729201519'
avatar: /assets/images/bio/Jacob Louis Hoover.avatar.webp
advisor: Timothy J. O'Donnell
date: Fall 2018
bio: Works on computational modelling and sentence processing.
alumni: false
links:
- label: Website
url: https://jahoo.github.io/
- label: GitHub
url: https://github.com/postylem
- label: Scholar
url: https://scholar.google.com/citations?user=koLi2TwAAAAJ
Jasper Jian:
name: Jasper Jian
role: Undergraduate
avatar: /assets/images/bio/Jasper Jian.avatar.webp
advisor: Siva Reddy
date: Summer 2022
new_role: PhD at Stanford Linguistics
bio: Works on interpreting and extracting linguistic representations from large
language models.
alumni: true
links:
- label: Website
url: https://sites.google.com/view/jasperjian
- label: GitHub
url: https://github.com/jasperjjian
Jad Kabbara:
name: Jad Kabbara
role: PhD
semantic_scholar_id: '2631301'
advisor: Jackie Cheung
bio: Works on computational pragmatics and its intersection with NLG and NLU
new_role: Postdoc at MIT
alumni: true
avatar: /assets/images/bio/Jad Kabbara.avatar.webp
links:
- label: Website
url: https://www.cs.mcgill.ca/~jkabba/
- label: Twitter
url: twitter.com/jad_kabbara
Gaurav Kamath:
name: Gaurav Kamath
role: PhD
avatar: /assets/images/bio/Gaurav Kamath.avatar.webp
advisor: Siva Reddy
date: Summer 2022
bio: Interested in the abstract semantic structures language models capture.
alumni: false
links:
- label: Website
url: https://grvkamath.github.io/
Zdeněk Kasner:
name: Zdeněk Kasner
role: Intern
semantic_scholar_id: '1805991958'
avatar: /assets/images/bio/Zdeněk Kasner.avatar.webp
advisor: Siva Reddy
date: Feb 2023
bio: Intern working on language & code generation
alumni: true
links:
- label: Website
url: https://kasnerz.github.io/
- label: Twitter
url: https://twitter.com/ZdenekKasner
- label: GitHub
url: https://github.com/kasnerz
- label: Scholar
url: https://scholar.google.cz/citations?user=6NnuRB8AAAAJ
Amirhossein Kazemnejad:
name: Amirhossein Kazemnejad
role: Master
username: amirhossein.kazemnejad
semantic_scholar_id: '1754452702'
avatar: /assets/images/bio/Amirhossein Kazemnejad.avatar.webp
advisor: Siva Reddy
date: Jan 2021
bio: Working on RL finetuning and reasoning of LLMs
alumni: false
links:
- label: Website
url: https://kazemnejad.com
Aditi Khandelwal:
name: Aditi Khandelwal
role: PhD
username: aditi.khandelwal
semantic_scholar_id: '47000634'
avatar: /assets/images/bio/Aditi Khandelwal 2.jpg
advisor: Siva Reddy
date: September 2024
bio: I work on building AI that understands and adapts to diverse languages and
cultures, making tech more inclusive for everyone.
note: Co-advised by Dr. Golnoosh Farnadi
alumni: false
links:
- label: Twitter
url: https://x.com/Aditi184
- label: GitHub
url: https://github.com/aditi184
- label: Scholar
url: https://scholar.google.com/citations?view_op=list_works&hl=en&user=mahkGIoAAAAJ
Aravind Krishnan:
name: Aravind Krishnan
role: Intern
username: aravind.krishnan
avatar: /assets/images/bio/Aravind Krishnan.webp
advisor: Siva Reddy
date: October 2024
bio: I'm a master student at Saarland University, my research interests include
language modeling and interpretability in multimodal settings
alumni: false
links:
- label: Website
url: https://krishnan-aravind.github.io/
- label: Twitter
url: https://x.com/aravindhp1999
- label: GitHub
url: https://github.com/Krishnan-Aravind
- label: Scholar
url: https://x.com/aravindhp1999
Benno Krojer:
name: "Benno Krojer"
role: "PhD"
avatar: "/assets/images/bio/Benno Krojer.avatar.webp"
alumni: false
date: "Summer 2021"
links:
- label: Website
url: https://www.bennokrojer.com/
- label: Twitter
url: https://twitter.com/benno_krojer
- label: GitHub
url: https://github.com/BennoKrojer/
- label: Scholar
url: https://scholar.google.com/citations?user=D5eyaLwAAAAJ&hl=en
advisor: Siva Reddy
bio: I work on language grounding and like Ultimate Frisbee
semantic_scholar_id: '1994697809'
Devang Kulshreshtha:
name: Devang Kulshreshtha
role: Master
semantic_scholar_id: '38321735'
avatar: /assets/images/bio/Devang Kulshreshtha.avatar.webp
advisor: Siva Reddy
date: Fall 2020
alumni: true
links:
- label: Website
url: https://geekydevu.netlify.app/
- label: GitHub
url: https://github.com/geekydevu
- label: Scholar
url: https://scholar.google.com/citations?user=-E2zJ4AAAAAJ&hl=en
new_role: Amazon AWS Applied Scientist
Ben LeBrun:
name: Ben LeBrun
role: Master
username: benjamin.lebrun
semantic_scholar_id: '2159712810'
avatar: /assets/images/bio/Ben LeBrun.avatar.webp
advisor: Timothy J. O'Donnell
date: Winter 2020
bio: Currently working on computational models of pragmatic reasoning.
alumni: false
links:
- label: Website
url: https://benlebrun.github.io/about/
- label: GitHub
url: https://github.com/benlebrun
- label: Scholar
url: https://scholar.google.ca/citations?user=QTIN18wAAAAJ&hl=en
Senyu Li:
name: Senyu Li
role: PhD
username: senyu.li
advisor: David Ifeoluwa Adelani
date: Fall 2024
alumni: false
links:
- label: Scholar
url: https://scholar.google.com/citations?user=lyhV_fgAAAAJ
Zichao Li:
name: Zichao Li
role: PhD
avatar: /assets/images/bio/zichao.avatar.webp
username: zichao.li
semantic_scholar_id: '2118274302'
advisor: Jackie Cheung, Siva Reddy
alumni: false
links:
- label: "Page"
url: "/people/zichao"
icon: "fas fa-fw fa-user"
Yu Lu Liu:
name: Yu Lu Liu
role: Master
avatar: /assets/images/bio/Yu Lu Liu.avatar.webp
advisor: Jackie Cheung
date: Fall 2022
bio: FATE + Evaluation metrics in summarization
alumni: true
links:
- label: Website
url: https://yululiu.github.io/
Xing Han Lu:
name: Xing Han Lu
role: PhD
avatar: /assets/images/bio/Xing Han Lu.avatar.webp
advisor: Siva Reddy
date: Fall 2021
alumni: false
auto_update_publications: true
links:
- label: Website
url: https://xinghanlu.com/
- label: Twitter
url: https://twitter.com/xhluca
- label: GitHub
url: https://github.com/xhluca
- label: Scholar
url: https://scholar.google.com/citations?user=ekoOv3YAAAAJ&hl=en
semantic_scholar_id: '50085049'
bio: Working on retrieval and conversational QA
Andreas Madsen:
name: "Andreas Madsen"
role: "PhD"
avatar: "/assets/images/bio/andreasmadsen.avatar.webp"
date: "Fall 2020"
advisor: Siva Reddy
bio: "Works on NLP Interpretability"
note: "Co-advised by Sarath Chandar"
alumni: false
links:
- label: "Website"
url: "https://andreasmadsen.github.io/"
- label: "GitHub"
url: "https://github.com/AndreasMadsen/"
- label: "Twitter"
url: "https://twitter.com/andreas_madsen"
- label: "LinkedIn"
url: https://www.linkedin.com/in/andreasmad/
- label: "Scholar"
icon: "fas fa-fw fa-graduation-cap"
url: "https://scholar.google.com/citations?user=X0zwAXYAAAAJ"
Nicholas Meade:
name: Nicholas Meade
role: PhD
username: nicholas.meade
semantic_scholar_id: '150247363'
avatar: /assets/images/bio/Nicholas Meade.avatar.webp
advisor: Siva Reddy
date: Fall 2020
bio: Works on bias/safety in NLP
alumni: false
links:
- label: Website
url: https://ncmeade.github.io/
- label: Twitter
url: https://twitter.com/ncmeade
- label: GitHub
url: https://github.com/ncmeade
- label: Scholar
url: https://scholar.google.com/citations?hl=en&user=-aLqCbgAAAAJ
Neshma Metri:
name: Neshma Metri
role: Undergraduate
advisor: Dr. Siva Reddy
date: Sep 2021
bio: Worked on introducing quantifiers in UDepLambda framework which converts dependency
trees into lambda calculus forms
alumni: true
avatar: /assets/images/bio/Neshma Metri.avatar.webp
links:
- label: LinkedIn
url: https://www.linkedin.com/in/neshma-metri-06b8a1162/
Aristides Milios:
name: Aristides Milios
role: Master
username: aristides.milios
semantic_scholar_id: '1516303035'
avatar: /assets/images/bio/Aristides Milios.avatar.webp
advisor: Dr. Siva Reddy
date: Fall 2021
bio: Interested in imbuing large language models with world knowledge
new_role: PhD at Polytechnique Montreal
alumni: true
links:
- label: Website
url: https://atmilios.com/
- label: Twitter
url: https://twitter.com/amilios
- label: GitHub
url: https://github.com/amilios
- label: Scholar
url: https://scholar.google.com/citations?user=5sCPodgAAAAJ
Sivan Milton:
name: Sivan Milton
role: Intern
semantic_scholar_id: '2162779012'
advisor: Siva Reddy
date: Summer 2021
bio: Works on Semantic Role Labelling
new_role: PhD at University of Edinburgh
alumni: true
links:
- label: Website
url: https://www.inf.ed.ac.uk/people/students/Sivan_Milton.html
Andrei Mircea:
name: Andrei Mircea
role: Master
semantic_scholar_id: '1683066845'
avatar: /assets/images/bio/Andrei Mircea.avatar.webp
advisor: Jackie Cheung
date: Fall 2020
new_role: PhD @ University of Montreal
alumni: true
links:
- label: Website
url: https://mirandrom.github.io/
- label: Twitter
url: https://twitter.com/mirandrom/
- label: GitHub
url: https://github.com/mirandrom/
- label: Scholar
url: https://scholar.google.com/citations?user=JhhcaCsAAAAJ
Marius Mosbach:
name: Marius Mosbach
role: Postdoc
semantic_scholar_id: '51510489'
avatar: /assets/images/bio/Marius Mosbach.avatar.webp
date: Mar 2024
bio: Working on analysis, adaptation, and generalization abilities of language models
alumni: false
links:
- label: Website
url: https://mmarius.github.io/
- label: Twitter
url: https://twitter.com/mariusmosbach
- label: Scholar
url: https://scholar.google.com/citations?user=O7RwHEkAAAAJ
advisor: Siva Reddy
Caleb Moses:
name: Caleb Moses
role: PhD
avatar: /assets/images/bio/Caleb Moses.avatar.webp
advisor: Jackie Cheung
date: Fall 2022
alumni: false
links:
- label: Website
url: https://www.linkedin.com/in/calebjdmoses/
Timothy J. O'Donnell:
name: Timothy J. O'Donnell
role: Faculty
username: odonnelt
semantic_scholar_id: '1400877758'
date: Fall 2017
alumni: false
links:
- label: Website
url: https://mcqll.org/people/odonnell.timothy/
- label: Scholar
url: https://scholar.google.com/citations?user=iYjXhYwAAAAJ&hl=en
avatar: /assets/images/bio/Timothy J. O'Donnell.avatar.webp
bio: Assistant Professor, Department of Linguistics
Jessica Ojo:
name: Jessica Ojo
role: Master
username: Jessica.Ojo
semantic_scholar_id: '2214806280'
avatar: /assets/images/bio/Jessica Ojo.jpg
advisor: David Adelani
date: Fall 2024
bio: Works on Multilingual NLP
alumni: false
links:
- label: Twitter
url: https://x.com/JessicaOjo__
- label: GitHub
url: https://github.com/JessicaOjo
- label: Scholar
url: https://scholar.google.ca/citations?user=H7PSf00AAAAJ&hl=en
Arkil Patel:
name: Arkil Patel
role: PhD
username: arkil.patel
semantic_scholar_id: '1443788809'
avatar: /assets/images/bio/Arkil Patel.avatar.webp
advisor: Dzmitry Bahdanau, Siva Reddy
date: Fall 2022
bio: Generalization in LLMs, Reasoning using LLMs
alumni: false
links:
- label: Website
url: https://arkilpatel.github.io/
- label: Twitter
url: https://twitter.com/arkil_patel
- label: GitHub
url: https://github.com/arkilpatel
- label: Scholar
url: https://scholar.google.com/citations?user=-5goVAsAAAAJ&hl=en
Cesare Spinoso-Di Piano:
name: Cesare Spinoso-Di Piano
role: PhD
avatar: /assets/images/bio/Cesare Spinoso-Di Piano.avatar.webp
advisor: Jackie Cheung
date: Winter 2024
bio: NLP + Science
alumni: false
links:
- label: Website
url: https://cesare-spinoso.github.io/
- label: Twitter
url: https://twitter.com/cesare_spinoso
- label: GitHub
url: https://github.com/cesare-spinoso
- label: Scholar
url: https://scholar.google.ca/citations?user=3XOcXPgAAAAJ&hl=en
Edoardo M. Ponti:
name: Edoardo M. Ponti
role: Postdoc
avatar: /assets/images/bio/Edoardo M. Ponti.avatar.webp
date: Jan 2021
alumni: true
links:
- label: Website
url: https://ducdauge.github.io/
- label: Twitter
url: https://twitter.com/PontiEdoardo
- label: GitHub
url: https://github.com/ducdauge
- label: Scholar
url: https://scholar.google.com/citations?user=tklL2q0AAAAJ
semantic_scholar_id: '3381663'
new_role: Lecturer (Assistant Professor) at University of Edinburgh
Elinor Poole-Dayan:
name: "Elinor Poole-Dayan"
new_role: "Master's at MIT"
role: "Undergraduate"
date: "Winter 2021"
advisor: "Siva Reddy"
avatar: "/assets/images/bio/Elinor Poole-Dayan.avatar.webp"
alumni: true
links:
- label: "LinkedIn"
url: "https://www.linkedin.com/in/elinor-poole-dayan/"
Ian Porada:
name: Ian Porada
role: PhD
username: poradaia
semantic_scholar_id: '108508643'
advisor: Jackie Cheung
date: Winter 2019
bio: Working on coreference, commonsense knowledge, semantics
alumni: false
avatar: /assets/images/bio/Ian Porada.avatar.webp
links:
- label: Website
url: https://ianporada.github.io/
- label: GitHub
url: https://github.com/ianporada
- label: Scholar
url: https://scholar.google.com/citations?user=gQxa3i8AAAAJ
Eva Portelance:
name: Eva Portelance
role: Postdoc
avatar: /assets/images/bio/Eva Portelance.avatar.webp
advisor: Timothy J. O'Donnell, Siva Reddy
date: Winter 2023
bio: Bridging the gap between AI and cognitive science
new_role: Assistant Professor at HEC Montreal
alumni: true
links:
- label: Website
url: https://evaportelance.github.io/
- label: Twitter
url: https://twitter.com/EvaPortelance
- label: GitHub
url: https://github.com/evaportelance
- label: Scholar
url: https://scholar.google.ca/citations?user=oGYlQJIAAAAJ&hl=en
Victor Prokhorov:
name: "Victor Prokhorov"
role: "Intern"
advisor: "Siva Reddy"
avatar: "/assets/images/bio/Victor Prokhorov.avatar.webp"
date: "Fall 2021"
alumni: true
links:
- label: "Website"
url: "https://victorprokhorov.github.io/"
Martin Pömsl:
name: Martin Pömsl
role: Master
semantic_scholar_id: '1712260962'
avatar: /assets/images/bio/Martin Pömsl.avatar.webp
advisor: Jackie Cheung
date: Fall 2021
alumni: true
links:
- label: Website
url: https://mpoemsl.github.io/
- label: GitHub
url: https://github.com/mpoemsl
Siva Reddy:
name: "Siva Reddy"
bio: "Assistant Professor"
semantic_scholar_id: "145732771"
auto_update_publications: true
note: "Facebook CIFAR AI Chair"
avatar: "/assets/images/bio/siva.avatar.webp"
date: "Jan 2020"
role: "Faculty"