forked from CriticalDatathon/criticaldatathon.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1070 lines (925 loc) · 48.4 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Emory Health Datathon 2023">
<meta name="keywords" content="Manup, unica, creative, html">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Emory Health Datathon 2023</title>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Work+Sans:400,500,600,700,800,900&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap" rel="stylesheet">
<!-- Css Styles -->
<link rel="stylesheet" href="static/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="static/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="static/css/elegant-icons.css" type="text/css">
<link rel="stylesheet" href="static/css/owl.carousel.min.css" type="text/css">
<link rel="stylesheet" href="static/css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="static/css/slicknav.min.css" type="text/css">
<link rel="stylesheet" href="static/css/style.css" type="text/css">
<link rel="icon" href="static/img/logo.jpg">
</head>
<body>
<!-- Page Preloder -->
<div id="preloder">
<div class="loader"></div>
</div>
<!-- Header Section Begin -->
<header class="header-section">
<div class="container">
<div class="logo">
<a target="_blank" href="https://hitilab.com/">
<img src="static/img/logo.jpg", height="200">
</a>
</div>
<div class="nav-menu">
<nav class="mainmenu mobile-menu">
<ul>
<li><a href="#About">About</a></li>
<li><a href="#Mentors">Mentors</a></li>
<li><a href="#Schedule">Schedule</a></li>
<li><a href="#Publications">Background</a></li>
<li><a href="#Contact">Contact</a></li>
<li><a href="#Partners">Partners</a></li>
<li><a href="#Organizers">Organizers</a></li>
</ul>
</nav>
</div>
<div id="mobile-menu-wrap"></div>
</div>
</header>
<!-- Header End -->
<!-- Registration Section Begin -->
<section class="set-bg clearfix">
<div class="container">
<div class="row">
<div class="col-lg-12">
<a href="https://forms.office.com/Pages/ResponsePage.aspx?id=nPsE4KSwT0K80DImBtXfOGxj-BnPIQtHpC9ONr0ssplUOU5CUEhCWVExSzZQMFVKME1GRVRQNU9QQi4u" style="display: block;">
<button type="button" style="font-size: 60px; color: #ffffff; line-height: 72px; font-weight: 600; padding:10px; width: 100%; background-color: #a31f34;">Go to Registration Form</button>
</a>
</div>
</div>
</div>
</section>
<!-- Registration Section End -->
<!-- Hero Section Begin -->
<section class="hero-section set-bg clearfix" data-setbg="static/img/hero.jpg">
<div class="container">
<div class="row">
<div class="col-lg-7">
<div class="hero-text">
<span><b>Aug 18 - 21, 2023</b></span>
<h2>
Emory Health AI
<br>
Bias Datathon '23
</h2>
<a href="#About" class="primary-btn">Let's Go!</a>
</div>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- Counter Section Begin -->
<section class="counter-section clearfix bg-gradient">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="counter-text">
<span>This Year's Edition</span>
<h3>Emory University<br>Atlanta, GA</h3>
</div>
</div>
<div class="col-lg-8">
<div class="cd-timer" id="countdown">
<div class="cd-item">
<span>40</span>
<p>Days</p>
</div>
<div class="cd-item">
<span>18</span>
<p>Hours</p>
</div>
<div class="cd-item">
<span>46</span>
<p>Minutes</p>
</div>
<div class="cd-item">
<span>32</span>
<p>Seconds</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Counter Section End -->
<!-- Home About Section Begin -->
<section id="About" class="home-about-section spad">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="ha-pic">
<img src="static/img/pulse_ox.jpg" alt="">
</div>
</div>
<div class="col-lg-6">
<div class="ha-text">
<h2>Picture Perfect? The Intersection of Bias and Medical Imaging AI</h2>
<p>Get ready to witness the tantalizing power of cross-disciplinary collaboration as the
Emory Datathon unveils the true potential of harnessing diverse perspectives and skills
to shed light on bias in medical imaging, particularly in chest imaging and mammography.
Embracing the tenets of Accessible Science, The Hive Mind and Shared Innovation, this
electrifying datathon aims to revolutionize the discourse surrounding AI bias by shining a
scorching spotlight on the staggering health disparities that affect marginalized
populations. Join us as we dive headfirst into the world of cutting-edge data analysis and
sizzling insights, all in the service of creating a more equitable future for all.
</p>
<ul>
<li><span class="icon_check"></span> Physicians</li>
<li><span class="icon_check"></span> Nurses</li>
<li><span class="icon_check"></span> Pharmacists</li>
<li><span class="icon_check"></span> Social Workers</li>
<li><span class="icon_check"></span> Health Equity Researchers</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Home About Section End -->
<!-- Challenge Section Begin -->
<section id="Challenge" class="home-about-section spad">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="ha-text">
<h2>The Challenge</h2>
<p>
Disparities in mammography screening quality and access contribute to disparities in breast
cancer mortality, particularly for Black and Hispanic women without private insurance. These
disparities also extend to access to new mammographic imaging technology and digital breast
tomosynthesis (DBT). Efforts are needed to address racial/ethnic, educational, and financial
barriers to mammography screening and to promote equitable utilization of mammograms among
women of average risk.
</p>
<p>
This datathon will investigate the presence and evolution of bias across three data streams,
highlighting the importance of metrics and bias mitigation strategies.
Mentors who appreciate and understand bias will bring their unique
perspectives, experience, and critical thinking to the table!
</p>
<p>
As we believe that only reproducible, transparent research can help advance the field, we
share all our code in open-source. All the data preparation and team's code will be made
available on GitHub.
</p>
</div>
</div>
<div class="col-lg-6">
<div class="ha-pic">
<img src="static/img/data_science.jpg" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- Home About Section End -->
<!-- Team Member Section Begin -->
<section id="Mentors" class="team-member-section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2 >The Mentors</h2>
<p>This is our team of experts, responsible for guiding the participating teams</p>
</div>
</div>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/atika.jpg>
<div class="mi-text">
<h5>Atika Rahman Paddo</h5>
<span>Indiana University Purdue University Indianapolis</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/beatrice.png>
<div class="mi-text">
<h5>Beatrice Brown-Mulry</h5>
<span>Emory University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/kaesha.jpg>
<div class="mi-text">
<h5>Kaesha Thomas</h5>
<span>Emory University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/hari.jpg>
<div class="mi-text">
<h5>Hari Trivedi</h5>
<span> Emory University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/purkayastha.jpg>
<div class="mi-text">
<h5>Saptarshi Purkayastha</h5>
<span>Indiana University Purdue University Indianapolis</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/brandon.jpg>
<div class="mi-text">
<h5>Brandon Price</h5>
<span>University of Florida</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/mornin.jpeg>
<div class="mi-text">
<h5>Mornin Feng</h5>
<span>National University of Singapore</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/rakesh.jpg>
<div class="mi-text">
<h5>Rakesh Shiradkar</h5>
<span>Emory University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/gichoya.jpg>
<div class="mi-text">
<h5>Judy Gichoya</h5>
<span>Emory University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/minjae.png>
<div class="mi-text">
<h5>MinJae Woo</h5>
<span>Kennesaw State University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/zaiman.jpg>
<div class="mi-text">
<h5>Zach Zaiman</h5>
<span>Emory University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/celi.png>
<div class="mi-text">
<h5>Leo Anthony Celi</h5>
<span>MIT-LCP, Beth Israel Deaconess Medical Center, Harvard Medical School</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/ramon.jpg>
<div class="mi-text">
<h5>Ramon Correa</h5>
<span>Arizona State University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/siva.jpg>
<div class="mi-text">
<h5>Siva Bhavani</h5>
<span>Emory University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/chad.jpeg>
<div class="mi-text">
<h5>Chad Robichaux</h5>
<span>Emory University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/marly.jpg>
<div class="mi-text">
<h5>Marly van Assen</h5>
<span>Emory University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/tyler.jpg>
<div class="mi-text">
<h5>Tyler Christian Steed</h5>
<span>Emory University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/vedant.jpg>
<div class="mi-text">
<h5>Vedant Joshi</h5>
<span>Arizona State University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/jason.jpg>
<div class="mi-text">
<h5>Jason Jeong</h5>
<span>Arizona State University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/matos.jpeg>
<div class="mi-text">
<h5>João Matos</h5>
<span>MIT</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/fernandes.jpg>
<div class="mi-text">
<h5>Chrystinne Fernandes</h5>
<span>MIT</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/restrepo.jpg>
<div class="mi-text">
<h5>David Restrepo</h5>
<span>MIT</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/scanlan.png>
<div class="mi-text">
<h5>Michael Scanlan</h5>
<span>MIT</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/nakayama.jfif>
<div class="mi-text">
<h5>Luis Nakayama</h5>
<span>MIT</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/kuo.jpg>
<div class="mi-text">
<h5>Po-Chih Kuo</h5>
<span>NTHU</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/bersu.jpg>
<div class="mi-text">
<h5>Bersu Ozcan</h5>
<span>UT Southwestern</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/shahriar.jpg>
<div class="mi-text">
<h5>Shahriar Faghani</h5>
<span>Mayo Clinic</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/swapnil.jpeg>
<div class="mi-text">
<h5>Swapnil Mishra</h5>
<span>National University of Singapore</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/janice.png>
<div class="mi-text">
<h5>Janice Newsome</h5>
<span>Emory University</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/bardia.jpg>
<div class="mi-text">
<h5>Bardia Khosravi</h5>
<span>Mayo Clinic</span>
</div>
</div>
<div class="member-item set-bg" data-setbg=static/img/mentors/jackie.png>
<div class="mi-text">
<h5>Jacqueline Williams</h5>
<span>Emory University</span>
</div>
</div>
</section>
<!-- Team Member Section End -->
<!-- Schedule Section Begin -->
<section id="Schedule" class="schedule-section spad">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2 >Schedule</h2>
<p>Four intensive days of health data analysis, networking, and discussion</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="schedule-tab">
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#tabs-1" role="tab">
<h5>Day 1</h5>
<p>Friday, Aug 18, 2023 5PM-8PM</p>
</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tabs-2" role="tab">
<h5>Day 2</h5>
<p>Saturday, Aug 19, 2023 8AM-5PM</p>
</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tabs-3" role="tab">
<h5>Day 3</h5>
<p>Sunday, Aug 20, 2023 8AM-5PM</p>
</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tabs-4" role="tab">
<h5>Day 4</h5>
<p>Monday, Aug 21, 2023 8AM-6PM</p>
</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tabs-1" role="tabpanel">
<table class="table table-hover">
<thead><tr>
<th width="30%" class="left-col"><i class="fa fa-clock-o"></i> Time</th>
<th width="40%"><i class="fa fa-user"></i> Activity </th>
<th width="30%"><i class="fa fa-map-marker"></i> Local</th>
<tr></thead>
<tr>
<th>4:30pm</th>
<th>Doors Open</th>
<th>Michael C Carlos Museum Foyer</th>
</tr>
<tr>
<th>4:30pm</th>
<th>Registration Opens Open</th>
<th>Michael C Carlos Museum Foyer</th>
</tr>
<tr>
<th>5:00pm</th>
<th>Reception Begins</th>
<th>Michael C Carlos Museum Ackerman Hall</th>
</tr>
<tr>
<th>5:45pm</th>
<th>Welcome by Dr. Gichoya</th>
<th>Michael C Carlos Museum Ackerman Hall</th>
</tr>
<tr>
<th>6:00pm</th>
<th>Uhuru Dancers</th>
<th>Michael C Carlos Museum Ackerman Hall</th>
</tr>
<tr>
<th>7:00pm</th>
<th>Tech Help Desk Opens</th>
<th>Michael C Carlos Museum Foyer</th>
</tr>
<tr>
<th>8:00pm</th>
<th>Reception Closes</th>
<th>Michael C Carlos Museum Ackerman Hall</th>
</tr>
</table>
</div>
<div class="tab-pane" id="tabs-2" role="tabpanel">
<table class="table table-hover">
<thead><tr>
<th width="30%" class="left-col"><i class="fa fa-clock-o"></i> Time</th>
<th width="40%"><i class="fa fa-user"></i> Activity </th>
<th width="30%"><i class="fa fa-map-marker"></i> Local</th>
<tr></thead>
<tr>
<th>7:15am</th>
<th>Doors Open</th>
<th>Emory School of Medicine Room 130</th>
</tr>
<tr>
<th>7:30am</th>
<th>Registration Opens</th>
<th>Emory School of Medicine Room 130</th>
</tr>
<tr>
<th>7:30am</th>
<th>Continental Breakfast</th>
<th>nan</th>
</tr>
<tr>
<th>8:00am</th>
<th>Welcome - Dr. Gichoya</th>
<th>Emory School of Medicine Room 130</th>
</tr>
<tr>
<th>9:00am</th>
<th>Teams Transition into Rooms</th>
<th>Emory School of Medicine Room 130</th>
</tr>
<tr>
<th>9:15am</th>
<th>Hacking Begins</th>
<th>Emory School of Medicine</th>
</tr>
<tr>
<th>11:00am</th>
<th>Mentoring Session</th>
<th>Emory School of Medicine</th>
</tr>
<tr>
<th>12:00pm</th>
<th>Lunch</th>
<th>Woodruff Health Sciences Administration Building (WHSCAB) Plaza 2nd Floor</th>
</tr>
<tr>
<th>1:00pm</th>
<th>Hacking Continues</th>
<th>Emory School of Medicine Room 130</th>
</tr>
<tr>
<th>6:00pm</th>
<th>Dinner</th>
<th>WHSCAB Plaza 2nd Floor</th>
</tr>
<tr>
<th>7:30pm</th>
<th>End of Day One</th>
<th>nan</th>
</tr>
</table>
</div>
<div class="tab-pane" id="tabs-3" role="tabpanel">
<table class="table table-hover">
<thead><tr>
<th width="30%" class="left-col"><i class="fa fa-clock-o"></i> Time</th>
<th width="40%"><i class="fa fa-user"></i> Activity </th>
<th width="30%"><i class="fa fa-map-marker"></i> Local</th>
<tr></thead>
<tr>
<th>7:15am</th>
<th>Doors Open</th>
<th>Emory School of Medicine Room 130</th>
</tr>
<tr>
<th>7:30am</th>
<th>Registration Opens</th>
<th>Emory School of Medicine Room 130</th>
</tr>
<tr>
<th>7:30am</th>
<th>Continental Breakfast</th>
<th>nan</th>
</tr>
<tr>
<th>8:00am</th>
<th>Briefings - Dr. Gichoya/Dr. Trivedi</th>
<th>Emory School of Medicine Room 130</th>
</tr>
<tr>
<th>8:15am</th>
<th>Hacking Continues</th>
<th>nan</th>
</tr>
<tr>
<th>11:00am</th>
<th>Mentoring Session</th>
<th>nan</th>
</tr>
<tr>
<th>12:00pm</th>
<th>Lunch</th>
<th>WHSCAB Plaza 2nd Floor</th>
</tr>
<tr>
<th>1:00pm</th>
<th>Hacking Continues</th>
<th>nan</th>
</tr>
<tr>
<th>2:00pm</th>
<th>Final Slides and Code Submission</th>
<th>nan</th>
</tr>
<tr>
<th>2:30pm</th>
<th>Final Team Presentation</th>
<th>Emory School of Medicine Room 130</th>
</tr>
<tr>
<th>4:30pm</th>
<th>Final Judging</th>
<th>Emory School of Medicine Room 130</th>
</tr>
<tr>
<th>4:50pm</th>
<th>Datathon Wrap Up</th>
<th>Emory School of Medicine Room 130</th>
</tr>
<tr>
<th>5:00pm</th>
<th>Team Excercise</th>
<th>nan</th>
</tr>
<tr>
<th>6:00pm.End of Day Two</th>
<th>nan</th>
<th>nan</th>
</tr>
</table>
</div>
<div class="tab-pane" id="tabs-4" role="tabpanel">
<table class="table table-hover">
<thead><tr>
<th width="30%" class="left-col"><i class="fa fa-clock-o"></i> Time</th>
<th width="40%"><i class="fa fa-user"></i> Activity </th>
<th width="30%"><i class="fa fa-map-marker"></i> Local</th>
<tr></thead>
<tr>
<th>7:15am</th>
<th>Doors Open</th>
<th>Woodruff Health Sciences Center Administration Building (WHSCAB) Auditorium</th>
</tr>
<tr>
<th>7:30am</th>
<th>Registration Opens</th>
<th>WHSCAB Auditorium</th>
</tr>
<tr>
<th>7:30am</th>
<th>Continental Breakfast</th>
<th>WHSCAB Plaza 2nd Floor</th>
</tr>
<tr>
<th>8:30am</th>
<th>Welcome - Dr. Gichoya and Dr. Trivedi</th>
<th>WHSCAB Auditorium</th>
</tr>
<tr>
<th>8:45am</th>
<th>Welcome - Dean Carlos Del Rio</th>
<th>WHSCAB Auditorium</th>
</tr>
<tr>
<th>9:00am</th>
<th>Keynote Speaker</th>
<th>WHSCAB Auditorium</th>
</tr>
<tr>
<th>9:45am</th>
<th>Panel Discussion - Color Vision Approach to Medicine</th>
<th>WHSCAB Auditorium</th>
</tr>
<tr>
<th>10:45am</th>
<th>Tea Break</th>
<th>WHSCAB Foyer</th>
</tr>
<tr>
<th>11:00am</th>
<th>Session 1 - ELSI</th>
<th>WHSCAB Auditorium</th>
</tr>
<tr>
<th>12:00pm</th>
<th>Session 2 - Building Data Science Capacity Around The World</th>
<th>WHSCAB Auditorium</th>
</tr>
<tr>
<th>1:00pm</th>
<th>Lunch</th>
<th>WHSCAB Plaza 2nd Floor</th>
</tr>
<tr>
<th>1:30pm</th>
<th>Group Photo (during lunch)</th>
<th>WHSCAB Auditorium</th>
</tr>
<tr>
<th>2:00pm</th>
<th>Keynote: ChatGPT in Medicine</th>
<th>WHSCAB</th>
</tr>
<tr>
<th>2:30pm</th>
<th>Session 3 - Bias at The Intersection of AI and Innovation</th>
<th>WHSCAB Auditorium</th>
</tr>
<tr>
<th>3:00pm</th>
<th>Session 4 - Reading Race</th>
<th>WSHCAB Auditorium</th>
</tr>
<tr>
<th>3:45pm</th>
<th>Tea Break</th>
<th>WHSCAB Foyer</th>
</tr>
<tr>
<th>4:00pm</th>
<th>Session 5 - Envisioing a Future Without Bias</th>
<th> WHSCAB Auditorium</th>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- latest BLog Section Begin -->
<section id="Publications" class="latest-blog spad">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2 >Relevant Publications</h2>
<p>Prior publications on the impact of pulse oximetry on patient outcomes in the ICU</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="latest-item set-bg" data-setbg="static/img/publications/2.jpg">
<div class="li-tag">Original Investigation</div>
<div class="li-text">
<h5><a target= "_blank" href="https://www.thelancet.com/journals/landig/article/PIIS2589-7500(22)00063-2/fulltext">
AI recognition of patient race in medical imaging: a modelling study
</a></h5>
<span><i class="fa fa-clock-o"></i> May 11, 2022</span>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="latest-item set-bg" data-setbg="static/img/publications/1.jpg">
<div class="li-tag">Original Investigation</div>
<div class="li-text">
<h5><a target= "_blank" href="https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2794196">
Assessment of Racial and Ethnic Differences in Oxygen Supplementation Among Patients in the Intensive Care Unit
</a></h5>
<span><i class="fa fa-clock-o"></i>July 11, 2022</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- latest BLog Section End -->
<!-- Previous Datathons Section Begin -->
<section id="Datathons" class="latest-datathons spad">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2 >Impressions from previous Datathons</h2>
<p>Health Datathons take place all around the world on a monthly basis</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="latest-item set-bg">
<iframe width="560" height="315" src="https://www.youtube.com/embed/SN61m35QdwI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> </div>
</div>
<div class="col-lg-6">
<div class="latest-item set-bg">
<iframe width="560" height="315" src="https://www.youtube.com/embed/KwsGXGIk6ok" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> </div>
</div>
</div>
</div>
</section>
<!-- latest BLog Section End -->
<!-- Contact Section Begin -->
<section id="Contact" class="contact-section spad">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="section-title">
<h2 >Contact</h2>
<p>Get directions to our Venue!</p>
<h2>Parking Instructions</h2>
<p>Parking Services will raise the Fishburne permit gates (not the Fishburne visitor gates) at 4pm on Friday, August 18th, allowing attendees to park without a permit and at no cost.
Fees apply at the Fishburne visitor lot from 7am – 5pm M – F. Although fees do not apply after 5pm M – F and on weekends, an entry ticket is needed to exit at all times or a lost ticket fee of $25 is charged.
Fees apply at the Oxford Road visitor deck from 7am – 7pm M – F. Although fees do not apply after 7pm M – F and on weekends, an entry ticket is needed to exit at all times or a lost ticket fee of $25 is charged.
</p>
</div>
<div class="cs-text">
<div class="ct-address">
<span>Address:</span>
<p>Emory University School of Medicine<br>100 Woodruff Circle<br>Atlanta GA, 30322, United States</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="cs-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3315.713319655353!2d-84.32426822399196!3d33.79390057325532!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88f506fa1b08a307%3A0xdc33f13bf1e2675b!2s100%20Woodruff%20Cir%2C%20Atlanta%2C%20GA%2030322!5e0!3m2!1sen!2sus!4v1689443478146!5m2!1sen!2sus" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section End -->
<!-- Partner Section Begin -->
<section id="Partners" class="team-member-section spad">
<div class="container">
<div class="section-title">
<h2 >Partners & Sponsors</h2>
<p>Thank you to our partners for making this event possible!</p>
</div>
<div class="partner-logo owl-carousel">
<a target="_blank" href="https://criticaldata.mit.edu/" class="pl-table">
<div class="pl-tablecell">
<img src="static/img/footer-logo.jpg" height= "80" width="80" alt="">
</div>
</a>
<a target="_blank" href="nan" class="pl-table">
<div class="pl-tablecell">
<img src="static/img/centerfordigitalhealth.png" height= "80" width="80" alt="">
</div>
</a>
<a target="_blank" href="https://aws.amazon.com/" class="pl-table">
<div class="pl-tablecell">
<img src="static/img/aws-logo.png" height= "80" width="80" alt="">
</div>
</a>
</div>
</div>
</section>
<!-- Organizers Section Begin -->
<section id="Organizers" class="team-member-section spad">
<div class="container">
<div class="section-title">
<h2 >Organizers</h2>
<p>Thank you to our organizers for making this event possible!</p>
</div>
<div class="tab-pane" id="organizers-tab">
<table class="table table-hover">
<tr>
<th>Judy Gichoya</th>
<th>[email protected]</th>
</tr>
<tr>
<th>Kaesha Thomas</th>
<th>nan</th>
</tr>
<tr>
<th>Hari Trivedi</th>
<th>nan</th>
</tr>
<tr>
<th>Beatrice Brown-Mulry</th>
<th>nan</th>
</tr>
<tr>
<th>Zach Zaiman</th>
<th>nan</th>