-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1282 lines (1096 loc) · 77.8 KB
/
index.html
File metadata and controls
executable file
·1282 lines (1096 loc) · 77.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
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>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>PAPW 2020</title>
<!-- favicon -->
<link href="favicon.png" rel=icon>
<!-- web-fonts -->
<link href='https://fonts.googleapis.com/css?family=Roboto:100,300,400,700,500' rel='stylesheet' type='text/css'>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Style CSS -->
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar">
<div id="main-wrapper">
<!-- Page Preloader -->
<div id="preloader">
<div id="status">
<div class="status-mes"></div>
</div>
</div>
<header class="header">
<!-- Navigation -->
<nav class="navbar main-menu" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--
<a class="navbar-brand page-scroll" href="#page-top"><img src="img/logo.png" alt=""></a>
-->
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden"><a href="#page-top"></a></li>
<li><a class="page-scroll" href="#section-intro">About</a></li>
<li><a class="page-scroll" href="#section-live">Live Q&A</a></li>
<li><a class="page-scroll" href="#section-invited">Invited Talks</a></li>
<li><a class="page-scroll" href="#section-competition">Challenge</a></li>
<!-- <li><a class="page-scroll" href="#section-winners">Challenge Winners</a></li>-->
<li><a class="page-scroll" href="#section-organizers">ORGANIZERS</a></li>
<!-- <li><a class="page-scroll" href="#section-ajenda">Agenda</a></li>-->
<!-- <li><a class="page-scroll" href="#section-dates">Important Dates</a></li>-->
<!-- <li><a class="page-scroll" href="#section-ajenda">Schedule</a></li>-->
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- .nav -->
</header>
<div class="jumbotron text-center">
<div class="content">
<div class="event-date">8am-5pm, August 24, 2020</div>
<h1> Prescriptive Analytics for the Physical World (PAPW 2020)</h1>
<p class="lead">Workshop held in conjunction with KDD 2020</p>
<a href="#section-intro"><button type="button" class="btn btn-default btn-lg" >SEE DETAILS</button></a>
<!-- <p>Location: Aquarius 4 of the Convention Center at Resort World Sentosa (RWS) at Sentosa Island Singapore</p>-->
</div>
</div>
<!-- .Jumbotron-->
<section id="section-intro" class="section-wrapper about-event gray-bg ">
<div class="container">
<div class="row">
<div class="col-md-12">
<p class="lead">
Prescriptive analytics focuses on analyzing data in order to find the best policy to prevent a disaster (e.g., disease pandemic) or to mitigate a problem (e.g., traffic congestion), and then on prescribing the best actions to implement such a policy in the physical world and/or to study the impact of the implementation of such a policy on the physical world. Encompassing both descriptive analytics and predictive analytics, prescriptive analytics goes beyond by providing actionable insights.
</p>
<p class="lead">
In the data mining research today, however, we see that problems related to prescriptive analytics, especially those problems in the physical world, remain largely unexplored. Take the application in transportation for example. We saw enormous research studies related to problems such as traffic prediction and traffic outlier detection. However, we see little work in terms of how to actually make traffic less congested by taking certain actions (e.g., better traffic signal control strategies or traffic restriction rules). For another example, in epidemic data analysis, we often see research studies to forecast how epidemics spread, but we seldom see data-driven solutions about how to implement policies (e.g., quarantine, public transportation) so that we can minimize the spread of epidemics, and how to study the impact of the implemented policies on the environment as a whole.
</p>
<p class="lead" >
In this workshop, we would like to ask this critically important question: how could we learn from the data in order to take better strategic actions in the real physical world?
</p>
</div>
<div class="col-md-2"></div>
<div class="col-md-8">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/4n7YgKmBzW4" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>
</div>
</div>
<div class="col-md-2"></div>
</div>
</div>
</section>
<!-- .about-event -->
<section id="section-live" class="section-wrapper team white-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-title">
<h1>Live Q&A Session</h1>
</div>
</div>
</div>
<div class="row" id="section-live-qa">
<div class="col-sm-6 col-md-2"></div>
<div class="col-sm-6 col-md-8">
<figure class="thumbnail">
<img src="img/qa.png" class="img-responsive" alt="Image"></a>
</figure>
</div>
<div class="col-sm-6 col-md-2"></div>
</div>
<div class="row" id="section-live-qa-submit">
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h2><a href="https://app.sli.do/event/ktzuzel9">Submit Questions</a> </h2>
<!-- <h2>[Archived Submitted Questions]</h2>-->
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h2><a href="https://zoom.us/j/95677976536?pwd=S05EQ25RMUpFL21QekV1aG5ZaGZrZz09">Join Zoom Meeting</a> </h2>
</div>
</div>
</div>
</div>
</section>
<section id="section-invited" class="section-invited gray-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-title">
<h1>Invited Talks</h1>
</div>
</div>
</div>
<!-- <div class="row">-->
<!-- <div class="col-sm-6 col-md-3">-->
<!-- <figure class="thumbnail">-->
<!-- <a href="https://www.linkedin.com/in/dragos-margineantu-352a3211" target="view_window"><img src="img/dragos.jpg" class="img-responsive" alt="Image"></a>-->
<!-- <figcaption class="caption text-center">-->
<!-- <h3>Dr. Dragos Margineantu</h3>-->
<!-- <h3><small>Boeing Research & Technology</small>-->
<!-- </h3>-->
<!-- <ul class="social-links">-->
<!-- <li><a href="#"><i class="fa fa-facebook"></i></a></li>-->
<!-- <li><a href="#"><i class="fa fa-twitter"></i></a></li>-->
<!-- <li><a href="#"><i class="fa fa-linkedin"></i></a></li>-->
<!-- <li><a href="#"><i class="fa fa-envelope"></i></a></li>-->
<!-- </ul>-->
<!-- </figcaption>-->
<!-- </figure>-->
<!-- </div>-->
<!-- <div class="col-sm-0 col-md-9">-->
<!-- <div class="section-title">-->
<!-- <h2>Robust Machine Learning for Tomorrow’s Transportation Needs</h2>-->
<!-- <h3>Speaker: Dragos Margineantu</h3>-->
<!-- <h4>TBD</h4>-->
<!-- <h5>Bio: Dragos Margineantu is the AI Chief Technologist and a Technical Fellow of Boeing Research & Technology. His research interests include robust machine learning, anomaly detection, inverse reinforcement learning, decision systems, human-in-the-loop learning, validation and testing of decision systems, cost-sensitive, active, and ensemble learning.</h5>-->
<!-- <h5>Dragos was one of the research pioneers in ensemble learning and cost-sensitive learning. At Boeing, he designed and developed machine learning and AI based solutions for airplane maintenance, autonomous systems, surveillance, and design. Dragos is the Boeing AI lead for the DARPA “Assured Autonomy” program, focusing on robust machine learning techniques for autonomous systems. He also served as PI of DARPA's "Learning Applied to Ground Robots" and “Bootstrapped Learning” programs.</h5>-->
<!-- <h5>Dragos serves as the Editor of the Springer book series on “Applied Machine Learning” and as the Action Editor for Special Issues for the Machine Learning Journal (MLj). He serves on the editorial board of both major machine learning journals (MLj and JMLR), and served as senior program committee member of all major machine learning and AI research conferences. He was the chair of the KDD 2015 Industry and Government Track.</h5>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<div class="row" id="section-invited-1">
<div class="col-sm-4 col-md-6">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/zZ43eqPADFI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3>Multi-Objective Transportation System Optimization Using BISTRO</h3>
<h3><a href="https://tsrc.berkeley.edu/jessica-lazarus">Jessica Lazarus</a> & <a href="https://www2.eecs.berkeley.edu/Faculty/Homepages/bayen.html">Alexandre Bayen</a> </h3>
<h3><small>PhD student and Professor of UC Berkeley</small></h3>
</div>
</div>
</div>
<div class="row" id="section-invited-1-bio">
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<h6>Alexandre Bayen is the Liao-Cho Professor of Engineering at UC Berkeley. He is a Professor of Electrical Engineering and Computer Science, and Civil and Environmental Engineering. He is currently the Director of the Institute of Transportation Studies (ITS). He is also a Faculty Scientist in Mechanical Engineering, at the Lawrence Berkeley National Laboratory (LBNL).
</h6>
<h6>
This talk is given by Alex's PhD student Jessica Lazarus. Jessica's doctoral research focuses on multi-objective mechanism design for transportation policy. In particular, she is interested in the optimization of pricing policies to achieve economic, social, and environmental sustainability objectives. Jessica was one of the lead researchers in the development of BISTRO (Berkeley Integrated TRansportation Optimization).
</h6>
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<p><b>Talk abstract</b>: The Berkeley Integrated System for TRansportation Optimization (BISTRO) is an open-sourced transportation planning and decision support system that uses an agent-based simulation and optimization framework to develop and evaluate transportation system interventions. We will examine the key opportunities and challenges in using activity-based travel models with agent-based simulation to optimize transportation policies across multiple conflicting objectives. In particular, we will discuss case studies using BISTRO for the optimization of pricing, transit operations, and vehicle fleet mix with respect to multiple objectives representing systemwide congestion-, social-, and revenue-based policy goals. </p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row" id="section-invited-2">
<div class="col-sm-4 col-md-6">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/xxb5mbl3qlc?controls=0" frameborder="1" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3>Policy Informatics: Knowledge discovery in synthetic worlds</h3>
<h3><a href="https://biocomplexity.virginia.edu/stephen-eubank">Stephen Eubank</a> </h3>
<h3><small>Professor of University of Virginia</small></h3>
</div>
</div>
</div>
<div class="row" id="section-invited-2-bio">
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<h6>Stephen Eubank received his B.A. in physics from Swarthmore College in 1979 and his Ph.D. in theoretical physics from the University of Texas at Austin in 1986. While a staff member at Los Alamos from 1997-2005. Dr. Eubank played a leading role in developing the traffic microsimulation component of the Transportation Analysis and Simulation System (TRANSIMS); he led the
Epidemiology Simulation (EpiSims) project; and he was the
team leader for the Urban Infrastructure Suite (UIS),
of which both TRANSIMS and EpiSims are parts. UIS is a
collection of interoperable simulations of interacting
infrastructures, each of which simulates the behavior
of every individual in a large urban region. In his current position as Deputy Director of the Network
Simulation Sciences and Computing Laboratory at the Biocomplexity
Institute at University of Virginia, he is pursuing interests in
developing advanced technology for the study of large
socio-technical systems and understanding the dynamics and
structure of social networks.
</h6>
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<p><b>Talk abstract</b>: Policy informatics provides decision-makers evidence-based policy analytics for real-world situations. This presentation will examine the constraints this problem space imposes on modeling methods. Based on experiences in this area, we suggest the use of synthetic information systems constructed by simulating causal dynamics of socio-technical interactions. This generative approach is suitable for addressing hypothetical policies and can untangle the complex feedback loops among different scales in the system. KDD methods are involved in both the construction and analysis of the synthetic worlds.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row" id="section-invited-3">
<div class="col-sm-4 col-md-6">
<!-- <div class="video-container">-->
<!-- <iframe src="https://www.youtube-nocookie.com/embed/xxb5mbl3qlc" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>-->
<!-- </div>-->
<figure class="thumbnail">
<img src="img/gao-talk.png" class="img-responsive" alt="Image"></a>
</figure>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3>Lessons from the Field: AI for Mission-Critical Infrastructure</h3>
<h3><a href="https://www.linkedin.com/in/jimgao/">Jim Gao</a> </h3>
<h3><small>CEO & Co-founder of Phaidra, previous Team Lead of DeepMind Energy</small></h3>
</div>
</div>
</div>
<div class="row" id="section-invited-3-bio">
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<h6>Jim Gao is an entrepreneur with a background in AI and mechanical engineering. He led interdisciplinary teams at DeepMind and Google to develop and commercialize artificial intelligence (AI) products. This includes: 40% energy savings in cooling Google's data centers, 20% revenue increase in Google's wind farms, autonomous industrial systems, and future announcements. He left DeepMind to co-found Phaidra, a startup that helps industrial companies develop in-house AI solutions.
</h6>
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<p><b>Talk abstract</b>:
Applying AI to real-world physical systems can be challenging. This is especially true in the industrial sector, where the opportunities for AI and the cost of failure are very high. This talk shares lessons learned on how to apply AI to large industrial systems for maximum safety and impact.
</p>
</div>
</div>
</div>
</div>
<div class="container">
<!-- <div class="row" id="section-invited-4">-->
<!-- <div class="col-sm-6 col-md-3">-->
<!-- <figure class="thumbnail">-->
<!-- <a href="https://www.linkedin.com/in/jimgao/" target="view_window"><img src="img/jim-gao.jpg" class="img-responsive" alt="Image"></a>-->
<!-- <figcaption class="caption text-center">-->
<!-- <h3>Jim Gao</h3>-->
<!-- <h3><small>CEO & Co-founder of Phaidra, previous Team Lead of DeepMind Energy</small></h3>-->
<!-- <ul class="social-links">-->
<!-- <li><a href="#"><i class="fa fa-facebook"></i></a></li>-->
<!-- <li><a href="#"><i class="fa fa-twitter"></i></a></li>-->
<!-- <li><a href="#"><i class="fa fa-linkedin"></i></a></li>-->
<!-- <li><a href="#"><i class="fa fa-envelope"></i></a></li>-->
<!-- </ul>-->
<!-- </figcaption>-->
<!-- </figure>-->
<!-- </div>-->
<!-- <div class="col-sm-0 col-md-9">-->
<!-- <div class="section-title">-->
<!-- <div class="section-title">-->
<!-- <h3>Lessons from the Field: AI for Mission-Critical Infrastructure</h3>-->
<!-- <h4>Applying AI to real-world physical systems can be challenging. This is especially true in the industrial sector, where the opportunities for AI and the cost of failure are very high. This talk shares lessons learned on how to apply AI to large industrial systems for maximum safety and impact.</h4>-->
<!-- <h5>Bio: Jim Gao is an entrepreneur with a background in AI and mechanical engineering. He led interdisciplinary teams at DeepMind and Google to develop and commercialize artificial intelligence (AI) products. This includes: 40% energy savings in cooling Google's data centers, 20% revenue increase in Google's wind farms, autonomous industrial systems, and future announcements. He left DeepMind to co-found Phaidra, a startup that helps industrial companies develop in-house AI solutions.</h5>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<div class="row" id="section-invited-4">
<div class="col-sm-4 col-md-6">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/H_kzzV_F77w?controls=0" frameborder="1" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3>Planning and Modeling Urban Systems with Novel Data Sources</h3>
<h3><a href="https://ced.berkeley.edu/ced/faculty-staff/marta-gonzalez">Marta Gonzalez</a> </h3>
<h3><small>Professor of UC Berkeley</small></h3>
</div>
</div>
</div>
<div class="row" id="section-invited-4-bio">
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<h6>Marta C. Gonzalez is Associate Professor of City and Regional Planning at the University of California, Berkeley, and a Physics Research faculty in the Energy Technology Area (ETA) at the Lawrence Berkeley National Laboratory (Berkeley Lab). Her research team develops computer models to analyze digital traces of information mediated by devices. They process this information to manage the demand in urban infrastructures in relation to energy and mobility.
</h6>
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<p><b>Talk abstract</b>:
Computational Urban Sciences refer to the use of information and communication technology and data in the context of cities and urban environments. I present methods to identify patterns of occupancy in building energy consumption and the utilization of urban space. Our mobile phone-based occupancy estimates are integrated with a state-of-the-art urban building energy model to understand their impact on energy use predictions. Second, I present a new urban planning paradigm where within minutes, inhabitants can access their basic living needs by bike or by foot. I show insights of the interplay between the distributions of facilities and population that maximize accessibility over the existing road networks.
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row" id="section-invited-5">
<div class="col-sm-4 col-md-6">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/IspjcO9v1R8?controls=0" frameborder="1" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3>Building An Intelligent Ridesharing Marketplace</h3>
<h3><a href="http://www.yelabs.net/">Jieping Ye</a> </h3>
<h3><small>Head of DiDi AI Labs, Associate Professor of University of Michigan, Ann Arbor.</small></h3>
</div>
</div>
</div>
<div class="row" id="section-invited-5-bio">
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<h6>Jieping Ye is Head of DiDi AI Labs, a VP of Didi Chuxing and a DiDi Fellow. He is also a Professor at the University of Michigan, Ann Arbor. His research interests include data mining and machine learning with applications in transportation and biomedicine. He has served as a Senior Program Committee/Area Chair/Program Committee Vice Chair of many conferences including NIPS, ICML, KDD, IJCAI, AAAI, ICDM, and SDM. He serves as an Associate Editor of Data Mining and Knowledge Discovery and IEEE Transactions on Knowledge and Data Engineering. He won the NSF CAREER Award in 2010. His papers have been selected for the outstanding student paper at ICML in 2004, the KDD best research paper runner up in 2013, and the KDD best student paper award in 2014.
</h6>
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<p><b>Talk abstract</b>:
Didi Chuxing is the world’s leading mobile transportation platform that offers a full range of app-based transportation options for 550 million users. Every day, DiDi’s platform receives over 100TB new data, processes more than 40 billion routing requests, and acquires over 15 billion location points. AI has been used in numerous components of DiDi’s platform to improve travel safety, experience and efficiency. This talk systematically presents the challenges and opportunities in the core area of modern transportation systems, and highlights some of our recent works on order dispatching and fleet management via deep reinforcement learning.
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row" id="section-invited-6">
<div class="col-sm-4 col-md-6">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/SMPn2BA4XmE?controls=0" frameborder="1" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3>Some Experience on Learning for Decision-Making in Real-World Scenarios</h3>
<h3><a href="http://www.lamda.nju.edu.cn/yuy/">Yang Yu</a> </h3>
<h3><small>Professor of Nanjing University</small></h3>
</div>
</div>
</div>
<div class="row" id="section-invited-6-bio">
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<h6>Yang Yu is a Professor of Artificial Intelligence School, Nanjing University. Yang Yu is an associate professor of computer science in Nanjing University, China. He joined the LAMDA Group as a faculty since he got his Ph.D. degree in 2011. His research area is in machine learning and reinforcement learning, particularly focusing on real-world reinforcement learning. He was recognized as an AI’s 10 to Watch by IEEE Intelligent Systems in 2018, invited to have an Early Career Spotlight talk in IJCAI’18, and received the Early Career Award of PAKDD in 2018.
</h6>
</div>
</div>
<div class="col-sm-0 col-md-6">
<div class="section-title">
<h3></h3>
<p><b>Talk abstract</b>:
Reinforcement learning is one of the main approaches to learning for decision-making, and has shown super-human ability in playing games. While we are eager to implement such ability in real-world tasks, there are still great challenges to move RL from games to the real-world. In this talk, we will introduce some of our experience and understandings in landing RL, focusing on decision factors, data bias, and simulator learning.
</p>
</div>
</div>
</div>
</div>
</section>
<section id="section-competition" class="section-invited white-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-title">
<h2>Challenge on Mobility Intervention for Epidemics</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="section-title">
<p>Can you design effective mobility intervention strategies to contain epidemics?</p>
<p>In response to the COVID-19 pandemic, we are hosting a challenge to design mobility
intervention strategies to contain an epidemic. </p>
<p>In this challenge, participants can choose different mobility intervention actions
for each individual on any given day (e.g., confine in a neighborhood, quarantine
at home, isolation from everyone else).</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-2 col-md-2"> </div>
<div class="col-sm-8 col-md-8">
<figure class="thumbnail">
<figcaption class="caption text-center">
<p>Mobility Intervention Strategies </p>
</figcaption>
<img src="img/intervention_up.png" class="img-responsive" alt="Image">
<img src="img/intervention_down.png" class="img-responsive" alt="Image">
</figure>
</div>
<div class="col-sm-2 col-md-2"> </div>
<!-- /.col-sm-6 -->
</div>
<div class="row">
<div class="col-sm-2 col-md-2"> </div>
<div class="col-sm-8 col-md-8">
<figure class="thumbnail">
<figcaption class="caption text-center">
<p>The microscopic epidemic simulator will run the individual-level epidemic simulation according to the intervention strategy. </p>
</figcaption>
<img src="img/simulator_up.png" class="img-responsive" alt="Image">
<img src="img/simulation.gif" class="img-responsive" alt="Image">
</figure>
</div>
<div class="col-sm-2 col-md-2"> </div>
</div>
<div class="row">
<div class="col-sm-2 col-md-2"> </div>
<div class="col-sm-8 col-md-8">
<figure class="thumbnail">
<figcaption class="caption text-center">
<p>The goal is to minimize the number of people who get infected and also to minimize the number of interventions.</p>
</figcaption>
<img src="img/score_up.png" class="img-responsive" alt="Image">
<img src="img/score_down.gif" class="img-responsive" alt="Image">
</figure>
</div>
<div class="col-sm-2 col-md-2"> </div>
</div>
<div class="row">
<div class="col-sm-12 col-md-12">
<p> <small>The challenge is co-hosted by Penn State University, Tsinghua University, University of Southern California, Qatar Computing Research Institute, Shanghai Jiao Tong University, National and Kapodistrian University of Athens, and Virginia Tech,
with the technical support from CSPIRE Technologies, and Tianrang Intelligence and media support from Synced and Datawhale.</small></p>
</div>
</div>
</div>
<div class="container">
<div class="row" id="section-finalists">
<div class="col-sm-4 col-md-12">
<div class="section-title">
<h3>Top-5 Winning Teams</h3>
<h4>1 jiangyuanshuang*</h4>
<h4>2 banianzr*</h4>
<h4>3 strizzo</h4>
<h4>4 hjin</h4>
<h4>5 Yinzhao Dong</h4>
<p><small>* Due to an error of the organizers there were two different API setups that were used by the challenge participants. Specifically: the API get_individual_visited_history_with_p_infection(individualID), which provides additional information on pre-symptomatic cases, was enabled during Phase 1 of the competition and should have been disabled for Phase 2, but the instructions provided to the challenge participants were not sufficiently clear about this. In the top-5 list, the teams that utilised this API in their submitted solution are denoted by an asterisk.</small></p>
</div>
</div>
<!-- <div class="col-sm-0 col-md-8">-->
<!-- <div class="section-title">-->
<!-- <h3>Top-3 Winning Teams (without using deprecated API*)</h3>-->
<!-- <h4><small>1 strizzo</small></h4>-->
<!-- <h4><small>2 hjin</small></h4>-->
<!-- <h4><small>3 Yinzhao Dong</small></h4>-->
<!-- <p><small>* This deprecated API get_individual_visited_history_with_p_infection(individualID) provides extra information. Organizers should have disabled the API.-->
<!-- </small></p>-->
<!-- </div>-->
<!-- </div>-->
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-title">
<h3>Papers and Talks from Top Winners</h3>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row" id="section-finalists-talks-1">
<div class="col-sm-4 col-md-8">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/MNwCoaFjVZo" frameborder="1"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>
</div>
</div>
<div class="col-sm-4 col-md-4">
<figure class="thumbnail">
<a href="file/1-jiangyuanshuang.pdf">
<img src="file/1-jiangyuanshuang_Page_1.png" class="img-responsive" alt="Image"></a>
</figure>
</div>
</div>
</div>
<div class="container">
<div class="row" id="section-finalists-talks-2">
<div class="col-sm-4 col-md-8">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/vY01XS-wqLE" frameborder="1"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>
</div>
</div>
<div class="col-sm-4 col-md-4">
<figure class="thumbnail">
<a href="file/2-banianzr.pdf">
<img src="file/2-banianzr_Page_1.png" class="img-responsive" alt="Image"></a>
</figure>
</div>
</div>
</div>
<div class="container">
<div class="row" id="section-finalists-talks-3">
<div class="col-sm-4 col-md-8">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/Hd2EkqVhm_w?controls=0" frameborder="1"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>
</div>
</div>
<div class="col-sm-4 col-md-4">
<figure class="thumbnail">
<a href="file/3-strizzo.pdf">
<img src="file/3-strizzo_Page_1.png" class="img-responsive" alt="Image"></a>
</figure>
</div>
</div>
</div>
<div class="container">
<div class="row" id="section-finalists-talks-4">
<div class="col-sm-4 col-md-8">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/eUrUzIdKZ6s" frameborder="1"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>
</div>
</div>
<div class="col-sm-4 col-md-4">
<figure class="thumbnail">
<a href="file/4-hjin.pdf">
<img src="file/4-hjin_Page_1.png" class="img-responsive" alt="Image"></a>
</figure>
</div>
</div>
</div>
<div class="container">
<div class="row" id="section-finalists-talks-5">
<div class="col-sm-4 col-md-8">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/geOmHy-D23U?controls=0" frameborder="1"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="video"></iframe>
</div>
</div>
<div class="col-sm-4 col-md-4">
<figure class="thumbnail">
<a href="file/5-YinzhaoDong.pdf">
<img src="file/5-YinzhaoDong_Page_1.png" class="img-responsive" alt="Image"></a>
</figure>
</div>
</div>
</div>
</section>
<section id="section-organizers" class="section-wrapper team gray-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-title">
<h1>WORKSHOP ORGANIZERS</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-2 col-md-2">
<figure class="thumbnail">
<a href="https://faculty.ist.psu.edu/jessieli/Site/index.html" target="view_window"><img src="img/jessie-li.png" class="img-responsive" alt="Image"></a>
<figcaption class="caption text-center">
<h4><small>Zhenhui (Jessie) Li</small>
</h4>
<h5>
<small>Pennsylvania State University</small></h5>
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<!-- /.col-sm-6 -->
<div class="col-sm-2 col-md-2">
<figure class="thumbnail">
<a href="https://admin.qcri.org/our-people/bio?pid=205&name=Sanjay_Chawla" target="view_window"><img src="img/sanjay-chawla-1.jpeg" class="img-responsive" alt="Image"></a>
<figcaption class="caption text-center">
<h4><small>Sanjay Chawla</small>
</h4>
<h5><small>Qatar Computing Research Institute</small></h5>
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<div class="col-sm-2 col-md-2">
<figure class="thumbnail">
<a href="http://fi.ee.tsinghua.edu.cn/~liyong/" target="view_window"><img src="img/liyong.jpg" class="img-responsive" alt="Image"></a>
<figcaption class="caption text-center">
<h4><small>Yong Li</small>
</h4>
<h5><small>Tsinghua University</small></h5>
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<div class="col-sm-2 col-md-2">
<figure class="thumbnail">
<a href="http://people.cs.vt.edu/naren/" target="view_window"><img src="img/naren.jpeg" class="img-responsive" alt="Image"></a>
<figcaption class="caption text-center">
<h4><small>Naren Ramakrishnan</small></h4>
<h5>
<small>Virginia Tech</small>
</h5>
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<div class="col-sm-2 col-md-2">
<figure class="thumbnail">
<a href="https://infolab.usc.edu/Shahabi/" target="view_window"><img src="img/cyrus.jpg" class="img-responsive" alt="Image"></a>
<figcaption class="caption text-center">
<h4><small>Cyrus Shahabi</small></h4>
<h5>
<small>USC</small>
</h5>
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<div class="col-sm-2 col-md-2">
<figure class="thumbnail">
<a href="http://wnzhang.net/" target="view_window"><img src="img/weinan.jpg" class="img-responsive" alt="Image"></a>
<figcaption class="caption text-center">
<h4><small>Weinan Zhang</small></h4>
<h5>
<small>Shanghai Jiao Tong University</small>
</h5>
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
</div>
<div class="row">
<div class="col-sm-1 col-md-1">
</div>
<div class="col-sm-2 col-md-2">
<figure class="thumbnail">
<a href="http://kddlab.di.uoa.gr/dg.html" target="view_window"><img src="img/dimitrios-gunopulos-1.jpg" class="img-responsive" alt="Image"></a>
<figcaption class="caption text-center">
<h4><small>Dimitrios Gunopulos</small></h4>
<h5>
<small>University of Athens</small>
</h5>
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<div class="col-sm-2 col-md-2">
<figure class="thumbnail">
<a href="http://personal.psu.edu/hzw77/" target="view_window"><img src="img/huawei.jpg" class="img-responsive" alt="Image"></a>
<figcaption class="caption text-center">
<h4><small>Hua Wei</small></h4>
<h5>
<small>Pennsylvania State University</small>
</h5>
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<div class="col-sm-2 col-md-2">
<figure class="thumbnail">
<a href="http://jhc.sjtu.edu.cn/~gjzheng/" target="view_window"><img src="img/guanjie.jpg" class="img-responsive" alt="Image"></a>
<figcaption class="caption text-center">
<h4><small>Guanjie Zheng</small></h4>
<h5>
<small>Shanghai Jiao Tong University</small>
</h5>
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<div class="col-sm-2 col-md-2">
<figure class="thumbnail">
<a href="" target="view_window"><img src="img/sirui.jpeg" class="img-responsive" alt="Image"></a>
<figcaption class="caption text-center">
<h4><small>Sirui Song</small></h4>
<h5>
<small>Tsinghua University</small>
</h5>
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<div class="col-sm-2 col-md-2">
<figure class="thumbnail">
<a href="https://scholar.google.com/citations?user=DZ0q4kMAAAAJ&hl=en" target="view_window"><img src="img/luciano.jpg" class="img-responsive" alt="Image"></a>
<figcaption class="caption text-center">
<h4><small>Luciano Nocera</small></h4>
<h5>
<small>USC</small>
</h5>
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-envelope"></i></a></li>
</ul>
</figcaption>
</figure>
</div>
<!-- /.col-sm-6 -->
</div>
</div>
</section>
<!-- .team -->
<!-- <section id="section-ajenda" class="section-wrapper section-ajenda">-->
<!-- <div class="row">-->
<!-- <div class="col-md-12">-->
<!-- <div class="section-title">-->
<!-- <h1>Agenda</h1>-->
<!-- <h3>Date: August 24, 2020</h3>-->
<!-- <h4>* All in pacific time</h4>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="row">-->
<!-- <div class="col-md-4"></div>-->
<!-- <div class="col-md-8">-->
<!-- <p>8:00AM - 8:10AM <span class="tab"/> Opening</p>-->
<!-- <p>8:10AM - 8:55AM <span class="tab"/> pre-recorded talk by Alexandre Bayen</p>-->
<!-- <p>8:55AM - 9:45AM <span class="tab"/> pre-recorded talk by Stephen Eubank</p>-->
<!-- <p>9:30AM - 10:00AM <span class="tab"/> Break</p>-->
<!-- <p>10:00AM -10:45AM <span class="tab"/> pre-recorded talk by Jim Gao</p>-->
<!-- <p>10:45AM - 11:30AM <span class="tab"/> pre-recorded talk by Marta Gonzalez</p>-->
<!-- <p>11:30AM - 12:30PM <span class="tab"/> Epidemics challenge: pre-recorded talks from the top winners</p>-->
<!-- <p>12:00PM - 1:00PM <span class="tab"/> Break</p>-->
<!-- <p>1:00PM - 1:45PM <span class="tab"/> pre-recorded talk by Jieping Ye</p>-->
<!-- <p>1:45PM - 2:30PM <span class="tab"/> pre-recorded talk by Yang Yu</p>-->
<!-- <p>2:30PM - 3:00PM <span class="tab"/> Break</p>-->
<!-- <p>3:00PM - 3:20PM <span class="tab"/> Live Q&A by Marta Gonzalez</p>-->
<!-- <p>3:20PM - 3:40PM <span class="tab"/> Live Q&A by Stephen Eubank</p>-->
<!-- <p>3:40PM - 4:00PM <span class="tab"/> Live Q&A by Jim Gao</p>-->
<!-- <p>4:00PM - 4:20PM<span class="tab"/> Live Q&A by Alexandre Bayen</p>-->
<!-- <p>4:20PM - 4:40PM<span class="tab"/> Live Q&A by Jieping Ye</p>-->
<!-- <p>4:40PM - 5:00PM<span class="tab"/> Live Q&A by Yang Yu</p>-->
<!-- <p>5:00PM - 5:10PM <span class="tab"/> Conclusion</p>-->
<!-- </div>-->
<!-- </div>-->
<!--<!– <div class="row">–>-->
<!--<!– <div class="col-md-4">–>-->
<!--<!– <div class="session">–>-->
<!--<!– <time>8:00AM - 8:10AM</time>–>-->
<!--<!– <h2>Workshop opening remarks</h2>–>-->
<!--<!– </div>–>-->
<!--<!– <div class="session">–>-->
<!--<!– <time>8:10AM - 8:55AM</time>–>-->
<!--<!– <h2>Pre-recorded talk by Alexandre Bayen</h2>–>-->
<!--<!– </div>–>-->
<!--<!– <div class="session">–>-->
<!--<!– <time>8:55AM - 9:45AM</time>–>-->
<!--<!– <h2>Pre-recorded talk by Stephen Eubank</h2>–>-->
<!--<!– </div>–>-->
<!--<!– <div class="session">–>-->
<!--<!– <time>9:30AM - 10:00AM</time>–>-->
<!--<!– <h2>Break</h2>–>-->
<!--<!– </div>–>-->
<!--<!– <div class="session">–>-->
<!--<!– <time>10:00AM - 10:45AM</time>–>-->
<!--<!– <h2>Pre-recorded talk by Jim Gao</h2>–>-->
<!--<!– </div>–>-->
<!--<!– <div class="session">–>-->
<!--<!– <time>10:45AM - 11:30AM</time>–>-->
<!--<!– <h2>Pre-recorded talk by Marta Gonzalez</h2>–>-->
<!--<!– </div>–>-->
<!--<!– </div>–>-->
<!--<!– <div class="col-md-4">–>-->
<!--<!– <div class="session">–>-->
<!--<!– <time>11:30AM - 12:30PM</time>–>-->
<!--<!– <h2>Epidemics challenge: pre-recorded talks from the top winners</h2>–>-->
<!--<!– </div>–>-->
<!--<!– <div class="session">–>-->
<!--<!– <time>12:00PM - 1:00PM</time>–>-->
<!--<!– <h2>Break</h2>–>-->
<!--<!– </div>–>-->
<!--<!– <div class="session">–>-->
<!--<!– <time>1:00PM - 1:45PM</time>–>-->
<!--<!– <h2>Pre-recorded talk by Jieping Ye</h2>–>-->
<!--<!– </div>–>-->
<!--<!– <div class="session">–>-->
<!--<!– <time>1:45PM - 2:30PM</time>–>-->
<!--<!– <h2>Pre-recorded talk by Yang Yu</h2>–>-->
<!--<!– </div>–>-->
<!--<!– <div class="session">–>-->