forked from NUstat/2025-datafest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmentors_old_style.qmd
More file actions
444 lines (320 loc) · 15.6 KB
/
mentors_old_style.qmd
File metadata and controls
444 lines (320 loc) · 15.6 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
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
---
title: "Meet Our Team Mentors"
format:
html:
toc: true
toc-location: right
toc-depth: 4
---
Meet our talented team mentors! They will be mentoring the participant teams competing in the event.
<style>
:root {
--df-purple: #4E2A84;
--df-purple-dark: #3b1f63;
--df-text: #2f2f35;
--df-muted: #6b7280;
--df-card: #ffffff;
--df-border: rgba(78, 42, 132, 0.10);
--df-shadow: 0 10px 28px rgba(46, 16, 84, 0.10);
--df-shadow-hover: 0 16px 36px rgba(46, 16, 84, 0.16);
--df-gold: #b8860b;
--df-gold-bg: rgba(184, 134, 11, 0.12);
--df-gold-border: rgba(184, 134, 11, 0.22);
--df-gold-shadow: 0 12px 30px rgba(184, 134, 11, 0.14);
}
/* Make ONLY top-level sections (like Super Mentors, Mentors) bold in TOC */
#TOC > ul > li > a {
font-weight: 700;
}
/* Hidden headings used only for TOC */
h3.mentor-anchor {
position: absolute;
left: -9999px;
margin: 0;
padding: 0;
height: 0;
overflow: hidden;
}
.guest-card {
background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
border: 1px solid var(--df-border);
border-radius: 16px;
box-shadow: var(--df-shadow);
padding: 1.3rem 1.4rem;
margin-bottom: 1.8rem;
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
clear: both;
}
.guest-card:hover {
transform: translateY(-3px);
box-shadow: var(--df-shadow-hover);
border-color: rgba(78, 42, 132, 0.18);
}
.guest-card::after {
content: "";
display: table;
clear: both;
}
/* Default photo styling */
.guest-photo {
width: 220px;
}
.guest-photo img {
width: 100%;
display: block;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}
/* Explicit alternating layout */
.guest-card.right .guest-photo {
float: right;
margin: 0 0 0.8rem 1.3rem;
}
.guest-card.left .guest-photo {
float: left;
margin: 0 1.3rem 0.8rem 0;
}
.guest-label {
display: inline-block;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--df-purple);
background: rgba(78, 42, 132, 0.08);
border: 1px solid rgba(78, 42, 132, 0.10);
border-radius: 999px;
padding: 0.28rem 0.65rem;
margin-bottom: 0.6rem;
}
/* Super Mentor highlight */
.guest-card.super-mentor {
background: linear-gradient(180deg, #fffdf7 0%, #fffcf2 100%);
border: 1px solid var(--df-gold-border);
box-shadow: var(--df-gold-shadow);
}
.guest-card.super-mentor:hover {
border-color: rgba(184, 134, 11, 0.32);
box-shadow: 0 16px 36px rgba(184, 134, 11, 0.18);
}
.guest-card.super-mentor .guest-label {
color: #7a5a00;
background: var(--df-gold-bg);
border-color: var(--df-gold-border);
}
.guest-card.super-mentor .guest-role {
color: #7a5a00;
}
.guest-card.super-mentor .guest-photo img {
box-shadow: 0 10px 24px rgba(184, 134, 11, 0.18);
}
.guest-name {
margin-top: 0;
margin-bottom: 0.25rem;
font-size: 1.7rem;
line-height: 1.15;
letter-spacing: -0.02em;
color: #333;
font-weight: 700;
}
.guest-role {
color: var(--df-purple);
font-weight: 600;
margin-bottom: 0.7rem;
line-height: 1.4;
}
.guest-card p {
line-height: 1.7;
margin-top: 0.55rem;
margin-bottom: 0.75rem;
}
.guest-card ul {
margin-top: 0.5rem;
margin-bottom: 0.8rem;
padding-left: 1.2rem;
}
.guest-card li {
line-height: 1.6;
margin-bottom: 0.4rem;
}
.guest-details {
margin-top: 0.6rem;
}
.guest-details summary {
cursor: pointer;
font-weight: 600;
color: var(--df-purple);
list-style: none;
display: inline-block;
margin-top: 0.2rem;
}
.guest-card.super-mentor .guest-details summary {
color: #7a5a00;
}
.guest-details summary::-webkit-details-marker {
display: none;
}
.guest-details summary::after {
content: " ▼";
font-size: 0.8rem;
}
.guest-details[open] summary::after {
content: " ▲";
}
.guest-details .details-content {
margin-top: 0.7rem;
}
@media (max-width: 768px) {
.guest-card {
padding: 1.1rem 1rem;
}
.guest-photo {
float: none !important;
margin: 0 0 1rem 0 !important;
width: 200px;
}
.guest-name {
font-size: 1.45rem;
}
}
</style>
## Super Mentors {#super-mentors}
### Moses Chan {#moses-chan .mentor-anchor}
::: {.guest-card .super-mentor .right}
::: {.guest-photo}
{alt="Moses Chan"}
:::
<div class="guest-label">Super Mentor</div>
<div class="guest-name">Moses Chan</div>
<div class="guest-role">Assistant Professor of Instruction, IEMS, Northwestern University</div>
Moses co-directs the Minor in Machine Learning & Data Science. His research focuses on developing efficient algorithms at the intersection of statistical theory, computer modeling, and the physical sciences, with particular emphasis on Bayesian computation and data science education in engineering.
<details class="guest-details">
<summary>Read more</summary>
<div class="details-content">
He holds a Ph.D. in Industrial Engineering and Management Sciences from Northwestern University. He is the recipient of the 2025/26 Searle Fellowship.
Chan is an active contributor to the NSF CSSI Framework for Bayesian Analysis of Nuclear Dynamics, developing and maintaining the open-source packages surmise and LCGP. In Summer 2025, he collaborated as a Visiting Researcher on projects quantifying parameter importance in numerical physics models at Chalmers University of Technology in Gothenburg, Sweden.
**Mentorship Style:** Chan believes progress matters more than perfection. He works closely with students to build a genuine understanding of their data problems — encouraging them to question assumptions, communicate findings clearly, and think critically at every step. His goal is to make sure students feel supported as they tackle real-world challenges together.
</div>
</details>
:::
### Shengbin Ye {#shengbin-ye .mentor-anchor}
::: {.guest-card .super-mentor .left}
::: {.guest-photo}
{alt="Shengbin Ye"}
:::
<div class="guest-label">Super Mentor</div>
<div class="guest-name">Shengbin Ye</div>
<div class="guest-role">Assistant Professor of Instruction, Department of Statistics and Data Science, Northwestern University</div>
Shengbin co-instructs the undergraduate data science curriculum and co-advises the MS program in Statistics and Data Science. He is passionate about making complex data easy to understand. His research focuses on symbolic regression—a way of teaching computers to find simple, human-readable math equations that explain patterns in data. By combining statistical theory with efficient algorithms, he helps turn "black box" models into transparent insights that anyone can interpret.
<details class="guest-details">
<summary>Read more</summary>
<div class="details-content">
Shengbin holds a Ph.D. in Statistics from Rice University. He joined the Department of Statistics and Data Science in September 2025. His research background includes work on high-dimensional regression and nonparametric variable selection. He is an advocate for open-source software and reproducible research, frequently working with R and Python to solve complex data challenges.
**Mentorship Style:** Shengbin believes in the iterative nature of data science. He encourages students to view model building as a process of continuous refinement rather than a single destination. He is an active listener who helps students think critically about their evidence, guiding them to bridge the gap between complex statistical results and persuasive, high-level narratives.
</div>
</details>
:::
### Shreeya Behera {#shreeya-behera .mentor-anchor}
::: {.guest-card .super-mentor .right}
::: {.guest-photo}
{alt="Shreeya Behera"}
:::
<div class="guest-label">Super Mentor</div>
<div class="guest-name">Shreeya Behera</div>
<div class="guest-role">Assistant Professor of Instruction, Department of Statistics and Data Science, Northwestern University</div>
Before joining Northwestern, Shreeya was a Data Scientist at Pandora Bio. She is also a passionate educator and deeply interested in using data science to improve education and student mental health.
<details class="guest-details">
<summary>Read more</summary>
<div class="details-content">
Shreeya received her PhD in Mathematics and a minor in Computer Science from The Ohio State University in 2024. Her research spans combinatorics, graph theory, and machine learning. At Pandora Bio, she built machine learning models for early detection of stress and anxiety triggers in college students, contributing to work at the intersection of data science, mental health, and education.
**Mentorship Style:** She is a careful listener who takes the time to understand exactly where a student is struggling before offering guidance. She focuses on strengthening fundamentals and explaining concepts in a way that is clear, approachable, and tailored to each student’s level of experience.
</div>
</details>
:::
## Mentors {#mentors}
### Karthik Prabhu {#karthik-prabhu .mentor-anchor}
::: {.guest-card .left}
::: {.guest-photo}
{alt="Karthik Prabhu"}
:::
<div class="guest-label">Mentor</div>
<div class="guest-name">Karthik Prabhu</div>
<div class="guest-role">PhD graduate, UC Davis</div>
Karthik is a recent PhD graduate in Physics from UC Davis, where his work focused on cosmology, machine learning, and statistical modeling. He has experience applying machine learning techniques to real-world data, and currently works in fraud analytics, building models for detection and risk assessment.
<details class="guest-details">
<summary>Read more</summary>
<div class="details-content">
Karthik is an AI enthusiast and enjoys keeping up with breakthroughs in foundational models. He has worked on topics ranging from Bayesian inference, image processing, time-series analysis, anomaly detection, and generative AI.
**Mentorship Style:** Karthik encourages curiosity-driven learning and is passionate about helping others grow in their data science and machine learning journey. He asks questions to help the mentees think through the problems and build confidence in their problem-solving skills.
</div>
</details>
:::
### Harvey Wang {#harvey-wang .mentor-anchor}
::: {.guest-card .right}
::: {.guest-photo}
{alt="Harvey Wang"}
:::
<div class="guest-label">Mentor</div>
<div class="guest-name">Harvey Wang</div>
<div class="guest-role">Corporate Strategy and Development Analyst, Molex</div>
Harvey is a recent graduate of Northwestern with majors in Data Science and Economics and a minor in Comparative Literature. He builds internal data tools and designs go-to-market strategies for AI-driven data center infrastructure.
<details class="guest-details">
<summary>Read more</summary>
<div class="details-content">
He has also participated in a Northwestern ML research team where he trained neural networks to classify ocular cancer. Additionally, Harvey has worked with Chicagoland nonprofits to manage large-scale donor data and identify high-impact retention tactics. He is experienced in data structures, statistical modeling, and market sizing. Harvey is passionate about discussing ML concepts and helping teams bridge the gap between technical analysis and executive-level strategy.
**Mentorship Style:** Harvey is creative, communicative, and evidence-driven, focusing on impactful modeling and clear data storytelling. He is an active listener who enjoys helping teams translate complex outputs into persuasive, high-level narratives that drive decision-making.
</div>
</details>
:::
### Jeffrey Yuan {#jeffrey-yuan .mentor-anchor}
::: {.guest-card .left}
::: {.guest-photo}
{alt="Jeffrey Yuan"}
:::
<div class="guest-label">Mentor</div>
<div class="guest-name">Jeffrey Yuan</div>
<div class="guest-role">Fourth-year BS/MS Student in Statistics and Data Science, Northwestern University</div>
Jeffrey is passionate about data science, machine learning, and AI, and currently works as a Data Scientist at CME Group. His work has explored topics such as graph neural networks, recommendation systems, LLM chain-of-thought reasoning, and agentic AI tools for complex data workflows.
<details class="guest-details">
<summary>Read more</summary>
<div class="details-content">
On campus, Jeffrey’s research focuses on applying statistical and machine learning methods to problems in drug discovery and medical AI, including improving reasoning and counterfactual analysis in large language models. He also enjoys teaching and mentoring students in statistics and data science and has served as a teaching assistant for Northwestern’s Data Science sequence and Advanced Machine Learning courses. Outside of data science, he enjoys playing basketball, swimming, and exploring new food spots around Chicago.
**Mentorship Style:** At DataFest, Jeffrey is excited to collaborate with different teams, dive into new datasets, and uncover the interesting stories hidden in data.
</div>
</details>
:::
### Jake Miller {#jake-miller .mentor-anchor}
::: {.guest-card .right}
::: {.guest-photo}
{alt="Jake Miller"}
:::
<div class="guest-label">Mentor</div>
<div class="guest-name">Jake Miller</div>
<div class="guest-role">Data Science Senior, Northwestern University</div>
Throughout his college career, Jake has taken many classes in the Statistics department and has especially enjoyed his coursework in machine learning techniques.
<details class="guest-details">
<summary>Read more</summary>
<div class="details-content">
Some projects he has worked on include building and quantizing a CNN model to create a lightweight word detection model and building a dashboard to help break down call data for a non-profit law firm. Though he started full-time work in September, he is currently working on a personal project to build an NBA salary cap manager application.
**Mentorship Style:** As a mentor, Jake hopes to be a great sounding board for his mentees to bounce ideas off of. Jake also loves to talk more about his school and career path to give insights in any way and place that he can.
</div>
</details>
:::
### Kyle Williams {#kyle-williams .mentor-anchor}
::: {.guest-card .left}
::: {.guest-photo}
{alt="Kyle Williams"}
:::
<div class="guest-label">Mentor</div>
<div class="guest-name">Kyle Williams</div>
<div class="guest-role">Software Engineer, Lakeview Investment Group</div>
Kyle earned his BS in Computer Science with a Minor in Data Science in June 2023, followed by an MS in Computer Science in June 2024. While he took a majority of his courseload in the CS Department, it is the application of math, statistics, and science through code that is the most interesting to him.
<details class="guest-details">
<summary>Read more</summary>
<div class="details-content">
Kyle has always been drawn to Machine Learning and Data Analysis. Being able to understand and communicate about data makes him feel powerful and responsible.
As a part of his master’s, Kyle completed a Thesis on LLMs (Large Language Models), where he augmented the attention mechanism to use Euclidean distance instead of dot-product to improve the performance of small models on OpenBookQA by 14%. Currently, Kyle is helping build high-speed, real-time dashboards and trading systems to display important statistics and execute orders when certain triggers are reached.
**Mentorship Style:** Kyle’s greatest strength as a mentor is his patience. As a triplet, Kyle had to share everything – even a birthday – and it’s made him a great listener, effective mediator and strong communicator. Kyle loves talking about code, and he hopes to be a resource for any student who wants to learn more about what it means to be a Computer Scientist in industry. Outside of tech, Kyle’s also a big fan of wrestling and football—and always happy to connect over either!
</div>
</details>
:::