-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeople.html
1019 lines (885 loc) · 43.5 KB
/
people.html
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
<!DOCTYPE HTML>
<!--
Introspect by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-34679733-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-34679733-4');
</script>
<title>INK Research Lab - USC Computer Science</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="INK Research Lab @ USC">
<meta name="author" content="INK Research Lab @ USC">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<style>
table {
border-collapse: collapse;
margin: 0;
padding: 0;
width: 95%;
table-layout: fixed;
}
table caption {
font-size: 1.5em;
margin: .5em 0 .75em;
}
table tr {
padding: .35em;
}
table th,
table td {
padding: .625em;
text-align: left;
}
table th {
font-size: .85em;
letter-spacing: .1em;
text-transform: uppercase;
}
@media screen and (max-width: 900px) {
table {
border: 0;
}
table caption {
font-size: 1.3em;
}
table thead {
border: none;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
table tr {
display: block;
margin-bottom: .625em;
}
table td {
display: block;
font-size: .8em;
text-align: center;
}
table td::before {
/*
* aria-label has no advantage, it won't be read inside a table
content: attr(aria-label);
*/
content: attr(data-label);
float: left;
font-weight: bold;
text-transform: uppercase;
}
table td:last-child {
border-bottom: 0;
}
}
.image-cropper {
width: 125px;
height: 125px;
position: relative;
overflow: hidden;
border-radius: 50%;
margin-bottom: 10px;
}
</style>
<script language="javascript">
var ie4 = false; if (document.all) { ie4 = true; }
function getObject(id) { if (ie4) { return document.all[id]; } else { return document.getElementById(id); } }
function toggle(link, divId) {
var lText = link.innerHTML; var d = getObject(divId);
if (lText == '[show more]') { link.innerHTML = '[hide more]'; d.style.display = 'block'; }
else { link.innerHTML = '[show more]'; d.style.display = 'none'; }
}
</script>
</head>
<body>
<!-- Header -->
<header id="header">
<div class="inner">
<a href="index.html" class="logo"> <img width="55" style="padding: 0.5em 0 0 0" src="images/logo.png"> </a>
<nav id="nav">
<a style="color:#d5d5d5" onMouseOver="this.style.color='#FF0433'"
onMouseOut="this.style.color='#d5d5d5'" href="index.html">Home</a>
<a style="color:#FF0433;" onMouseOver="this.style.color='#FF0433'"
onMouseOut="this.style.color='#d5d5d5'" href="people.html"><u>People</u></a>
<a style="color:#d5d5d5" onMouseOver="this.style.color='#FF0433'"
onMouseOut="this.style.color='#d5d5d5'" href="research.html">Research</a>
<a style="color:#d5d5d5" onMouseOver="this.style.color='#FF0433'"
onMouseOut="this.style.color='#d5d5d5'" href="publications.html">Publications</a>
<a style="color:#d5d5d5" onMouseOver="this.style.color='#FF0433'"
onMouseOut="this.style.color='#d5d5d5'" href="software.html">Software</a>
<a style="color:#d5d5d5" onMouseOver="this.style.color='#FF0433'"
onMouseOut="this.style.color='#d5d5d5'" href="sponsors.html">Sponsors</a>
<a style="color:#d5d5d5" onMouseOver="this.style.color='#FF0433'"
onMouseOut="this.style.color='#d5d5d5'" href="teaching.html">Teaching</a>
<!-- <a href="elements.html">Resources</a> -->
<a style="color:#d5d5d5" onMouseOver="this.style.color='#FF0433'"
onMouseOut="this.style.color='#d5d5d5'" href="contact.html">Join Us</a>
</nav>
<div class="inner">
<img class="usclogo" src="images/usc-shield-name-white.png">
</div>
</div>
</header>
<a href="#menu" class="navPanelToggle"><span class="fa fa-bars"></span></a>
<!-- Banner -->
<!-- <section id="banner" style="height:10pt">
<div class="inner" style="height:10pt">
<h1 style="padding: -10 0 0 0">INK Lab @ USC/ISI: <span style="text-transform:none;">Intelligence and Knowledge Discovery</span></h1>
</div>
</section> -->
<!-- One -->
<!-- Two -->
<section id="two" style="background:white">
<!--<div class="inner">
<h2>People @ INK</h2> <br><br><br>
</div>-->
<div class="inner">
<div class="content">
<header>
<h3>Faculty</h3>
</header>
<table>
<tr>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/Xiang.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="http://seanre.com/" target="_blank">Sean (Xiang)
Ren</a></span>
<div><a href="https://twitter.com/xiangrenNLP"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="http://seanre.com/"><i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
</span>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="inner">
<div class="content">
<header>
<h3>Ph.D. Students</h3>
</header>
<table>
<tr>
<td style="text-align: center;">
<div style="width:130px; "><span class="image fit">
<div class="image-cropper"><img src="memberpic/hirona.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="https://www.hironaarai.com" target="_blank">Hirona Arai</a></span>
<div><a href="https://twitter.com/HironaArai"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="https://www.hironaarai.com"><i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(22' Fall))</a></span>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px; "><span class="image fit">
<div class="image-cropper"><img src="memberpic/shushan.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="https://shushanarakelyan.github.io/" target="_blank">Shushan Arakelyan</a></span>
<div><a href="https://twitter.com/sharakelyan"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="https://shushanarakelyan.github.io/"><i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(17' Fall) w/ <a href="https://www.isi.edu/people/galstyan/about">Galstyan</a></span>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px; "><span class="image fit">
<div class="image-cropper"><img src="memberpic/jacob.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="https://bremerman.me/" target="_blank">Jacob Bremerman</a></span>
<div><a href="https://twitter.com/JLBrem"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="https://bremerman.me/"><i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(21' Fall) w/ <a href="https://www.isi.edu/~jonmay/">May</a></span>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px; "><span class="image fit">
<div class="image-cropper"><img src="memberpic/matthew.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="https://mattf1n.github.io/" target="_blank">Matthew Finlayson</a></span>
<div><a href="https://twitter.com/mattf1n"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="https://mattf1n.github.io/"><i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(23' Fall) w/ <a href="https://swabhs.com/">Swayamdipta</span>
</span>
</div>
</td>
</tr>
<tr>
<td style="text-align: center;">
<div style="width:130px; "><span class="image fit">
<div class="image-cropper"><img src="memberpic/Woojeong.png" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="https://woojeongjin.github.io" target="_blank">Woojeong Jin</a></span>
<div><a href="https://twitter.com/woojeong_jin"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="https://woojeongjin.github.io"><i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(18' Fall) </span>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/xisen.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black" href="http://xsjin.xyz"
target="_blank">Xisen Jin</a></span>
<div><a href="https://twitter.com/XisenJ"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="http://xsjin.xyz"><i class="fa fa-globe fa-lg" aria-hidden="true"
style="color: gray;"></i></a>
</div>
<div><a style="font-size: 14px; " href="https://www.bloomberg.com/company/stories/announcing-bloomberg-data-science-ph-d-fellowship-winners-2021-2022/">Bloomberg Data Science PhD Fellow</a></div>
<div><a style="font-size: 14px; " href="https://machinelearning.apple.com/updates/apple-scholars-aiml-2023">Apple Scholars in AI/ML</a></div>
<span style="font-size: 14px; ">(19' Fall) </span>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/brihi.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black" href="https://brihijoshi.github.io/"
target="_blank">Brihi Joshi</a></span>
<div><a href="https://twitter.com/BrihiJ"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="https://brihijoshi.github.io/"><i class="fa fa-globe fa-lg" aria-hidden="true"
style="color: gray;"></i></a>
</div>
<div><a style="font-size: 14px; " href="https://trustedai.usc.edu/20222023-amazon-ml-fellows-1">Amazon ML Fellow</a></div>
<span style="font-size: 14px; ">(21' Fall) w/ <a href="https://swabhs.com/">Swayamdipta</span>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/huihan.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black" href="https://huihanlhh.github.io/"
target="_blank">Huihan Li</a></span>
<div><a href="https://twitter.com/huihan_li"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="https://huihanlhh.github.io/"><i class="fa fa-globe fa-lg" aria-hidden="true"
style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(22' Fall) </span>
</span>
</div>
</td>
</tr>
<tr>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/sahana.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="https://sahanaramnath.github.io/" target="_blank">Sahana Ramnath</a></span>
<div>
<a href="https://twitter.com/sahana_ramnath?lang=en"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="https://sahanaramnath.github.io/"><i class="fa fa-globe fa-lg" aria-hidden="true"
style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(22' Fall)</span>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/soumya.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="https://soumyasanyal.github.io/" target="_blank">Soumya Sanyal</a>
</span>
<div><a href="https://twitter.com/ssanyal8"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="https://soumyasanyal.github.io/"><i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(20' Fall)</span>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px; "><span class="image fit">
<div class="image-cropper"><img src="memberpic/Jun.png" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="https://junyann.github.io/" target="_blank">Jun Yan</a></span>
<div><a href=""><i class="fa fa-twitter fa-lg" aria-hidden="true"
style="color: #00ACEE;"></i></a>
<a href="https://junyann.github.io/"><i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(19' Fall) </span>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px; "><span class="image fit">
<div class="image-cropper"><img src="memberpic/Qinyuan.jpeg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black" href="http://yeqy.xyz/"
target="_blank">Qinyuan Ye</a></span>
<div><a href="https://twitter.com/qinyuan_ye"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="http://yeqy.xyz/"><i class="fa fa-globe fa-lg" aria-hidden="true"
style="color: gray;"></i></a>
</div>
<div><a style="font-size: 14px; " href="">WiSE Qualcomm Fellow</a></div>
<span style="font-size: 14px; ">(19' Fall) </span>
</span>
</div>
</td>
</tr>
<tr>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/Pei.png" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="https://sites.google.com/g.ucla.edu/peizhou/home" target="_blank">Pei
Zhou</a> <br>
<div><a href="https://twitter.com/peizNLP"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="https://sites.google.com/g.ucla.edu/peizhou/home"><i
class="fa fa-globe fa-lg" aria-hidden="true"
style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(19' Fall) w/ <a href="https://www.jaypujara.org/">Pujara</a></span>
</span>
</span>
</div>
</td>
</tr>
</table>
</div>
</div>
<!-- <div class="inner">
<div class="content">
<header>
<h3>M.S. Students</h3>
</header>
<table>
<tr>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/ziyiliu.jpeg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="" target="_blank">Ziyi Liu</a></span>
<div>
<a href="#"><i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/zeyiliao.png" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="" target="_blank">Zeyi Liao</a></span>
<div>
<a href="https://zeyiliao.github.io/"><i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/x.png" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="" target="_blank"> </a></span>
<div>
</div>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/x.png" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="" target="_blank"> </a></span>
<div>
</div>
</span>
</div>
</td>
</tr>
</table>
</div>
</div> -->
<div class="inner">
<div class="content">
<header>
<h3>Undergrads</h3>
</header>
<table>
<tr>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/karina.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href=" " target="_blank">Karina Yang</a></span>
<div>
<a href="https://www.linkedin.com/in/karinayang454">
<i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/keyu.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href=" " target="_blank">Keyu He</a></span>
<div>
<a href="http://www.linkedin.com/in/keyu-he-569547198">
<i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/wenbo.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href=" " target="_blank">Wenbo Zhang</a></span>
<div>
<a href="https://inklab.usc.edu/">
<i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
</span>
</div>
</td>
<!-- <td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/lindsey.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="http://lindseyfeng.github.io" target="_blank">Lindsey Feng</a></span>
<div>
<a href="http://lindseyfeng.github.io">
<i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/default.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="" target="_blank">Angel Ortmann Lee</a></span>
<div>
<a href="">
<i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/kangmin.jpeg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="" target="_blank">Kangmin Tan</a></span>
<div>
<a href="">
<i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
</span>
</div>
</td> -->
<td style="text-align: center;">
</td>
</tr>
<!-- <tr>
<td style="text-align: center;">
</td>
<td style="text-align: center;">
</td>
<td></td>
<td></td>
<td></td>
</tr> -->
</table>
</div>
</div>
<div class="inner">
<div class="content">
<header>
<h3 style="margin-bottom: 0pt">Visitors</h3>
</header>
<span onclick="show_more_news()" style="font-size: 10pt;"><a>Show/Hide.</a></span> <br />
<!-- <a title="show/hide" id="more_news_link" href="javascript: void(0);" onclick="toggle(this, 'more_news');" style="text-decoration: none; color: #900; ">[hide more]</a>
<script language="javascript">toggle(getObject('more_news_link'), 'more_news');</script> -->
<script>
function show_more_news() {
// var x = document.getElementById("old_news");
var elms = document.querySelectorAll("[class='info-visitor']");
for (var i = 0; i < elms.length; i++) {
x = elms[i];
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
}
</script>
<span class="info-visitor" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Yicheng Fu</a>: Undergrad at THU<br></span>
<span class="info-visitor" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Chengsong Huang</a>: Undergrad at FDU<br></span>
<span class="info-visitor" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Dongfu Jiang</a>: Undergrad at ZJU<br></span>
<span class="info-visitor" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Zhiyuan Zeng</a>: Undergrad at THU<br></span>
<span class="info-visitor" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Zhewei Tong</a>: Undergrad at THU<br></span>
<!-- <span style="font-size:16px; align-content: center"><a class="" target="_blank" >Shihan Ran</a>: Visiting undergrad from FDU (06/18 ~ 12/18) <br>
<span style="font-size:16px; align-content: center"><a class="" href="https://akaisorani.github.io" target="_blank" >Yue Han</a>: Visiting undergrad from HIT (18 Summer) <br>
<span style="font-size:16px; align-content: center"><a class="" href="http://corie.cn" target="_blank" >Jun Yan</a>: Visiting undergrad from THU (18 Summer) <br>
<span style="font-size:16px; align-content: center"><a class="" href="#" target="_blank" >Qinyuan Ye</a>: Visiting undergrad from THU (18 Summer) <br>
<span style="font-size:16px; align-content: center"><a class="" href="#" target="_blank" >Maosen Zhang</a>: Visiting undergrad from PKU (18 Summer) <br> -->
</div>
</div>
<br>
<div class="inner">
<div class="content">
<header>
<h3 style="margin-bottom: 0pt">Alumni</h3>
</header>
<h4 style="margin-bottom: 0pt">Graduated PhDs</h4>
<table>
<tr>
<td style="text-align: center;">
<div style="width:130px"><span class="image fit">
<div class="image-cropper"><img src="memberpic/yuchen.jpg" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href="http://yuchenlin.xyz" target="_blank">(Bill) Yuchen Lin</a></span>
<div><a href="https://twitter.com/billyuchenlin"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="http://yuchenlin.xyz"><i class="fa fa-globe fa-lg" aria-hidden="true"
style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(18' Fall-22'Fall) </span>
<br>
<span style="font-size: 14px; "> Young Investigator @ AI2</span>
</span>
</div>
</td>
<td style="text-align: center;">
<div style="width:130px; "><span class="image fit">
<div class="image-cropper"><img src="memberpic/aaron.png" alt=""></div>
<span><a class="alt fit" style="font-size:16px; color:black"
href=" https://aarzchan.com/" target="_blank">Aaron Chan</a></span>
<div><a href="https://twitter.com/aarzchan"><i class="fa fa-twitter fa-lg"
aria-hidden="true" style="color: #00ACEE;"></i></a>
<a href="https://aarzchan.com/"><i class="fa fa-globe fa-lg"
aria-hidden="true" style="color: gray;"></i></a>
</div>
<span style="font-size: 14px; ">(17' Fall-22'Fall) </span>
<br>
<span style="font-size: 14px; "> Research Scientist @ Meta AI</span>
</span>
</div>
</td>
<td></td>
<td></td>
</tr>
</table>
<h4 style="margin-bottom: 0pt">Others</h4>
<span onclick="show_more_alm()" style="font-size: 10pt;"><a>Show/Hide.</a></span> <br />
<script>
function show_more_alm() {
// var x = document.getElementById("old_news");
var elms = document.querySelectorAll("[class='info-alumni']");
for (var i = 0; i < elms.length; i++) {
x = elms[i];
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
}
</script>
<span class="info-alumni" style="display:none; align-content: center">
<br>
<h5>2022</h5>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Kangmin Tan</a>: Undergrad at USC<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Junfeng Liu</a>: Master at USC<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Wyatt Lake</a>: Visiting high school student from Harvard-Westlake School<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Siba Smarak Panigrahi</a> Visiting undergrad from Indian Institute of Technology Kharagpur<br></span>
<br>
<h5>2021</h5>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="https://www.linkedin.com/in/wenyang-gao-740944132">Wenyang Gao</a>: USC master student<br>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="">Deren Lei</a>: USC master student<br>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="https://www.linkedin.com/in/junzhe-liu-antares97/">Junzhe Liu</a>: USC master student<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="http://home.ustc.edu.cn/~xyyimian/">Yu Xing</a>: USC master student<br>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="">Timothy Wang</a>: USC undergrad<br>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="http://www.linkedin.com/in/wenda-gu">Wenda Gu</a>: USC undergrad<br>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="https://www.linkedin.com/in/xiaoyang-qiao/">Yang Qiao</a>: USC undergrad<br>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="https://www.linkedin.com/in/ziyiwuxyz/">Ziyi Wu</a>: USC undergrad<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="https://www.linkedin.com/in/yichi-yang/?locale=en_US">Yichi Yang</a>: USC undergrad<br>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="https://www.linkedin.com/in/mahak-agarwal-447494138/">Mahak Agarwal</a>: Master Student at USC<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Boyuan Long</a>: Undergrad at USC<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="https://www.linkedin.com/in/adelineliou/">Adeline Liou</a>: Undergrad at USC<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Jordan McWilliams</a>: Undergrad at USC<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Raymond Cheung</a>: Undergrad at USC<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="https://www.linkedin.com/in/wardah-jabeen-9488b71ba">Wardah Jabeen</a>: Undergrad at USC<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Jiashu Xu</a>: Undergrad at USC<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="">Tanishq Gupta</a>: Visiting student from Indian Institute of Technology Delhi<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="https://github.com/Rahul-Khanna">Rahul Khanna</a>: USC MS<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="https://sujikim6.github.io/">Suji Kim</a>: USC MS<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="https://seyeon-lee.github.io/">Seyeon Lee</a>: USC MS<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="http://www.sravikiran.com/">Ravi Kiran Selvam</a>: USC MS<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="http://linkedin.com/in/kelly-dickson-666909170">Kelly Dickson</a>: USC Undergrad<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank">Molly Yue</a>: USC Undergrad<br></span>
<span class="info-alumni" style="display:none; align-content: center">
<br>
<h5>2020</h5>
</span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a
class="" target="_blank" href="https://www.linkedin.com/in/he-jiang-022a1483/">He
Jiang</a>: MS student at USC ---> Microsoft<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Siddhant Agarwal</a>: Visiting undergrad from Indian Institute of
Technology Kharagpur<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Mrigank Raman</a>: Visiting undergrad from Indian Institute of
Technology Delhi<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
href="https://michaelzhouwang.github.io/" target="_blank">Wangchunshu Zhou</a>: Visiting summer intern from Beihang University ---> Stanford PhD student<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Huihan Yao</a>: Visiting undergrad from Peking University<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Ying Chen</a>: Visiting undergrad from Tsinghua University<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Yixuan Fan</a>: Visiting undergrad from Tsinghua University<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Tianyu Zhang</a>: Visiting undergrad from Tsinghua University<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Wenchang Ma</a>: Visiting undergrad from Tsinghua University<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Hansen Wang</a>: Visiting undergrad from Tsinghua University<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="https://rpman.net/">Junyi Du</a>: USC Master student<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="https://danny-lee.info/">Dong-Ho Lee</a>: USC Master student --> USC PhD student<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="https://ryan-moreno.github.io/">Ryan Moreno</a>: USC undergrad<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="">Xiao Huang</a>: USC Master student<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="">Ouyu Lan</a>: USC Master student --> Software Engineer at Google
Inc.<br></span>
<br>
<span class="info-alumni" style="display:none; align-content: center">
<h5>2019</h5>
</span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="https://www.linkedin.com/in/sankalp-garg-557241147/">Sankalp Garg</a>:
Visiting undergrad from Indian Institute of Technology Delhi (05/2019 ~ 07/2019)<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="https://varuniyer.us">Varun Iyer</a>: Visiting undergrad from UMass
Amherst (05/2019 ~ 08/2019)<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="http://ra1n.me">Yu Tang</a>: Visiting undergrad from University of
Illinois at Urbana-Champaign (05/2019 ~ 08/2019)<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Navodita Sharma</a>: Visiting undergrad from Indian Institute of Technology
Madras (05/2019 ~ 07/2019)<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Xinyue Chen</a>: Visiting undergrad from Shanghai Jiao Tong University (07/2019
~ 09/2019)<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Ziqi Wang</a>: Visiting undergrad from Tsinghua University (07/2019 ~
09/2019)<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Yanlin Feng</a>: Visiting undergrad from Peking University (07/2019 ~
09/2019)<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Yujia Qin</a>: Visiting undergrad from Tsinghua University (07/2019 ~
09/2019)<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Zhengwei Tao</a>: Visiting master student from Peking University<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Cathy Miao</a>: Visiting undergrad from Caltech<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Zhepeng Cen</a>: Visiting undergrad from Tsinghua University (07/2019 ~
09/2019)<br></span>
<br>
<span class="info-alumni" style="display:none; align-content: center">
<h5>2018</h5>
</span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="https://www.linkedin.com/in/jaminchen/">Jamin Chen</a>: USC
undergrad<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank" href="http://linkedin.com/in/priya-irukulapati-01082916b">Priya Irukulapati</a>:
USC undergrad<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
href="http://www.tonichan.xyz/?page_id=2" target="_blank">Toni Chan</a>: Visiting undergrad from
ZJU (11/2018 ~ 04/2019) --> Master student @ CMU<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
href="" target="_blank">Cong Fu</a>: Visiting PhD student from ZJU (09/2018 ~ 05/2019)
<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
href="https://www.linkedin.com/in/hunter-lin/" target="_blank">Hongtao Lin</a>: USC master
student (/2018 ~ 03/2019) --> Machine Learning Engineer at Pinterest<br> </span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
href="https://www.linkedin.com/in/yozen-liu-531a67130/" target="_blank">Yozen Liu</a>: USC
master student (/2018 ~ 03/2019) --> Research Scientist at Snapchat<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
href="https://changlinzhang.github.io/" target="_blank">Changlin Zhang</a>: USC master student
(/2018 ~ 06/2019)<br></span>
<!-- <span style="font-size:16px; align-content: center"><a class="" href="https://www.linkedin.com/in/hchen0910/" target="_blank" >Hao Chen</a>: USC undergrad (/18 ~ 03/19) <br> -->
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
href="https://www.linkedin.com/in/yue-cao-lily/" target="_blank">Yue Cao</a>: USC undergrad
(/2018 ~ 03/2019)<br> </span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
target="_blank">Shihan Ran</a>: Visiting undergrad from FDU (06/2018 ~ 12/2018) --> Master
student @ UCSD<br></span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
href="https://akaisorani.github.io" target="_blank">Yue Han</a>: Visiting undergrad from HIT
(18 Summer) PhD student @ THU<br> </span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
href="http://corie.cn" target="_blank">Jun Yan</a>: Visiting undergrad from THU (18 Summer)
--> PhD student @ USC (INK Lab)<br> </span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
href="" target="_blank">Qinyuan Ye</a>: Visiting undergrad from THU (18 Summer) --> PhD
student @ USC (INK Lab) <br> </span>
<span class="info-alumni" style="display:none; font-size:16px; align-content: center"><a class=""
href="" target="_blank">Maosen Zhang</a>: Visiting undergrad from PKU (18 Summer) --> PhD
student @ Purdue<br> </span>
</div>
</div>
</section>
<!-- Three -->
<!-- <section id="three">
<div class="inner">
<article>
<div class="content">
<span class="icon fa-laptop"></span>
<header>
<h3>Tempus Feugiat</h3>
</header>
<p>Morbi interdum mollis sapien. Sed ac risus. Phasellus lacinia, magna lorem ullamcorper laoreet, lectus arcu.</p>
<ul class="actions">
<li><a href="#" class="button alt">Learn More</a></li>
</ul>
</div>
</article>
<article>
<div class="content">
<span class="icon fa-diamond"></span>
<header>
<h3>Aliquam Nulla</h3>
</header>
<p>Ut convallis, sem sit amet interdum consectetuer, odio augue aliquam leo, nec dapibus tortor nibh sed.</p>
<ul class="actions">
<li><a href="#" class="button alt">Learn More</a></li>
</ul>
</div>
</article>
<article>
<div class="content">
<span class="icon fa-laptop"></span>
<header>
<h3>Sed Magna</h3>
</header>
<p>Suspendisse mauris. Fusce accumsan mollis eros. Pellentesque a diam sit amet mi ullamcorper vehicula.</p>
<ul class="actions">
<li><a href="#" class="button alt">Learn More</a></li>
</ul>
</div>
</article>
</div>
</section> -->
<!-- Footer -->
<section id="footer">
<div class="inner" style="padding: 0 0 0 0;">
<div class="copyright" style="height: 0pt;" style="padding: 0 0 0 0;">