-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpeople.tsx
451 lines (430 loc) · 16.4 KB
/
people.tsx
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
import React from "react";
import Latex from "react-latex";
import { Button } from "antd";
import { Helmet } from "react-helmet";
import { css } from "@emotion/react";
import color from "~styles/color";
import Header from "~components/header";
import Hero from "~components/hero";
import { StaticImage } from "gatsby-plugin-image";
function Person(props: {
name: string;
title: string;
email?: string;
additional?: string;
next?: string;
image: string;
website?: string;
}) {
return (
<div className="align-top hover:-translate-y-1 duration-150">
<a
href={props.website}
target="_blank"
className="!hover:cursor-pointer z-10 relative text-inherit !hover:text-inherit"
>
<div className="rounded-md overflow-hidden border-slate-200 border-[1px] pb-3 bg-white">
<div
style={{
width: "100%",
paddingTop: "100%",
backgroundImage: `url(${props.image})`,
backgroundSize: "cover",
backgroundPosition: "center",
}}
></div>
{/* <StaticImage src={props.image} className="w-full" alt={props.name} /> */}
{/* {props.image} */}
<div className="font-medium text-xl text-left mt-2 px-2 !text-gray-900 leading-7">
{props.name}
</div>
<div className="text-sm text-left mt-0 px-2 !text-gray-900">
{props.title}
</div>
<div
className="text-xs text-left mt-1 px-2 text-slate-400"
style={{
fontStyle: props.additional ? "normal" : "italic",
}}
>
{props.email ? props.email : props.additional}
</div>
<div
className="text-xs text-left mt-1 px-2 text-slate-400">
{props.next}
</div>
</div>
</a>
</div>
);
}
/**
* @param {number} a some number.
* @param {number} b some other number.
*/
export default function Home() {
return (
<div>
<Helmet>
<title>UW RAIVN LAB People</title>
</Helmet>
<Header />
<div className="pt-24 bg-slate-50">
<div className="max-w-6xl mx-auto text-left pb-24 md:pb-28">
<div className="grid md:grid-cols-2 align-top mb-4 px-5 grid-cols-1 gap-y-8 md:gap-y-0">
<div>
<h3 className="h3">Faculty</h3>
<div className="grid grid-cols-2 gap-x-3">
<Person
name="Ali Farhadi"
title="Professor"
email="ali [at] cs.uw.edu"
image="/Ali-Farhadi1.jpg"
website="https://homes.cs.washington.edu/~ali"
/>
<Person
name="Ranjay Krishna"
title="Assistant Professor"
email="ranjay [at] cs.uw.edu"
image="/ranjay_old.jpg"
website="https://www.ranjaykrishna.com/index.html"
/>
</div>
</div>
</div>
<div className="px-5">
<h3 className="h3 mb-4 mt-8">Ph.D. Students</h3>
<div className="grid md:grid-cols-5 md:gap-x-3 md:gap-y-3 sm:grid-cols-3 gap-3 grid-cols-2">
<Person
name="Matt Deitke"
title="Ph.D. Student, 2023 - Now"
additional="Advisor: Ali Farhadi"
image="/matt-deitke.jpg"
website="https://mattdeitke.com/"
/>
<Person
name="Jiafei Duan"
title="Ph.D. Student, 2022 - Now"
additional="Advisors: Ranjay Krishna & Dieter Fox"
image="/jiafei.jpg"
website="https://duanjiafei.com/"
/>
<Person
name="Ainaz Eftekhar"
title="Ph.D. Student, 2022 - Now"
additional="Advisors: Ali Farhadi & Ranjay Krishna"
image="/ainaz.jpg"
website="https://ainaz99.github.io/"
/>
<Person
name="Xiang Fan"
title="Ph.D. Student, 2023 - Now"
additional="Advisor: Ranjay Krishna"
image="/xiang-2.jpg"
website="https://xiangfan.io/"
/>
<Person
name="Scott Geng"
title="Ph.D. Student, 2023 - Now"
additional="Advisors: Ranjay Krishna & Pang Wei Koh"
image="/scott2.jpg"
website="https://www.scottgeng.com/"
/>
<Person
name="Cheng-Yu Hsieh"
title="Ph.D. Student, 2021 - Now"
additional="Advisors: Ranjay Krishna & Alex Ratner"
image="/cheng-yu-2.jpeg"
website="https://chengyuhsieh.github.io/"
/>
<Person
name="Amita Kamath"
title="Ph.D. Student (UCLA), 2022 - Now"
additional="Advisors: Ranjay Krishna & Kai-Wei Chang"
image="/amita.jpg"
website="https://amitakamath.github.io/"
/>
<Person
name="Nabil Omi"
title="Ph.D. Student, 2024 - Now"
additional="Advisor: Ali Farhadi"
image="/nabil.jpg"
website="https://scholar.google.com/citations?user=18iysQgAAAAJ&hl=en"
/>
<Person
name="Zixian Ma"
title="Ph.D. Student, 2023 - Now"
additional="Advisor: Ranjay Krishna & Dan Weld"
image="/zixian.jpg"
website="https://zixianma.github.io/"
/>
<Person
name="James Park"
title="Ph.D. Student, 2019 - Now"
additional="Advisors: Ali Farhadi & Yejin Choi"
image="/james-2.jpg"
website="https://homes.cs.washington.edu/~jspark96/"
/>
<Person
name="Sarah Pratt"
title="Ph.D. Student, 2020 - Now"
additional="Advisor: Ali Farhadi"
image="/sarah.jpg"
website="https://sarahpratt.github.io/"
/>
<Person
name="Vivek Ramanujan"
title="Ph.D. Student, 2020 - Now"
additional="Advisor: Ali Farhadi"
image="/vivek.jpg"
website="https://vkramanuj.github.io/"
/>
<Person
name="Reza Salehi"
title="Ph.D. Student, 2021 - Now"
additional="Advisors: Ali Farhadi & Hanna Hajishirzi"
image="/reza-2.jpg"
website="https://homes.cs.washington.edu/~mrsalehi/"
/>
<Person
name="Yashas Samaga"
title="Ph.D. Student, 2024 - Now"
additional="Advisor: Ali Farhadi"
image="/yashas.jpg"
website="https://github.com/YashasSamaga"
/>
<Person
name="Matt Wallingford"
title="Ph.D. Student, 2019 - Now"
additional="Advisor: Ali Farhadi"
image="/matt.jpg"
website="https://mattwallingford.github.io/"
/>
<Person
name="Jieyu Zhang"
title="Ph.D. Student, 2020 - Now"
additional="Advisor: Ranjay Krishna & Alex Ratner"
image="/jieyu2.jpg"
website="https://jieyuz2.github.io/"
/>
<Person
name="Chenhao Zheng"
title="Ph.D. Student, 2024 - Now"
additional="Advisor: Ranjay Krishna"
image="/chenhao.jpg"
website="https://hellomuffin.github.io/"
/>
</div>
</div>
<div className="px-5">
<h3 className="h3 mb-4 mt-8">Undergraduate/Masters Students</h3>
<div className="grid md:grid-cols-5 md:gap-x-3 md:gap-y-3 sm:grid-cols-3 gap-3 grid-cols-2">
<Person
name="Huong Ngo"
title="BS Student, 2023 - Now"
additional="Advisor: Matt Deitke"
image="/huong.jpg"
website="https://huongngo-8.github.io/"
/>
<Person
name="Ethan Shen"
title="BS Student, 2023 - Now"
additional="Advisor: Matt Wallingford, Aditya Kusupati"
image="/ethan.jpg"
website="https://ethanlshen.github.io/"
/>
<Person
name="Javon Hickmon"
title="MS Student, 2024 - Now"
additional="Advisor: Sarah Pratt"
image="/javon.jpg"
website="https://javon.dev/"
/>
</div>
</div>
<div className="px-5">
<h3 className="h3 mb-4 mt-8">Alumni</h3>
<div className="grid md:grid-cols-5 md:gap-x-3 md:gap-y-3 sm:grid-cols-3 gap-3 grid-cols-2">
<Person
name="Wei-Chiu Ma"
title="Postdoc, 2023 - 2024"
additional="Advisors: Ali Farhadi & Ranjay Krishna"
next="Assistant Professor, Cornell University"
image="/weichiu.jpg"
website="https://www.cs.cornell.edu/~weichiu/"
/>
<Person
name="Aditya Kusupati"
title="Ph.D. Student, 2019 - 2024"
additional="Advisors: Ali Farhadi & Sham Kakade"
next="Research Scientist, Google DeepMind"
image="/aditya-2.jpg"
website="http://adityakusupati.com"
/>
<Person
name="Gabriel Ilharco"
title="Ph.D. Student, 2019 - 2024"
additional="Advisors: Ali Farhadi & Hanna Hajishirzi"
next="Member of Technical Staff, xAI"
image="/gabriel.jpg"
website="http://gabrielilharco.com/"
/>
<Person
name="Mitchell Wortsman"
title="Ph.D. Student, 2019 - 2023"
additional="Advisors: Ali Farhadi & Ludwig Schmidt"
next="Member of Technical Staff, Anthropic"
image="/mitchell.jpg"
website="https://mitchellnw.github.io/"
/>
<Person
name="Aaron Walsman"
title="Ph.D. Student, 2015 - 2023"
additional="Advisors: Ali Farhadi & Dieter Fox"
next="Research Fellow, Harvard Kempner Institute"
image="/aaron.jpg"
website="http://aaronwalsman.com/"
/>
<Person
name="Kuo-Hao Zeng"
title="Ph.D., 2018 - 2023"
additional="Advisors: Ali Farhadi & Roozbeh Mottaghi"
next="Research Scientist, AI2"
image="/hao.jpg"
website="https://kuohaozeng.github.io/"
/>
<Person
name="Rowan Zellers"
title="Ph.D., 2016 - 2022"
additional="Advisors: Ali Farhadi & Yejin Choi"
next="Research Scientist, OpenAI"
image="/rowan.jpg"
website="https://rowanzellers.com/"
/>
<Person
name="Junha Roh"
title="Ph.D., 2016 - 2022"
additional="Advisors: Ali Farhadi & Dieter Fox"
next="Research Scientist, Third Wave Automation"
image="/junha.jpg"
website="https://rohjunha.github.io/"
/>
<Person
name="Maxwell (Max) Horton"
title="Ph.D., 2016 - 2022"
additional="Advisors: Ali Farhadi & Mohammad Rastegari"
next="Machine Learning Researcher, Apple"
image="/max.jpg"
website="https://homes.cs.washington.edu/~mchorton/"
/>
<Person
name="Keunhong Park"
title="Ph.D., 2015 - 2022"
additional="Advisors: Ali Farhadi & Steve Seitz"
next="Research Scientist, Google"
image="/keunhong.jpg"
website="https://keunhong.com/"
/>
<Person
name="Joseph (Joe) Redmon"
title="Ph.D., 2013 - 2021"
additional="Advisor: Ali Farhadi"
next="Something we can never predict!!"
image="/joe.png"
website="https://pjreddie.com/"
/>
<Person
name="Kiana Ehsani"
title="Ph.D., 2015 - 2021"
additional="Advisors: Ali Farhadi & Roozbeh Mottaghi"
next="Research Scientist, AI2"
image="/kiana-2.jpg"
website="https://ehsanik.github.io/"
/>
<Person
name="Keivan Alizadeh-Vahid"
title="MS, 2018 - 2021"
additional="Advisors: Ali Farhadi & Mohammad Rastegari"
next="Machine Learning Research Engineer, Apple"
image="/keivan.jpg"
website="https://homes.cs.washington.edu/~keivan/"
/>
<Person
name="Hessam Bagherinezhad"
title="Ph.D., 2014 - 2020"
additional="Advisor: Ali Farhadi"
next="Member of Technical Staff, OpenAI"
image="/hessam.jpg"
website="https://homes.cs.washington.edu/~hessam/"
/>
<Person
name="Daniel Gordon"
title="Ph.D., 2014 - 2020"
additional="Advisors: Ali Farhadi & Dieter Fox"
next="Research Scientist, Apple Maps 3D Vision"
image="/daniel.jpg"
website="https://danielgordon10.github.io/"
/>
<Person
name="Minjoon Seo"
title="Ph.D., 2013 - 2020"
additional="Advisors: Ali Farhadi & Hannaneh Hajishirzi"
next="Assistant Professor, KAIST AI"
image="/minjoon.jpg"
website="https://seominjoon.github.io/"
/>
<Person
name="Xin Ru (Nancy) Wang"
title="Ph.D., 2014 - 2019"
additional="Advisors: Ali Farhadi & Rajesh Rao"
next="Applied Scientist, Amazon"
image="/nancy_wang.jpg"
website="#"
/>
<Person
name="Junyuan (Eric) Xie"
title="Ph.D., 2013 - 2019"
additional="Advisor: Ali Farhadi"
next="Applied Scientist, ByteDance"
image="/junyuan.jpg"
website="#"
/>
<Person
name="Mark Yatskar"
title="Ph.D., 2010 - 2017"
additional="Advisors: Ali Farhadi & Luke Zettelmoyer"
next="Assistant Professor, University of Pennsylvania"
image="/mark-2.jpg"
website="https://www.cis.upenn.edu/~myatskar/"
/>
<Person
name="Bilge Soran"
title="Ph.D., 2010 - 2015"
additional="Advisors: Ali Farhadi & Linda Shapiro"
next="Research Scientist, MetaAI"
image="/bilge.jpg"
website="#"
/>
<Person
name="Santosh Divvala"
title="Postdoc, 2014 - 2015"
additional="Advisors: Ali Farhadi & Carlos Guestrin"
next=""
image="/santosh.jpg"
website="https://scholar.google.com/citations?user=-DYvinwAAAAJ&hl=en"
/>
<Person
name="Min Sun"
title="Postdoc, 2013 - 2014"
additional="Advisors: Ali Farhadi, Steve Seitz & Ben Taskar"
next="Associate Professor, National Tsing Hua University"
image="/min-sun.jpg"
website="http://aliensunmin.github.io/"
/>
</div>
</div>
</div>
</div>
</div>
);
}