-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.tex
680 lines (539 loc) · 33.1 KB
/
cv.tex
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
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[paper=letterpaper,left=.9in,right=.9in,top=1in,bottom=1in]{geometry}
\usepackage{parskip,multicol,xurl}
\usepackage{baskervald} % default font
\usepackage{changepage}
\newenvironment{main}
{\begin{adjustwidth}{3em}{}}
{\end{adjustwidth}}
\usepackage{fancyhdr,lastpage}
\pagestyle{fancy}
\fancyhf{}
\rhead{Fred Feng}
\lhead{Curriculum Vit\ae}
\cfoot{\thepage\ of \pageref*{LastPage}}
\renewcommand{\baselinestretch}{1.05} % line spacing
\usepackage[dvipsnames]{xcolor}
\usepackage{hyperref}
\definecolor{darkblue}{rgb}{0.0,0,0.5}
\hypersetup{colorlinks=true,urlcolor=darkblue,linkcolor=darkblue}
\usepackage{setspace} % change line spacing
% bibliography
\usepackage[maxbibnames=99,sorting=none,backend=biber,bibencoding=utf8]{biblatex}
\addbibresource{publications.bib}
\setlength\bibitemsep{0.3\baselineskip} % increase spacing between items
\DeclareFieldFormat{labelnumberwidth}{#1\adddot} % remove the bracket
\renewbibmacro{in:}{} % suppress "In:"
% highlight the name of myself
\renewcommand*{\mkbibnamegiven}[1]{%
\ifitemannotation{highlight}
{\textcolor{BrickRed}{#1}}
{#1}}
\renewcommand*{\mkbibnamefamily}[1]{%
\ifitemannotation{highlight}
{\textcolor{BrickRed}{#1}}
{#1}}
\urlstyle{same} % use the same font style for url
\newcommand{\FredFeng}{\textcolor{BrickRed}{Fred Feng}}
\newcommand{\RuijiaFeng}{\textcolor{BrickRed}{Ruijia Feng}}
\title{\vspace{-5em}} % reduce the blank space above title
\author{}
\date{}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Begin CV %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\maketitle
\begin{multicols}{2}
% {\fontfamily{phv}\selectfont\Huge\textbf{Fred Feng}} % name
% {\fontfamily{garamondx}\selectfont\Huge\textbf{Fred Feng}} % name
{\Huge\textbf{Fred Feng}} % name
\hfill\break
\hfill\break
\hfill\break
\hfill\break
\hfill\break
\begin{flushright}
{\setstretch{1.15}
University of Michigan-Dearborn\\
Industrial and Manufacturing Systems Engineering\\
4901 Evergreen Rd, Dearborn, MI 48128, USA\\
% Office phone: 313-593-5274\\
Email: \href{mailto:[email protected]}{[email protected]}\\
% Personal website: \url{http://www.umich.edu/~fredfeng/}\\
Research website: \url{https://fenggroup.org}\\
% Personal GitHub: \url{https://github.com/frfeng}\\
Research GitHub: \url{https://github.com/fenggroup}\\
% \url{https://twitter.com/fredfeng}\\
}
\end{flushright}
\end{multicols}
\vspace{-10ex}
\noindent\makebox[\linewidth]{\rule{\textwidth}{0.8pt}}
\section*{Research areas}
\begin{main}
Advancing sustainable, active, and just transportation systems through data-driven insights
To this end, we use a variety of research methods including
data analytics,
% observational studies,
% laboratory experiments,
applied statistics,
causal inference,
machine learning,
human factors,
and computational modeling and simulation.
% \textbf{Methods}:
% Behavioral data analysis,
% statistical learning,
% human performance modeling,
% human factors,
% human-machine interaction
% \textbf{Applications}:
% Driver behavior \& modeling,
% cycling safety,
% pedestrian safety,
% human-centered mobility,
% sustainable transportation
\end{main}
\section*{Employment}
\begin{main}
\href{https://umdearborn.edu/}{\textbf{University of Michigan-Dearborn}},
\href{https://umdearborn.edu/cecs/departments/industrial-and-manufacturing-systems-engineering}{Industrial and Manufacturing Systems Engineering}
\begin{itemize}
\item Associate Professor, 2024-present
\item Assistant Professor, 2018-2024
\end{itemize}
\href{http://www.umtri.umich.edu/}{\textbf{University of Michigan Transportation Research Institute (UMTRI)}}
\begin{itemize}
\item Postdoctoral Research Fellow, 2015-2018, Advisor: \href{https://sites.google.com/umich.edu/hfet-lab/people}{Shan Bao}
\end{itemize}
\end{main}
\section*{Education}
\begin{main}
\textbf{Ph.D., \href{https://ioe.engin.umich.edu/}{Industrial and Operations Engineering}}, 2015\\
\href{https://umich.edu/}{University of Michigan, Ann Arbor}\\
Thesis: \href{https://deepblue.lib.umich.edu/handle/2027.42/113590}{``Queuing network modeling of human multitask performance and its application to usability testing of in-vehicle infotainment systems''}\\
Advisor: \href{https://ioe.engin.umich.edu/people/yili-liu/}{Yili Liu}
\textbf{M.S., Mechanical Engineering}, 2009\\
\href{https://www.tsinghua.edu.cn/en/index.htm}{Tsinghua University}, China\\
Thesis: ``Driver drowsiness detection based on multi-sensor data fusion''\\
Advisor: \href{http://www.svm.tsinghua.edu.cn/essay/80/1799.html}{Bo Cheng}
\textbf{B.E., Automotive Engineering}, 2006\\
\href{https://www.tsinghua.edu.cn/en/index.htm}{Tsinghua University}, China
\end{main}
\newpage
\section*{Grants}
\begin{main}
% \textbf{Assistant Professor @ University of Michigan-Dearborn}
\textbf{External Grants}
\begin{enumerate}
\item ``\href{https://www.nsf.gov/awardsearch/showAward?AWD_ID=2142757}{CAREER: Improving bicycling safety by developing a research framework for studying driver-bicyclist interactions}''
National Science Foundation (NSF) Faculty Early Career Development (CAREER) Award (\$549,037), 5 years (2022-2027), PI: Fred Feng
\item ``A data-driven approach on examining vulnerable road user safety: from real-world corner cases to virtual simulation''
Sponsor: \href{https://amrd.toyota.com/division/csrc/}{Toyota Collaborative Safety Research Center}, 18 months (2022-2023), PI: Shan Bao, Co-PI: Fred Feng
\item ``Online driver model development to support shift schedule optimization and powertrain system improvements"
Sponsor: Ford Motor Company, 2 years (2021-2023), PI: Fred Feng
\item ``Research on the trending of micromobility: patterns and issues''
Sponsor: \href{https://mcity.umich.edu/}{Mcity} tailored project from Honda Motor Company, 9 months (2021-2022), PI: Shan Bao, Co-PI: Fred Feng
\item ``A continued naturalistic bicycling study in Ann Arbor and bicycle corner case simulation in CARLA''
Sponsor: \href{https://www.tri.global/}{Toyota Research Institute}, 2 years (2019-2020), PI: Fred Feng
\item ``Developing bicycle-related corner case scenarios and a bicyclist model for testing self-driving cars using naturalistic driving data and crash data''
Sponsor: \href{https://www.tri.global/}{Toyota Research Institute}, 7 months (2018-2019), Subaward, PI: Fred Feng
\item ``A naturalistic bicycling study in the Ann Arbor area''
Sponsor: \href{https://www.tri.global/}{Toyota Research Institute}, 4 months (2018), Subaward, PI: Fred Feng
\end{enumerate}
\textbf{Internal Grants}
\begin{enumerate}
\item ``Developing an open-source and scalable platform for analyzing and publishing bike traffic data: a community-engaged approach to sustainable transportation planning and benchmarking''
Research Initiation \& Development Grant (\$24,984), 2022-2023, PI: Fred Feng
\item ``The e-bike boom: Examining key safety factors on e-bike potential to promote sustainability and equity in Detroit''
UM-Dearborn–UM-Flint Collaborative Research Grants, (\$39,970), 2022-2023, Co-PI: Fred Feng
\item ``Measuring bicycle traffic volume using pneumatic bicycle counter''
Summer Undergraduate Research Experience (SURE) Program (\$3,200), 2022, PI: Fred Feng
(\href{https://umdearborn.edu/academics/undergraduate-studies/undergraduate-research/sure-program}{The student mentee Christopher Salisbury won the 2nd place poster award.})
\item ``Collection and analysis of traffic data to examine the effectiveness of the Dearborn Healthy Streets program''
Office of Metropolitan Impact (OMI) Community-Based Research Seed Grants (\$8,180), 2021, PI: Fred Feng
% \item ``Collection and Analysis of Quantitative Data during the Dearborn Healthy Streets Program''
% Summer Undergraduate Research Experience (SURE) Program (\$3,200), 2021, PI: Fred Feng
\item ``Center for Community Health and Equity Research''
Research Planning Grants for Catalyzing Faculty Research Innovation and Collaboration (\$9,968), 2020, Co-PI: Fred Feng
\item ``A Browser-based Tool for Interactive Visualizations of Probability Distributions''
Open Educational Resources (OER) Supplemental Materials Grant (\$500), 2020, PI: Fred Feng
\end{enumerate}
% Before becoming a faculty member, I was the primary proposal writer of the grants listed below. Note most grants did not allow non-faculty researchers to be PIs.
% \textbf{Postdoctoral Fellow @ University of Michigan Transportation Research Institute (UMTRI)}
% \begin{enumerate}
% \item ``Developing bicycle-related corner case scenarios and a bicyclist model for testing self-driving cars using naturalistic driving data and crash data'' \\
% Sponsor: Toyota Research Institute, Inc., 15 months (2018-2019), PI: Shan Bao
% \item ``A naturalistic bicycling study in the Ann Arbor area'' \\
% Sponsor: Toyota Research Institute, Inc., two years (2017-2018), PI: Shan Bao
% \item ``The study on vehicle drivers and bicyclists interactions and communications'' \\
% Sponsor: Toyota Research Institute, Inc., one year (2017), PI: Shan Bao
% \item ``Studying interactions between motor vehicles and bicyclists under existing infrastructure using large-scale naturalistic driving data'' \\
% Sponsor: University of Michigan Mcity, one year (2017), PI: Shan Bao
% \item ``Evaluation of the efficacy of multiple training strategies on drivers’ safe operation and trust calibration of Level 2 \& 3 automated vehicle systems'' \\
% Sponsor: University of Michigan Mcity, two years (2016-2017), PI: Shan Bao
% \end{enumerate}
% \textbf{PhD student @ University of Michigan, Ann Arbor}
% \begin{enumerate}
% \item ``Computational driver modeling and software for the optimization of multimodal interactions between the driver and in-vehicle infotainment systems'' \\
% Sponsor: Ford Motor Company, two years (2015-2016), PI: Yili Liu
% \item ``Computational Cognitive Modeling and Software for the Optimization of Multimodal Interactions between Driver and In-Vehicle Infotainment Systems'' \\
% Sponsor: Ford Motor Company, two years (2013-2014), PI: Yili Liu
% \end{enumerate}
\end{main}
\section*{Publications}
\begin{main}
\textbf{Refereed Journal Articles}
\begin{refsection}
\nocite{
ammar2023identifying,
avetisyan2022design,
sun2021online,
yu2019examination,
feng2018estimation,
feng2018drivers,
feng2018effects,
feng2017can,
feng2017computer,
cheng2012driver,
}
\printbibliography[heading=none] % remove the References heading
\end{refsection}
\textbf{Refereed Conference Proceedings}
\begin{refsection}
\nocite{
feng2023development,
aditya2023systematic,
munnamgi2022automatic,
feng2021cyclingsim,
feng2020naturalistic,
bao2019examination,
yu2019drivers,
feng2018vehicle,
jeong2017computational,
feng2016spectral,
chen2016development,
feng2014computer,
feng2013computational,
feng2009board,
zhang2008a,
zhang2008b,
lin2008analysis,
}
\printbibliography[heading=none] % remove the References heading
\end{refsection}
\textbf{Book Chapters}
\begin{refsection}
\nocite{
owens2019automated,
pradhan2019training,
}
\printbibliography[heading=none] % remove the References heading
\end{refsection}
\textbf{Technical Reports}
\begin{refsection}
\nocite{
feng2013speech,
chen2012survey,
}
\printbibliography[heading=none] % remove the References heading
\end{refsection}
\textbf{Granted Patents}
\begin{refsection}
\nocite{
Sarvestani2019systems,
delp2020system,
delp2020passing,
}
\printbibliography[heading=none] % remove the References heading
\end{refsection}
\textbf{Refereed Chinese Language Journal Articles \& Conference Proceedings}
\begin{refsection}
\nocite{
zhang2010real,
cheng2009driver,
cheng2008real,
feng2008rear,
cheng2007review,
}
\printbibliography[heading=none] % remove the References heading
\end{refsection}
\end{main}
\section*{Open-source software}
\begin{main}
\begin{itemize}
\item \href{https://probstats.org/}{Interactive visualization of probability distributions} (\href{https://github.com/probstats/probstats.github.io}{GitHub repository})
\item Web-based interactive dashboards for bicycle counter data
\begin{itemize}
\item \href{https://bikecounter.org/}{Dashboard based on Python \& Plotly} (\href{https://github.com/fenggroup/bike-traffic-plotly-dash}{GitHub repository})
\item Dashboard based on JavaScript \& D3.js (\href{https://github.com/fenggroup/bike-counter-d3}{GitHub repository})
\end{itemize}
\item \href{https://fenggroup.org/pointcloud/examples/bike-2.html}{Web-based point cloud visualization for active transportation} (\href{https://github.com/fenggroup/pointcloud}{GitHub repository})
\end{itemize}
\end{main}
\section*{Invited talks \& seminars}
\begin{main}
\begin{itemize}
\item ``Cycling safety: From crash data analysis to a naturalistic cycling study'', \href{https://ccat.umtri.umich.edu/}{Center for Connected and Automated Transportation (CCAT)} Research Review, October 2021 (\href{https://www.youtube.com/watch?v=bbyOCaJ4P7s}{recording})
\item ``A Naturalistic Cycling Study in Ann Arbor, Michigan'', Tran-SET Webinar Series, September 2021 (\href{https://www.youtube.com/watch?v=89XMKwFIjbk}{recording})
\item ``Sorry Mate I Didn't See You-Driver distraction and in-vehicle infotainment touch screen user interface design'', General Motors Human Factors/User Experience Seminar, June 2020
\item ``Bicycling safety in the future of mobility'' Next Generation Transportation Systems Seminar Series, University of Michigan, Ann Arbor, Civil and Environmental Engineering, September 2019
\item ``Bicycling safety and human-powered mobility in the era of automated driving.'' New Faculty Research Seminar Series, University of Michigan-Dearborn, November 2018
\item Automated Vehicle Symposium Breakout Session: ``AVs \& Vulnerable road users: Envisioning a healthy, safe, and equitable future'', July 2018
\item Michigan Bicycle Conference: Bicycle Data and Research Workshop, June 2018
\item Transportation Research Board Annual Meeting Workshop: ``When AV and people meet – planning for the pedestrian/bike/autonomous vehicle interaction'', January 2018
\item Michigan Institute for Data Science (MIDAS) Mobile Sensor Meeting, November 2017
\item ``Here's the data, now what? Using large-scale naturalistic driving data to study driver behaviors and develop advance safety technologies'' Next Generation Transportation Systems Seminar Series, University of Michigan, Ann Arbor, Civil and Environmental Engineering, April 2017
\end{itemize}
\end{main}
\section*{Press}
\begin{main}
\begin{itemize}
\item \href{https://www.mlive.com/news/ann-arbor/2023/08/ann-arbor-bikeway-clocks-record-high-10000-plus-trips-in-july.html}{Ann Arbor bikeway clocks record-high 10,000-plus trips in July}, MLive, August 2023
\item \href{https://www.mlive.com/news/ann-arbor/2023/03/ann-arbors-new-bikeways-used-by-many-help-grow-bike-ridership.html}{``Ann Arbor’s new bikeways used by many, help grow bike ridership''}, MLive, March 2023
\item \href{https://www.michigandaily.com/news/moving-beyond-gold-level-ann-arbor-cyclists-want-better-biking-infrastructure/}{``Moving beyond Gold-Level: Ann Arbor cyclists want better biking infrastructure''}, The Michigan Daily, March 2022
\item \href{https://umdearborn.edu/news/articles/um-dearborns-fred-feng-lands-nsf-career-award-advance-bicycle-safety-research}{``UM-Dearborn’s Fred Feng lands NSF CAREER Award to advance bicycle safety research''}, University of Michigan-Dearborn, March 2022
\item \href{https://midas.umich.edu/improving-bicycling-safety/}{``Improving bicycling safety by developing a research framework for studying driver-bicyclist interactions''}, Michigan Institute for Data Science (MIDAS), February 2022
\item \href{https://umdearborn.edu/news/articles/where-virtual-reality-taking-us-next}{``Where virtual reality is taking us next''}, University of Michigan-Dearborn, January 2022
\item \href{https://umdearborn.edu/news/articles/bike-safety-research-going-high-res-new-technology}{``Bike safety research is going `high-res' with this new technology''}, University of Michigan-Dearborn, July 2021
\item \href{http://umich.edu/~fredfeng/files/Making-it-safer-to-bike-alongside-autonomous-cars.pdf}{``Making it safer to bike alongside autonomous cars''}, University of Michigan Business Engagement Center, May 2020
\item \href{https://www.forbes.com/sites/carltonreid/2019/04/16/painted-white-lines-are-not-cyclist-protecting-forcefields-agree-experts/}{``Painted white lines are not cyclist-protecting forcefields, agree experts''}, Forbes, April 2019
\item \href{https://www.forbes.com/sites/carltonreid/2018/10/10/unlucky-for-bicyclists-every-13th-passing-motorist-is-looking-elsewhere/}{``Unlucky for bicyclists, every 13th passing motorist is looking elsewhere''}, Forbes, October 2018
\end{itemize}
\end{main}
\section*{Teaching}
\begin{main}
\textbf{\href{https://imse586.github.io/}{IMSE 586 Big Data Analytics and Visualization}}, F2018, F2019, F2020, F2021, F2022, F2023
\begin{itemize}
\item[] Graduate course, University of Michigan-Dearborn
\item[] \textit{Topics}: This course provides students with hands-on experience of using analytical and predictive modeling techniques and software. Topics include data manipulation, visualization, and applied statistical learning methods including linear regression, classification, dimensionality reduction, clustering, and time-series analysis.
\end{itemize}
\textbf{\href{https://www.imse440.org/}{IMSE 440 Applied Statistical Models in Engineering}}, W2020, W2021, W2022, W2023, W2024
\begin{itemize}
\item[] Undergraduate course, University of Michigan-Dearborn
\item[] \textit{Topics}: Simple and multiple linear regression models, analysis of variance, model diagnosis, evaluation, and selection, logistic regression, and an introduction to design of experiments. The course also provides an introduction and hands-on activities of analyzing data in Python.
\end{itemize}
\textbf{\href{https://imse317.github.io/}{IMSE 317 Engineering Probability and Statistics}}, W2019, F2020, W2021, F2021, W2022
\begin{itemize}
\item[] Undergraduate course, University of Michigan-Dearborn
\item[] \textit{Topics}: Descriptive statistics and data visualization, set theory, permutations and combinations, Bayes’ theorem, independence, discrete and continuous random variables, conditional and joint probability, central limit theorem, point estimation, confidence intervals, hypothesis testing.
\end{itemize}
\textbf{IOE 366 Linear Statistical Models}, F2017
\begin{itemize}
\item[] Undergraduate course, University of Michigan, Ann Arbor. Co-instructed with Shan Bao
\item[] \textit{Topics}: Linear statistical models and their application to engineering data analysis. Linear regression and correlation, multiple linear regression, stepwise selection, analysis of variance, introduction to design of experiments, data exploration techniques.
\end{itemize}
\textbf{IMSE 577 User Interface Design and Analysis}, W2017
\begin{itemize}
\item[] Graduate course, University of Michigan-Dearborn. Co-instructed with Shan Bao
\item[] \textit{Topics}: Current theories, methodologies, and techniques on the design, analysis, and evaluation of user interfaces and Human-Computer Interaction.
\end{itemize}
\textbf{IOE 474 Simulation} (Graduate Student Instructor), F2010, F2011, F2012, W2011, W2012, W2013
\begin{itemize}
\item[] Undergraduate course, University of Michigan, Ann Arbor
\item[] \textit{Topics}: Simulation of complex discrete-event systems with applications in industrial and service organizations. Topics include modeling and programming simulations in high-level computer packages, input distribution modeling, generating random numbers, and statistical analysis of simulation outputs.
\item[] \textit{Highlight}: IOE Department 2012 Graduate Student Instructor of the Year Award (anonymously voted by students, one recipient per year)
\end{itemize}
\textbf{Guest lecturer}
\begin{itemize}
\item IMSE 501 Human Factors \& Ergonomics, UM-Dearborn, F2020, W2021, F2021
\item IE 490 Computational Human Factors, Purdue University, Spring 2020
\item IE 690 Sensing Approaches For Human Factors Research, Purdue University, Spring 2018
\item IOE 836 Seminar in Human Performance, University of Michigan, Ann Arbor, F2016, F2017
\item IE 486 Work Analysis and Design II, Purdue University, Spring 2017
\item IE 590 Human Factors and Medical Devices, Purdue University, Spring 2017
\item IE 386 Work Analysis and Design I, Purdue University, Spring 2016, Fall 2016
\end{itemize}
\textbf{Workshops \& tutorials}
\begin{itemize}
\item ``Python as an engineering tool'', a 5-day short course for UM-Dearborn \href{https://www.esiea.fr/en/}{ESIEA} international program, 2023, 2024
\item UM Software Carpentry Python Workshop, \href{https://umcarpentries.org/2024-03-21-UMich-python/}{March 2024}
\item ``Data analysis in Python'', \href{https://sph.umich.edu/bdsi/}{Big Data Summer Institute},
2021 (\href{http://bigdatasummerinst.sph.umich.edu/wiki/index.php/Main_Page#Week_2}{recordings}),
2022 (\href{http://bigdatasummerinst.sph.umich.edu/wiki2022/index.php/Main_Page#Week_2}{recordings}),
2023 (\href{https://umich.instructure.com/courses/640918/pages/week-2}{recordings}),
2024 (\href{https://sph.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=e03bf1af-3b2f-4bd5-aa27-b19a011c16d3}{recordings})
\item ``Introduction to git \& GitHub'', \href{https://umcarpentries.org/2023-03-28-UMich/}{UM Software Carpentry Workshop}, 2023
\item ``Introduction to data visualization on the web with D3.js'', \href{https://midas.umich.edu/2021-symposium/}{MIDAS Annual Symposium}, 2021
\item ``Introduction to data analysis in Python'', \href{https://www.milsamp.org/programs/nxtgen-stem-scholars/}{MI-LSAMP NxtGen STEM Scholars Program} (for underrepresented minority incoming freshmen), 2021
\item ``Machine learning pipelines and automated hyperparameter tuning'', Ford Motor Company Themed Learning Series, 2021
\item ``Introduction to machine learning in Python with scikit-learn'', Dearborn Artificial Intelligence Symposium, 2020 (\href{https://www.youtube.com/watch?v=TD4wCHNhZcU}{recording})
\item ``Introduction to Python for Community and K-12 Teachers \& Students'', \href{https://midas.umich.edu/2020-symposium/}{MIDAS Annual Symposium}, 2020 (\href{https://youtu.be/r_sfBJIDMtM}{recording})
\item ``Introduction to Data Analysis in Python'', IMSE Department Workshop, 2020 (\href{https://youtu.be/7IsFmtvBOyc}{recording})
\end{itemize}
\textbf{Teaching certificates}
\begin{itemize}
\item Certified Carpentries Instructor, \href{https://carpentries.org/}{The Carpentries}, 2023
\end{itemize}
\end{main}
\section*{Students \& Committees}
\begin{main}
\textbf{Ph.D. students}
\begin{itemize}
\item Rayane Moustafa, (2023-present)
\item Gandhimathi Padmanaban (2021-present)
% \item Ayah Hamad (2021-present)
\item Hanumad Vasanth Munnamgi (2019-present)
\end{itemize}
\textbf{Ph.D. Committees}
\begin{itemize}
\item Dr. Dania Ammar, ISE, UM-Dearborn, PhD defense, 2024, Chair: Shan Bao
\item Dr. Aishwary Pawar, ISE, UM-Dearborn, PhD defense, 2023, Chair: DeLean Tolbert Smith
\item Dr. Mayuresh Savargaonkar, ISE, UM-Dearborn, PhD defense, 2023, Chair: Abdallah Chehade
\item Dr. Jackie Ayoub, ISE, UM-Dearborn, PhD defense, 2022, Chair: Feng Zhou
\item Dr. Zunya Shi, ISE, UM-Dearborn, PhD defense, 2021, Chair: Abdallah Chehade
\item Dr. Kassem Moustafa, ISE, UM-Dearborn, PhD defense, 2020, Chair: Zhen Hu
\end{itemize}
\textbf{Master's students}
\begin{itemize}
\item Rayane Moustafa, UM-Dearborn, August 2023
\begin{itemize}
\item Thesis: ``\href{https://dx.doi.org/10.7302/8118}{Using Digital Lidar to Study Cycling Safety and Distance Estimation of Passing Vehicles}''
\end{itemize}
\item Gandhimathi Padmanaban, UM-Dearborn, August 2021
\begin{itemize}
\item Thesis: ``\href{https://dx.doi.org/10.7302/2328}{Computational Human Performance Modeling using Queuing Network in an Open-Source Platform}''
\end{itemize}
\item Ayah Hamad, UM-Dearborn, May 2021
\begin{itemize}
\item Thesis: ``\href{https://dx.doi.org/10.7302/1035}{Two Wheelistic: Development of a High-Fidelity Virtual Reality Cycling Simulator for Transportation Safety Research}''
\end{itemize}
\end{itemize}
% \textbf{Master's students}
% \begin{itemize}
% \item \textit{Thesis}: Rayane Moustafa, 2023; Ayah Hamad, 2021; Gandhimathi Padmanaban, 2021
% \item \textit{Capstone project}: Diana Mann, 2020; Linyan Wang, 2019
% \end{itemize}
\textbf{Undergraduate students}
\begin{itemize}
\item
Victoria De La Rue (2022-present),
Christopher Salisbury (2022-2023),
Amardeep Dhingra (2022-2023),
Daniel Maudlin (2021),
Callisto Hillard (2018-2020)
\end{itemize}
\end{main}
\section*{Major awards}
\begin{main}
\begin{itemize}
\item \href{https://www.nsf.gov/awardsearch/showAward?AWD_ID=2142757}{National Science Foundation Faculty Early Career Development (CAREER) Award}, 2022
\item \href{https://scholarships.engin.umich.edu/featured/michael-h-scheller-fund/}{Michael H. Scheller Fellowship}, 2012-2013, 2014-2015
\item University of Michigan IOE Department Graduate Student Instructor of the Year Award, 2012
\item University of Michigan IOE Departmental Fellowship, 2009-2011
\item Comprehensive Excellence Scholarship for Graduate Student at Tsinghua University, 2007
\item Mitsubishi Scholarship for Outstanding Mechanical Engr. Student at Tsinghua University, 2006
\end{itemize}
\end{main}
\section*{Affiliations at the University of Michigan}
\begin{main}
\begin{itemize}
\item \href{https://midas.umich.edu/}{Michigan Institute for Data \& AI in Society (MIDAS)}
\item \href{https://micde.umich.edu/}{Michigan Institute for Computational Discovery and Engineering (MICDE)}
\item \href{https://umcarpentries.org/}{The Carpentries at the University of Michigan}
\item \href{https://injurycenter.umich.edu/}{University of Michigan Injury Prevention Center}
\item \href{https://poverty.umich.edu/}{University of Michigan Poverty Solutions}
\item \href{https://umdearborn.edu/cecs/research/centers/dearborn-artificial-intelligence-research-dair-center}{Dearborn Artificial Intelligence Research Center}
\end{itemize}
\end{main}
\section*{Professional services}
\begin{main}
\textbf{Professional organizations}
\begin{itemize}
% \item Research Coordinator, \href{https://sites.google.com/view/bikeresearch}{TRB ACH20 Bicycle Research Subcommittee}, 2022-present
\item Member, \href{https://www.trb.org/}{Transportation Research Board (TRB)} \href{https://sites.google.com/view/anf20/}{Bicycle Transportation Committee}, 2023-present
\item Scientific Committee, \href{http://www.cyclingsafety.net}{International Cycling Safety Conference}, 2020-present
\item Program Committee, \href{https://www.auto-ui.org/}{AutoUI (International ACM Conference on Automotive User Interfaces)}, 2018, 2020, 2021, 2022
\end{itemize}
% \textbf{Professional membership}
% \begin{itemize}
% % \item \href{https://www.hfes.org/}{Human Factors and Ergonomics Society (HFES)}
% \item \href{https://www.apbp.org/}{Association of Pedestrian and Bicycle Professionals (APBP)}
% \end{itemize}
\textbf{Reviewer}
\begin{itemize}
\item \href{https://www.journals.elsevier.com/accident-analysis-and-prevention}{Accident Analysis \& Prevention}
\item \href{https://www.journals.elsevier.com/applied-ergonomics}{Applied Ergonomics}
% \item \href{https://journals.open.tudelft.nl/ejtir/}{European Journal of Transport and Infrastructure Research}
\item \href{www.hfes.org}{Human Factors and Ergonomics (HFES) Annual Meeting}
\item \href{https://www.tandfonline.com/toc/hihc20/current}{International Journal of Human-Computer Interaction}
\item \href{https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=6979}{IEEE Transactions on Intelligent Transportation Systems}
\item \href{https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=6221037}{IEEE Transactions on Human-Machine Systems}
\item \href{https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=5117645}{IEEE Intelligent Transportation Systems Magazine}
\item \href{https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=6287639}{IEEE Access}
\item \href{www.auto-ui.org}{International ACM Conference on Automotive User Interfaces (AutoUI)}
\item \href{www.cyclingsafety.net}{International Cycling Safety Conference}
% \item \href{https://www.tandfonline.com/toc/gcpi20/current}{Traffic Injury Prevention}
\item \href{https://www.journals.elsevier.com/transportation-research-part-c-emerging-technologies}{Transportation Research Part C: Emerging Technologies}
% \item \href{https://www.journals.elsevier.com/transportation-research-part-d-transport-and-environment}{Transportation Research Part D: Transport and Environment}
\item \href{https://www.journals.elsevier.com/transportation-research-part-f-traffic-psychology-and-behaviour}{Transportation Research Part F: Traffic Psychology and Behaviour}
\item \href{https://www.tandfonline.com/toc/ttra21/current}{Transportmetrica A: Transport Science}
\item \href{http://www.trb.org/AnnualMeeting/}{Transportation Research Board (TRB) Annual Meeting}
\end{itemize}
\textbf{Workshop organizer}
\begin{itemize}
\item ``Automated vehicles are pretty much here: How can human factors research help prepare drivers, lawmakers, educators, and the public?'', \href{www.automatedvehiclessymposium.org}{Automated Vehicle Symposium} 2017
\item ``Acquisition and maintenance of driving skills in the climate of driver support, driver assist, and automation systems'', \href{http://www.trb.org/AnnualMeeting/}{Transportation Research Board Annual Meeting} 2017
\end{itemize}
\textbf{Webmaster}: \href{http://hfessttg.blogspot.com/}{Surface Transp. Technical Group}, \href{https://www.hfes.org/}{Human Factors and Ergonomics Society}, 2016-2018
\end{main}
\section*{Departmental service}
\begin{main}
\textbf{Committees}
\begin{itemize}
\item Member, IMSE Department Social Media Committee (2019-present)
\item Member, IMSE Department PhD Qualifying Exam Committee (2019-present)
\item Member, IMSE Department LEO Lecture Major Review Committee (2022)
\end{itemize}
\textbf{Other services}
\begin{itemize}
\item Faculty Secretary, IMSE Department (2019-2023)
\item Department Liaison, \href{https://umdearborn.edu/faculty-staff/hub-teaching-learning-resources}{HUB for Teaching and Learning} (2021-2021)
\end{itemize}
\end{main}
\section*{College service}
\begin{main}
\textbf{Committees}
\begin{itemize}
\item Member, \href{https://umdearborn.edu/cecs}{CECS} \href{https://umdearborn.edu/cecs/departments/electrical-and-computer-engineering/graduate-programs/mse-energy-systems-engineering}{Energy Systems Engineering} Program Reform Committee (2021-2022)
\item Member, \href{https://umdearborn.edu/cecs}{CECS} College Prominence Committee (2022-present)
\item Member, \href{https://umdearborn.edu/cecs}{CECS} Online Education Strategic Planning Committee (2021-2022)
\item Member, \href{https://umdearborn.edu/cecs}{CECS} Faculty Research Committee (2020)
\end{itemize}
\textbf{Other services}
\begin{itemize}
\item Digital Ambassador, \href{https://umdearborn.edu/cecs}{CECS} (2020-present)
\end{itemize}
\end{main}
\section*{University service}
\begin{main}
\textbf{Committees}
\begin{itemize}
\item Member, UM-Dearborn Urban Futures Strategic Planning Committee (2022)
\item Member, UM-Dearborn Housing and Transportation Committee (2023)
\end{itemize}
\textbf{Other services}
\begin{itemize}
\item Faculty Senator, \href{https://umdearborn.edu/faculty-senate}{UM-Dearborn Faculty Senate}, 2022-2025
\item Faculty Senate Council, \href{https://umdearborn.edu/faculty-senate}{UM-Dearborn Faculty Senate}, 2023-2024
% \item Faculty Advisor, UM-Dearborn Ultimate Frisbee Club, 2022-present
\item Volunteer Assistant Coach, \href{https://www.umcycling.org/}{University of Michigan Cycling Team} (club sports), 2017-2021
\end{itemize}
\end{main}
\section*{Local community service}
\begin{main}
\textbf{Membership}
\begin{itemize}
\item Board of directors, \href{https://www.wbwc.org/}{Walk Bike Washtenaw}, 2020-present
\item Member, \href{https://www.healthydearborn.org/healthy-environments}{Healthy Environments Action Team}, \href{https://www.healthydearborn.org/}{Healthy Dearborn Coalition}, 2020-2021
\item Member, \href{https://www.healthydearborn.org/dearbornhealthystreets}{Dearborn Healthy Streets Project} Planning Team, 2021
\end{itemize}
\textbf{Invited talk \& panelist}
\begin{itemize}
\item \href{https://www.eventbrite.com/e/bike-summit-2023-tickets-575020450647?}{Ann Arbor Bike Summit}, 2023
\end{itemize}
\vfill\hfill
Last updated: \today
\end{main}
\end{document}