-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpeople.html
More file actions
285 lines (245 loc) · 10.8 KB
/
people.html
File metadata and controls
285 lines (245 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>People – NerDS Lab</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Major+Mono+Display&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
body {
margin: 0;
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: #222;
background-color: #fff;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1em 2em;
background: #fff;
border-bottom: 1px solid #ddd;
flex-wrap: wrap;
}
.logo-title {
display: flex;
align-items: center;
}
.logo-title img {
height: 60px;
margin-right: 15px;
}
.logo-title h1 {
margin: 0;
font-family: 'Major Mono Display', monospace;
font-size: 48px;
font-weight: 400;
text-transform: none;
color: #222;
}
nav {
display: flex;
gap: 6px;
flex-wrap: wrap;
margin-top: 10px;
}
nav a {
text-decoration: none;
color: #333;
font-weight: 500;
font-size: 0.95em;
padding: 0 6px;
}
nav a:hover {
color: #007acc;
}
main {
max-width: 1000px;
margin: 0 auto;
padding: 3em 2em;
}
h2 {
font-size: 1.8em;
margin-top: 0;
margin-bottom: 0.5em;
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
}
h3 {
margin-top: 2em;
font-size: 1.2em;
}
.person {
display: flex;
align-items: flex-start;
margin: 30px 0;
}
.person img {
width: 180px;
margin-right: 20px;
border-radius: 8px;
}
.person-info {
max-width: 750px;
}
ul {
padding-left: 1.2em;
}
li {
margin-bottom: 0.5em;
}
footer {
text-align: center;
margin-top: 4em;
padding: 2em;
background: #f5f5f5;
font-size: 0.9em;
}
footer a {
color: #0066cc;
text-decoration: none;
}
@media (max-width: 768px) {
.person {
flex-direction: column;
align-items: center;
text-align: center;
}
.person img {
margin-bottom: 1em;
}
.person-info {
max-width: 100%;
}
}
</style>
</head>
<body>
<header>
<div class="logo-title">
<img src="images/logo_outline.png" alt="nerds lab logo">
<h1>nerds_lab</h1>
</div>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="people.html">People</a>
<a href="publications.html">Publications</a>
<a href="nerdslabcode.html">Code</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<h2>People</h2>
<!-- Main PI -->
<h3>Principal Investigator</h3>
<div class="person">
<img src="images/people/eva.png" alt="Eva Dyer">
<div class="person-info">
<h3>Eva Dyer</h3>
<p>Eva Dyer (she/they) is the Rachleff Family Associate Professor at the University of Pennsylvania. Dr. Dyer leads the NerDS Lab, which focuses on representation learning, generative modeling, and AI for science. A key area of the lab’s research focuses on AI for neuroscience, where they aim to develop tools to better understand the brain and neural computation, and to uncover abstractions of natural intelligence for creating new brain-inspired AI.</p>
<p><a href="https://scholar.google.com/citations?user=Sb_jcHcAAAAJ&hl=en" target="_blank">Google Scholar</a></p>
</div>
</div>
<!-- Postdocs -->
<h3>Postdocs</h3>
<div class="person">
<img src="images/people/sergey1.jpg" alt="Sergey Shuvaev">
<div class="person-info">
<h3>Sergey Shuvaev</h3>
<p>Joint postdoc with the NerDS and Pesaran labs. Sergey’s research focuses on biologically informed models of decision-making, integrating AI with neuroscience. He holds degrees from MIPT and has worked at Cold Spring Harbor Lab.</p>
<p><a href="https://shuvaev.me/" target="_blank">Personal Site</a></p>
</div>
</div>
<!-- PhD Students -->
<h3>PhD Students</h3>
<div class="person">
<img src="images/people/alex.jpg" alt="Alexandre Andre">
<div class="person-info">
<h3>Alexandre Andre</h3>
<p>Alexandre Andre is a first-year PhD student in Computer & Information Science at UPenn. He graduated with a Master’s degree in Computer Science from the University of Technology of Compiègne.</p>
<p><a href="https://alexandreandr.github.io/profile//">Personal Site</a></p>
</div>
</div>
<div class="person">
<img src="images/people/vinam.png" alt="Vinam Arora">
<div class="person-info">
<h3>Vinam Arora</h3>
<p>Vinam Arora is a third-year PhD student in Computer & Information Science at UPenn. He completed his undergraduate studies in Electronics at the Indian Institution of Technology (IIT) in Roorkee and worked as a Design Engineer at Texas Instruments.</p>
<p><a href="https://www.vinam.dev/">Personal Site</a></p>
</div>
</div>
<div class="person">
<img src="images/people/zihao.jpg" alt="Zihao Chen">
<div class="person-info">
<h3>Zihao Chen</h3>
<p>Zihao Chen is a third year PhD student in Computer & Information Science at UPenn. He received his bachelor’s degree in Biology from Wuhan University and Master of Engineering in Biomedical Engineering from Fudan University in 2023.</p>
<p><a href="https://www.zihaoiz.com/">Personal Site</a></p>
</div>
</div>
<div class="person">
<img src="images/people/ian.jpg" alt="Ian Knight">
<div class="person-info">
<h3>Ian Knight</h3>
<p>Ian Knight is first-year PhD student in the Computer & Information Science at UPenn. He received his bachelor's degree in Computer Science from the Georgia Institute of Technology.</p>
<p><a href="https://www.ianjknight.com/">Personal Site</a></p>
</div>
</div>
<div class="person">
<img src="images/people/div.jpeg" alt="Divyansha Lachi">
<div class="person-info">
<h3>Divyansha Lachi</h3>
<p>Divyansha is a third year Ph.D. student in Computer & Information Science at UPenn. She received her B.Tech in Computer Science and Engineering from the National Institute of Technology, Silchar, India.</p>
<p><a href="https://divyansha1115.github.io/">Personal Site</a></p>
</div>
</div>
<div class="person">
<img src="images/people/wenrui.jpg" alt="Wenrui Ma">
<div class="person-info">
<h3>Wenrui Ma</h3>
<p>Wenrui Ma is currently a first-year PhD student in Computer & Information Science at UPenn. She graduated with a Bachelor’s degree majoring in Computer Science and minoring in Math from Hunan University in Changsha.</p>
</div>
</div>
<div class="person">
<img src="images/people/shiva1.jpg" alt="Shivashriganesh Mahato">
<div class="person-info">
<h3>Shivashriganesh Mahato</h3>
<p>Shivashriganesh Mahato is a second-year PhD student in Computer & Information Science at UPenn. He received his BS in Applied Mathematics and MS in Computer Science from Texas A&M University.</p>
</div>
</div>
<div class="person">
<img src="images/people/jingyun.jpg" alt="Jingyun Xiao">
<div class="person-info">
<h3>Jingyun Xiao</h3>
<p>Jingyun is a PhD student in Computer & Information Science at UPenn. He received his bachelor’s degree in CS from University of Chinese Academy of Sciences and MS in Computer Science from Georgia Tech in 2023.</p>
</div>
</div>
<!-- Alumni -->
<h3>Alumni</h3>
<ul>
<!-- PhD Students -->
<li><strong><a href="https://www.mehai.dev/" target="_blank">Mehdi Azabou</a></strong>, Ph.D. (2020–2024) – Outstanding Graduate Student in ECE (2024), Spotlight @ NeurIPS; Thesis: <em>Building a foundation model for neuroscience</em> → Now Postdoc with Liam Paninski, Blake Richards @ Columbia University, Mila</li>
<li><strong><a href="https://ranliu98.github.io/" target="_blank">Ran Liu</a></strong>, Ph.D. (2019–2024) – Rising Star in EECS (2023), CSIP Research Award (2023), Oral @ NeurIPS; Thesis: <em>Generalizable and Explainable Methods for Learning from Physiological Data and Beyond</em> → Now at Apple</li>
<li><strong><a href="https://www.chihenglin.com/" target="_blank">Chi-Heng Lin</a></strong>, Ph.D. (2018–2022) – TRIAD Research Fellowship (2020); Thesis: <em>Understanding Data Manipulation and How to Leverage it to Improve Generalization</em> → Now at Samsung Research</li>
<!-- Masters Students -->
<li><strong>Venky Ganesh</strong>, M.S. (2022–2024) → Now at NVIDIA</li>
<li><strong>Keerthan Ramnath</strong>, M.S. (2022–2024) → Now at Apple</li>
<li><strong>Amrit Khera</strong>, M.S. (2023–2024) → Now at OpenAI</li>
<li><strong>Michael Mendelson</strong>, Undergrad (2020–2024) – Presidents Undergraduate Research Award at Georgia Tech (2022, 2023) → Now Ph.D. @ Columbia</li>
<li><strong>Aishwarya Balwani</strong>, Ph.D. (2018–2021) → Now PhD in Hannah Choi’s lab @ Georgia Tech</li>
<li><strong>Kyle Milligan</strong>, Ph.D. (2018–2020) → Now at Northrup Grumman</li>
<li><strong>TJ LaGrow</strong>, Ph.D. (2017–2019) – NSF GRFP Honorable Mention → Now in Shella Keilholz’s lab at Emory</li>
<!-- Undergraduate Students -->
<li><strong>Matthew Jin</strong>, Undergrad (2022–2023) → Master’s @ Stanford</li>
<li><strong>Carolina Urzay</strong>, Undergrad (2021–2022) → Master’s @ TU Delft</li>
<li><strong>Joy M. Jackson</strong>, Undergrad (2021–2022) – NSF GRFP (2023), REU SURE (2021), Best Research in Biomedical Category → Ph.D. @ Georgia Tech with Alex Abramson</li>
<li><strong>Zijing Wu</strong>, Undergrad (2020–2021) → Anqi Wu’s lab @ Georgia Tech, Now Ph.D. @ McGill</li>
<li><strong>Amaal Abdi</strong>, High School Intern (2020–2021) → Undergrad @ Wharton, University of Pennsylvania</li>
<li><strong>Max Dabagia</strong>, Undergrad (2018–2020) – NSF GRFP (2020), PURA (2019) → Ph.D. @ Georgia Tech with Santosh Vempala, Now Postdoc with Christos Papadimitriou @ Columbia</li>
<li><strong>Alexis Webber</strong>, Undergrad (2019) – Charles Hancock Award for Neuroengineering Research → Now at Alpha Omega</li>
<!-- Selected Interns -->
<li><strong>Joseph Miano</strong>, Undergrad (2018–2020) – PURA (2019) → M.S. in CS, now at JPMorgan Chase</li>
</main>
</body>
</html>