forked from NUstat/2025-datafest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmentors.qmd
More file actions
1007 lines (753 loc) · 31.4 KB
/
mentors.qmd
File metadata and controls
1007 lines (753 loc) · 31.4 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
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
---
format:
html:
toc: true
toc-location: right
toc-depth: 5
---
<div id="top"></div>
Meet our talented team mentors! They will be mentoring the competing teams.
<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);
}
.toc-only {
position: absolute;
left: -9999px;
width: 1px;
height: 1px;
overflow: hidden;
}
.mentor-tile {
display: block;
text-decoration: none;
color: inherit;
background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
border: 1px solid var(--df-border);
border-radius: 18px;
box-shadow: var(--df-shadow);
overflow: hidden;
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.mentor-tile-body {
display: block;
padding: 0.95rem 1rem 1rem 1rem;
}
.mentor-tile-name {
display: block;
font-size: 1.08rem;
font-weight: 700;
color: #2f2f35;
margin-bottom: 0.3rem;
line-height: 1.25;
}
.mentor-tile-title {
display: block;
font-size: 0.94rem;
color: var(--df-muted);
line-height: 1.45;
}
.page-intro {
margin-bottom: 1.1rem;
color: var(--df-text);
}
.mentor-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.25rem;
margin-top: 1rem;
margin-bottom: 2rem;
}
@media (max-width: 900px) {
.mentor-grid {
grid-template-columns: repeat(2, 1fr);
}
}
.mentor-tile:hover {
transform: translateY(-4px);
box-shadow: var(--df-shadow-hover);
border-color: rgba(78, 42, 132, 0.20);
}
.mentor-tile.super {
background: linear-gradient(180deg, #fffdf7 0%, #fffcf2 100%);
border-color: var(--df-gold-border);
box-shadow: var(--df-gold-shadow);
}
.mentor-tile.super:hover {
box-shadow: 0 16px 36px rgba(184, 134, 11, 0.18);
border-color: rgba(184, 134, 11, 0.30);
}
.mentor-tile img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
display: block;
}
.profile-card {
background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
border: 1px solid var(--df-border);
border-radius: 18px;
box-shadow: var(--df-shadow);
padding: 1.35rem 1.45rem;
margin-bottom: 1.7rem;
clear: both;
scroll-margin-top: 90px;
}
.profile-card::after {
content: "";
display: table;
clear: both;
}
.profile-card.super-mentor {
background: linear-gradient(180deg, #fffdf7 0%, #fffcf2 100%);
border-color: var(--df-gold-border);
box-shadow: var(--df-gold-shadow);
}
.profile-topbar {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 1rem;
margin-bottom: 0.75rem;
}
.profile-topbar-left {
min-width: 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.55rem;
}
.profile-card.super-mentor .guest-label {
color: #7a5a00;
background: var(--df-gold-bg);
border-color: var(--df-gold-border);
}
.back-to-top {
flex: 0 0 auto;
text-decoration: none;
font-size: 0.92rem;
font-weight: 600;
color: var(--df-purple);
border: 1px solid rgba(78, 42, 132, 0.12);
border-radius: 999px;
padding: 0.42rem 0.8rem;
background: rgba(78, 42, 132, 0.04);
}
.profile-card.super-mentor .back-to-top {
color: #7a5a00;
border-color: rgba(184, 134, 11, 0.22);
background: rgba(184, 134, 11, 0.08);
}
.back-to-top:hover {
text-decoration: none;
}
.profile-photo {
width: 240px;
}
.profile-photo img {
width: 100%;
display: block;
border-radius: 14px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}
.profile-photo.right {
float: right;
margin: 0 0 0.9rem 1.35rem;
}
.profile-photo.left {
float: left;
margin: 0 1.35rem 0.9rem 0;
}
.profile-card.super-mentor .profile-photo img {
box-shadow: 0 10px 24px rgba(184, 134, 11, 0.18);
}
.profile-name {
margin-top: 0;
margin-bottom: 0.25rem;
font-size: 1.75rem;
line-height: 1.15;
letter-spacing: -0.02em;
color: #333;
font-weight: 700;
}
.profile-role {
color: var(--df-purple);
font-weight: 600;
margin-bottom: 0.75rem;
line-height: 1.45;
}
.profile-card.super-mentor .profile-role {
color: #7a5a00;
}
.profile-card p {
line-height: 1.72;
margin-top: 0.55rem;
margin-bottom: 0.78rem;
}
.profile-details {
margin-top: 0.6rem;
}
.profile-details summary {
cursor: pointer;
font-weight: 600;
color: var(--df-purple);
list-style: none;
display: inline-block;
margin-top: 0.15rem;
}
.profile-card.super-mentor .profile-details summary {
color: #7a5a00;
}
.profile-details summary::-webkit-details-marker {
display: none;
}
.profile-details summary::after {
content: " ▼";
font-size: 0.8rem;
}
.profile-details[open] summary::after {
content: " ▲";
}
.profile-details .details-content {
margin-top: 0.7rem;
}
.section-gap {
margin-top: 0.5rem;
}
@media (max-width: 768px) {
.profile-topbar {
flex-direction: column;
align-items: flex-start;
}
.profile-card {
padding: 1.1rem 1rem;
}
.profile-photo {
float: none !important;
margin: 0 0 1rem 0 !important;
width: 200px;
}
.profile-name {
font-size: 1.45rem;
}
}
</style>
## Super Mentors
<div class="mentor-grid">
<a class="mentor-tile super" href="#moses-chan-profile">
<img src="images/moses.jpg" alt="Moses Chan">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Moses Chan</span>
<span class="mentor-tile-title">Assistant Professor of Instruction, IEMS, Northwestern University</span>
</span>
</a>
<a class="mentor-tile super" href="#shengbin-ye-profile">
<img src="images/shengbin.jpg" alt="Shengbin Ye">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Shengbin Ye</span>
<span class="mentor-tile-title">Assistant Professor of Instruction, Statistics and Data Science, Northwestern University</span>
</span>
</a>
<a class="mentor-tile super" href="#shreeya-behera-profile">
<img src="images/shreeya.jpg" alt="Shreeya Behera">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Shreeya Behera</span>
<span class="mentor-tile-title">Assistant Professor of Instruction, Statistics and Data Science, Northwestern University</span>
</span>
</a>
<a class="mentor-tile super" href="#karthik-prabhu-profile">
<img src="images/karthik.jpg" alt="Karthik Prabhu">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Karthik Prabhu</span>
<span class="mentor-tile-title">Associate, Fraud analytics at Avant</span>
</span>
</a>
</div>
## Mentors
<div class="mentor-grid">
<a class="mentor-tile" href="#harvey-wang-profile">
<img src="images/harvey.png" alt="Harvey Wang">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Harvey Wang</span>
<span class="mentor-tile-title">Corporate Strategy and Development Analyst, Molex</span>
</span>
</a>
<a class="mentor-tile" href="#jeffrey-yuan-profile">
<img src="images/jeffrey.jpg" alt="Jeffrey Yuan">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Jeffrey Yuan</span>
<span class="mentor-tile-title">Fourth-year BS/MS Student, Statistics and Data Science, Northwestern University</span>
</span>
</a>
<a class="mentor-tile" href="#jake-miller-profile">
<img src="images/jake.jpg" alt="Jake Miller">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Jake Miller</span>
<span class="mentor-tile-title">Data Science Senior, Northwestern University</span>
</span>
</a>
<a class="mentor-tile" href="#kyle-williams-profile">
<img src="images/kyle.jpg" alt="Kyle Williams">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Kyle Williams</span>
<span class="mentor-tile-title">Software Engineer, Lakeview Investment Group</span>
</span>
</a>
<a class="mentor-tile" href="#harrison-gillespie-profile">
<img src="images/harrison.jpg" alt="Harrison Gillespie">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Harrison Gillespie</span>
<span class="mentor-tile-title">MS student, CS, Northwestern University</span>
</span>
</a>
<a class="mentor-tile" href="#isabel-knight-profile">
<img src="images/isabel.jpg" alt="Isabel Knight">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Isabel Knight</span>
<span class="mentor-tile-title">Associate, Forensic Data and Analytics at Ankura</span>
</span>
</a>
<a class="mentor-tile" href="#aryaman-chawla-profile">
<img src="images/aryaman.jpeg" alt="Aryaman Chawla">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Aryaman Chawla</span>
<span class="mentor-tile-title">MS student, CS, Northwestern University</span>
</span>
</a>
<a class="mentor-tile" href="#raman-khurana-profile">
<img src="images/raman.jpg" alt="Raman Khurana">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Raman Khurana</span>
<span class="mentor-tile-title">LLM/ML researcher, NU</span>
</span>
</a>
<a class="mentor-tile" href="#david-gormley-profile">
<img src="images/david.jpg" alt="David Gormley">
<span class="mentor-tile-body">
<span class="mentor-tile-name">David Gormley</span>
<span class="mentor-tile-title">NLP research student, Stanford</span>
</span>
</a>
<a class="mentor-tile" href="#sutter-augur-profile">
<img src="images/sutter.jpg" alt="Sutter Augur">
<span class="mentor-tile-body">
<span class="mentor-tile-name">Sutter Augur</span>
<span class="mentor-tile-title">BS-MS student, DS & Stats, Northwestern</span>
</span>
</a>
</div>
## Full Profiles {.section-gap}
### {#moses-chan-profile .toc-super}
::: {.profile-card .super-mentor}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Super Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Moses Chan
:::
::: {.profile-photo .right}
{alt="Moses Chan"}
:::
::: {.profile-role}
Assistant Professor of Instruction, IEMS, Northwestern University
:::
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="profile-details">
<summary>Read full profile</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-profile .toc-super}
::: {.profile-card .super-mentor}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Super Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Shengbin Ye
:::
::: {.profile-photo .left}
{alt="Shengbin Ye"}
:::
::: {.profile-role}
Assistant Professor of Instruction, Department of Statistics and Data Science, Northwestern University
:::
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="profile-details">
<summary>Read full profile</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-profile .toc-super}
::: {.profile-card .super-mentor}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Super Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Shreeya Behera
:::
::: {.profile-photo .right}
{alt="Shreeya Behera"}
:::
::: {.profile-role}
Assistant Professor of Instruction, Department of Statistics and Data Science, Northwestern University
:::
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="profile-details">
<summary>Read full profile</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>
:::
### {#karthik-prabhu-profile .toc-super}
::: {.profile-card .super-mentor}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Super Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Karthik Prabhu
:::
::: {.profile-photo .left}
{alt="Karthik Prabhu"}
:::
::: {.profile-role}
Associate, Fraud analytics at Avant
:::
Karthik currently works as an Associate in fraud analytics at Avant where he is building models for fraud detection and risk assessment. He is a recent PhD graduate in Physics from UC Davis, where his work focused on cosmology, machine learning, and statistical modeling.
<details class="profile-details">
<summary>Read full profile</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-profile .toc-super}
::: {.profile-card}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Harvey Wang
:::
::: {.profile-photo .right}
{alt="Harvey Wang"}
:::
::: {.profile-role}
Corporate Strategy and Development Analyst, Molex
:::
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="profile-details">
<summary>Read full profile</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-profile .toc-super}
::: {.profile-card}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Jeffrey Yuan
:::
::: {.profile-photo .left}
{alt="Jeffrey Yuan"}
:::
::: {.profile-role}
Fourth-year BS/MS Student in Statistics and Data Science, Northwestern University
:::
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="profile-details">
<summary>Read full profile</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-profile .toc-super}
::: {.profile-card}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Jake Miller
:::
::: {.profile-photo .right}
{alt="Jake Miller"}
:::
::: {.profile-role}
Data Science Senior, Northwestern University
:::
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="profile-details">
<summary>Read full profile</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-profile .toc-super}
::: {.profile-card}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Kyle Williams
:::
::: {.profile-photo .left}
{alt="Kyle Williams"}
:::
::: {.profile-role}
Software Engineer, Lakeview Investment Group
:::
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="profile-details">
<summary>Read full profile</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>
:::
### {#harrison-gillespie-profile .toc-super}
::: {.profile-card}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Harrison Gillespie
:::
::: {.profile-photo .right}
{alt="Harrison Gillespie"}
:::
::: {.profile-role}
Master's student, Computer Science, Northwestern University
:::
Harrison is a Master’s student in Computer Science at Northwestern University, where he also earned his B.S. in Computer Science with minors in Data Science & Engineering and Business Institutions. His academic and professional interests center on applied AI and data driven decision making.
<details class="profile-details">
<summary>Read full profile</summary>
<div class="details-content">
During his time at Northwestern, Harrison has gained industry experience through multiple data science and analytics internships. He previously worked as a Technology Analyst at a private equity firm which included a project analyzing ESG data across 10,000+ residential properties to uncover cost inefficiencies and resource usage patterns, ultimately informing a proposal for more sustainable and cost effective management strategies. He also served as an Analytics Intern at Caterpillar, where his work included projects that leveraged agentic AI to collect, synthesize, and identify trends in machine health metrics and other customer data. Following graduation, Harrison will join Caterpillar full-time as a Data Scientist within their Data & AI group. In addition to his professional work, he was part of the team that earned the People’s Choice Award and Honorable Mention at last year’s DataFest.
**Mentorship Style:** Harrison approaches mentorship with a strong emphasis on adaptability, learning, and team centered support. He focuses on meeting teams where they are, whether that means helping clarify problem direction or providing structure during the high intensity moments. He aims to be a calm, steady presence when teams feel stuck, helping them regain momentum through thoughtful guidance rather than prescriptive solutions. Harrison is also happy to share insights on his experience with recruiting and working in the data science field.
</div>
</details>
:::
### {#isabel-knight-profile .toc-super}
::: {.profile-card}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Isabel Knight
:::
::: {.profile-photo .left}
{alt="Isabel Knight"}
:::
::: {.profile-role}
Associate, Forensic Data and Analytics at Ankura
:::
Isabel is a recent graduate of Northwestern University, where she earned a degree in Data Science with minors in Spanish and Legal Studies. She is interested in the intersection of technology and law. At Ankura, her work focuses on data-driven investigations, including investment fraud, as well as supporting litigation and trial strategy through data analysis.
<details class="profile-details">
<summary>Read full profile</summary>
<div class="details-content">
During her time at Northwestern, Isabel served as a teaching assistant for two years in the Department of Statistics and Data Science, primarily supporting coursework in the STAT 303 sequence and STAT 302. Isabel also gained industry experience through two summers interning at Toyota within the HR People Analytics team. There, she applied her data science skill set to a variety of impactful projects, including developing an attrition model in Python to predict employee turnover. Currently, Isabel applies her experience to clean, analyze, and visualize large, complex datasets in support of client-facing investigations and litigation matters. Her work often involves transforming unstructured or messy data into clear, actionable insights. Outside of work, Isabel enjoys spending time with her family and keeping up with reality TV, especially Survivor and The Traitors!
**Mentorship Style:** Isabel approaches mentorship with a strong emphasis on collaboration, curiosity, and inclusivity. The best ideas come from open dialogue and values creating an environment where every team member feels comfortable sharing their thoughts, regardless of experience level. Drawing from her background as both a teaching assistant and young professional, she enjoys helping others connect foundational concepts to real-world applications, making complex problems feel more approachable. As a mentor, she aims to foster a team dynamic where individuals feel empowered to contribute meaningfully and support one another.
</div>
</details>
:::
### {#aryaman-chawla-profile .toc-super}
::: {.profile-card}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Aryaman Chawla
:::
::: {.profile-photo .right}
{alt="Aryaman Chawla"}
:::
::: {.profile-role}
Masters student, CS, Northwestern University
:::
Aryaman has a background across a variety of domains such as quantum computing, cryptography, symbolic AI and ML/DL.
<details class="profile-details">
<summary>Read full profile</summary>
<div class="details-content">
He was the first runner-up in Datafest 2025, and is excited to share his experience.
**Mentorship Style:** His focus is on helping teams break down complex problems to build practical solutions, and communicate results clearly.
</div>
</details>
:::
### {#raman-khurana-profile .toc-super}
::: {.profile-card}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Raman Khurana
:::
::: {.profile-photo .left}
{alt="Raman Khurana"}
:::
::: {.profile-role}
LLM/ML Researcher and Lecturer, Northwestern University
:::
Raman is a Postdoctoral Researcher at the Center for Deep Learning and a Lecturer in the MS in Machine Learning & Data Science program at Northwestern University.
<details class="profile-details">
<summary>Read full profile</summary>
<div class="details-content">
With a PhD in Physics and over 15 years of experience working with large-scale data, he brings a unique blend of scientific rigor and AI innovation to his work. At CERN, he contributed to the Nobel Prize-winning discovery of the Higgs boson. His current research focuses on time series forecasting, automated feature engineering for streaming data, and generative AI
Raman builds agentic AI systems using open-source small- and medium-sized models and explores methods to apply them to real-world business problems. Drawing on his physics background, he developed a physics-inspired feature generator that models time series data as a flowing river. He finds joy in exploring numbers and algorithms but finds it even more rewarding to share those experiences with fellow data scientists in industry and the next generation of data professionals in the MS in Machine Learning & Data Science program. For Raman, the true excitement lies not just in solving complex problems, but in making those insights accessible, collaborative, and impactful.
</div>
</details>
:::
### {#david-gormley-profile .toc-super}
::: {.profile-card}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
David Gormley
:::
::: {.profile-photo .right}
{alt="David Gormley"}
:::
::: {.profile-role}
NLP research associate, Stanford
:::
David is an education-NLP research associate under Professors Loeb and Demszky at Stanford GSE. H
<details class="profile-details">
<summary>Read full profile</summary>
<div class="details-content">
He is interested in co-designing NLP-based education tools with students, educators, and researchers to support young learners. As a data scientist, David specializes in scaled NLP, though he also has experience with computer vision and exploring novel ML modeling approaches.
**Mentorship Style:** His mentorship style is rooted in pedagogy: he aims to create a student-centered environment where students feel empowered to use data science to tackle problems they care about.
</div>
</details>
:::
### {#sutter-augur-profile .toc-super}
::: {.profile-card}
::: {.profile-topbar}
::: {.profile-topbar-left}
::: {.guest-label}
Mentor
:::
:::
[Go back to top ↑](#top){.back-to-top}
:::
::: {.profile-name}
Sutter Augur
:::
::: {.profile-photo .left}
{alt="Sutter Augur"}
:::
::: {.profile-role}
BS-MS student in Data Science & Statistics, Northwestern University
:::
Sutter's academic and professional interests center on machine learning, regression analysis, and statistical inference.
<details class="profile-details">
<summary>Read full profile</summary>
<div class="details-content">