-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1407 lines (1307 loc) · 62.9 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>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="favicon.ico" />
<link rel="bookmark" href="favicon.ico" />
<meta name="keywords" content="cikm2019,cikm,2019">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link id="bootstrap_221" rel="stylesheet" type="text/css" class="library"
href="http://apps.bdimg.com/libs/bootstrap/3.3.4/css/bootstrap.min.css">
<script id="jquery_172" type="text/javascript" class="library"
src="http://apps.bdimg.com/libs/jquery/1.9.1/jquery.min.js"></script>
<script id="bootstrap_221" type="text/javascript" class="library"
src="http://apps.bdimg.com/libs/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link href="libs/swiper.min.css" rel="stylesheet">
<link href="css/banner.css?v=8.1" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" />
<title>ACM CIKM 2019: The 28th ACM International Conference on Information and Knowledge Management</title>
<meta name="google-site-verification" content="tqH5ib1uFZfu31uOIFS9zhcxs3t5qcdXbpei7Bl54wU" />
<style type="text/css">
.date-button {
float: left;
padding-right: 2rem;
max-width: 14rem;
}
.date-button-row {
margin-top: 1.7rem;
margin-bottom: 40px;
margin-left: 20px;
}
#keydates ul {
padding-left: 0;
}
#keydates dt {
float: left;
min-width: 120px;
margin-right: 10px;
margin-left: 20px;
background-color: #C96C2D;
height: 28px;
}
#keydates dd {
float: left;
color: #FFFFFF;
}
#keydates dl {
min-height: 60px;
display: inline-flex;
}
#keydates .textpanel {
background-image: url(./elements/bg_keydates.png);
background-repeat: no-repeat;
background-position: right center;
background-size: auto;
}
#news .textpanel {
background-image: url(./elements/bg_news.png);
background-repeat: no-repeat;
background-position: bottom left;
background-size: 80%;
overflow-y: hidden;
}
#submitpaper .textpanel {
background-image: url(./elements/bg_submissions.png);
background-repeat: no-repeat;
background-position: bottom right;
background-size: 200px;
}
#news dd {
line-height: 1.2;
}
.agenda {
margin-top: 30px;
margin: 10px;
text-align: center;
background: rgba(239, 239, 239, 0.7);
}
.agenda-inner {
margin: 10px 0;
padding: 20px 10px;
transition: 1s;
}
.agenda-inner:hover {
background: #E0E0E0;
}
.agenda dd {
font-weight: bolder;
color: #7C1200;
font-size: 24px;
margin-bottom: 20px;
}
.agenda dt {
font-size: 22px;
font-weight: normal;
}
#schedule {
user-select: none;
margin-bottom: 0;
border-left: #C1A370 solid 5px;
border-right: #C1A370 solid 5px;
}
#schedule .title {
writing-mode: vertical-lr;
position: absolute;
left: 0;
font-size: 24px;
color: #C1A370;
}
.schedule-item {
float: left;
width: 100%;
position: relative;
}
.schedule-item>.upper {
height: 150px;
background-image: url(./elements/schedule_img.png);
background-size: 300px auto;
background-repeat: no-repeat;
background-position: center 0px;
padding-top: 25px;
}
.schedule-item:hover>.upper {
background-image: url(./elements/schedule_img_hover.png)
}
.schedule-item>.upper>span {
color: #FFF;
font-size: 15px;
}
.schedule-item>.lower {
position: absolute;
bottom: 0;
display: grid;
color: #C1A370;
}
.reg-button {
width: 400px;
max-width: 100%;
background: #7C1200;
font-size: 24px;
transition: 0.3s all ease-in-out;
color: #FFF !important;
}
.reg-button:hover {
background: #C96C2D;
/* color: #7C1200 !important; */
}
.speaker {
border-right: 1px solid #BF9A43;
}
.speaker:last-child {
border: none;
}
.speaker .center {
padding-bottom: 60px;
}
.speaker .location {
position: absolute;
padding: 0;
right: 2px;
bottom: 10px;
width: 100%;
color: #C09B43;
}
#register a {
font-size: 34px;
font-style: italic;
text-decoration: underline;
}
/* .sponsor-item.wider {
width: 15%;
} */
#register a:hover {
color: #C96C2D;
}
/* */
.swiper-container {
width: 100%;
height: 100%;
}
.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;
/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
height: unset;
}
#industrial {
margin-top: 30px;
margin-bottom: 30px;
}
.industrial-speaker {
display: flex;
height: 100%;
width: 100%;
float: left;
position: relative;
margin: 20px 0;
}
.industrial-speaker-image {
padding: 0;
max-width: 33.3333%;
}
.industrial-speaker-image img {
width: 100%;
}
.industrial-speaker-desc h1 {
color: #C09B43;
text-align: left;
font-size: 24px;
}
.industrial-speaker-desc h2 {
color: #000;
text-align: left;
font-weight: bold;
font-size: 16px;
}
#tips {
padding: 30px 10px;
}
#tips .inner {
padding: 10px 15px;
background-color: whitesmoke;
}
#tips h1 {
color: #7C1200;
font-style: italic;
font-size: 32px;
margin-bottom: 20px;
font-weight: bold;
}
#tips h1 span {
margin-left: 1.2em;
color: #555;
font-weight: normal;
}
#tips li {
margin-left: 30px;
/* list-style: none; */
font-size: 24px;
}
#tips li span,
#tips a {
color: #7C1200;
font-weight: bold;
font-style: italic;
}
#tips a {
text-decoration: underline;
}
@media screen and (min-width: 992px) and (max-width: 1499px) {
/* #news {
margin-left: -8.33333%;
width: 33%;
}
#keydates {
width: 58.333333%;
}
#submitpaper {
margin-right: -8.33333%;
} */
#schedule {
width: 90%;
margin-left: 5%;
margin-right: 5%;
}
.speaker h1 {
font-size: 22px;
}
.speaker h2 {
font-size: 16px;
}
.speaker .info {
font-size: 12px;
min-height: 80px;
}
.industrial-speaker {
display: unset;
}
.industrial-speaker-desc h1 {
font-size: 18px;
}
.industrial-speaker-desc h2 {
font-size: 12px;
}
}
@media screen and (min-width:769px) {
.textpanel {
height: 460px;
}
}
@media screen and (max-width:991px) {
#submitpaper .imgdeco {
width: 300px !important;
}
.speaker .info {
font-size: 12px;
min-height: 100px;
}
.speaker h1 {
font-size: 18px;
}
.speaker h2 {
font-size: 14px;
}
.schedule-item {
margin-bottom: 30px;
}
.schedule-item>.upper {
background-size: 300px;
/* background-position: center 0px;
padding-top: 40px; */
}
#tips h1 {
font-size: 28px;
}
#tips li {
font-size: 18px;
}
}
@media screen and (max-width:768px) {
.speaker {
width: 100%;
border-right: none;
border-bottom: 1px solid #BF9A43;
}
.speaker:last-child {
margin-bottom: 40px;
}
.date-button {
margin-bottom: 10px;
}
.date-button-row {
display: grid;
}
#keydates dl {
display: table;
}
#keydates dt {
/* min-width: 40%; */
margin-left: 0;
}
#keynotespeakers .bottom-title-text>a {
font-size: 20px;
color: #FFF;
}
.sponsor-item .img-container {
margin: 0 !important;
}
#industrial .bottom-title-text a {
font-size: 20px;
}
.industrial-speaker-image {
width: 100%;
max-width: unset;
}
.industrial-speaker-desc {
width: 100%;
}
.industrial-speaker-desc h1 {
font-size: 19px;
}
.industrial-speaker-desc h2 {
display: none;
}
.industrial-speaker {
display: unset;
}
/* .sponsor-item.wider {
width: 100%;
} */
}
</style>
</head>
<body>
<div id="header">
<img class="fullwidth" src="elements/top_deco.png" style="position: absolute">
<img class="imgdeco rightdecoration" src="elements/right_deco.png" alt="">
<div>
<a href="index.html"><img class="logo" src="elements/LOGO.png"></a>
</div>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="left navbar-toggle collapsed" data-toggle="collapse"
data-target="#header-navbar" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="header-navbar">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbar-program" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Program
</a>
<ul class="dropdown-menu" aria-labelledby="navbar-program">
<li><a class="dropdown-item" target="_blank" href="attachments/CIKM2019-Program.pdf">Program Schedule (PDF)</a></li>
<li><a class="dropdown-item" href="programoverview.html">Program Overview</a></li>
<li><a class="dropdown-item" href="session.html">Detailed Program</a></li>
<li><a class="dropdown-item" href="keynotespeakers.html">Keynote Speakers</a></li>
<li><a class="dropdown-item" href="workshops.html">Workshops</a></li>
<li><a class="dropdown-item" href="tutorials.html">Tutorials</a></li>
<li><a class="dropdown-item" href="posters.html">Posters</a></li>
<li><a class="dropdown-item" href="industry-speakers.html">Industrial Speakers</a></li>
<li><a class="dropdown-item" href="presentation-instruction.html">Presentation
Instructions</a></li>
</ul>
</li>
<li><a href="awards.html">Awards</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbar-attendings" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Attending
</a>
<ul class="dropdown-menu" aria-labelledby="navbar-attendings">
<li><a class="dropdown-item" href="registration.html">Registration</a></li>
<li><a class="dropdown-item" href="accomodation.html">Accommodation</a></li>
<li><a class="dropdown-item" href="venue.html">Venue Information</a></li>
</ul>
</li>
<li><a href="challenge.html">AnalytiCup Challenge</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbar-submissions" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Call for Contributions
</a>
<ul class="dropdown-menu" aria-labelledby="navbar-submissions">
<li><a class="dropdown-item" href="callforpapers.html">Call for Research Papers</a></li>
<li><a class="dropdown-item" href="callforworkshops.html">Call for Workshop
Proposals</a></li>
<li><a class="dropdown-item" href="callfordemos.html">Call for Demos</a></li>
<li><a class="dropdown-item" href="callforappliedresearchpapers.html">Call for Applied
Research
Papers</a></li>
<li><a class="dropdown-item" href="callfortutorials.html">Call for Tutorials</a></li>
</ul>
</li>
<li><a href="callforsponsorship.html">Sponsorship</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbar-attendings" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Organizers
</a>
<ul class="dropdown-menu" aria-labelledby="navbar-attendings">
<li><a class="dropdown-item" href="organizingcommittee.html">Organizing Committee</a>
</li>
<li><a class="dropdown-item" href="pcmembers.html">Program Committee</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div class="container metacontainer" id="main-container">
<!-- Carousel -->
<div id="myCarousel" class="carousel slide hidden">
<div class="carousel-inner">
<div class="item active">
<img src="elements/swiper/gg.jpg" alt="First slide">
</div>
<div class="item">
<img src="elements/swiper/cc.jpg" alt="Second slide">
</div>
<div class="item">
<img src="elements/swiper/cbd.jpg" alt="Third slide">
</div>
<div class="item">
<img src="elements/swiper/nc.jpg" alt="Fourth slide">
</div>
<div class="item">
<img src="elements/swiper/tt.jpg" alt="Fifth slide">
</div>
</div>
<div class="footercap">
<h3>Scenic Spots and Historical Monuments, Beijing</h3>
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
<li data-target="#myCarousel" data-slide-to="4"></li>
</ol>
</div>
</div>
<!-- Carousel -->
<!-- Welcome -->
<div class="col-xs-12">
<div id="welcome">
<h2>WELCOME</h2>
<p>The 28th ACM International Conference on Information and Knowledge Management (CIKM) takes place on
November
3rd-7th, 2019 in Beijing, China.</p>
<p>Our theme for 2019 is "AI for Future Life".</p>
<p>Strategically positioned at the intersection of research on the management of knowledge, information,
and data,</p>
<p>CIKM is uniquely situated to highlight technologies and insights that materialize the Big Data and
Artificial
Intelligence vision of the future. </p>
</div>
</div>
<!-- Welcome -->
<!-- News & KeynoteSpeakers -->
<div class="col-xs-10 col-xs-offset-1">
<div class="col-md-12" id="keynotespeakers">
<div class="bottom-title col-md-12">
<div class="bottom-title-text">
<a href="keynotespeakers.html">KEYNOTE SPEAKERS</a>
</div>
</div>
<div class="speaker-wrapper col-md-12" id="speakers1">
<div class="speaker col-md-3 col-xs-12">
<a href="keynotespeakers.html#SteveMaybank">
<div class="col-md-12 img-wrap">
<!-- <img src="elements/color-font/y-4.png" class="date"> -->
<div class="img-container" style="padding-bottom: 120%">
<img src="elements/speakers/5-72.png" />
</div>
</div>
<div class="col-md-12 center">
<h1>Steve Maybank</h1>
<div class="info">Professor, Birkbeck, The University of London, FRSS, FIEEE</div>
<h2>The Fisher-Rao Metric in Computer Vision</h2>
</div>
</a>
<div class="location center">Date: Nov 4<br />Room: Plenary Hall B</div>
</div>
<div class="speaker col-md-3 col-xs-12">
<a href="keynotespeakers.html#JianPei">
<div class="col-md-12 img-wrap">
<!-- <img src="elements/color-font/y-5.png" class="date"> -->
<div class="img-container" style="padding-bottom: 120%">
<img src="elements/speakers/4-72.png" />
</div>
</div>
<div class="col-md-12 center">
<h1>Jian Pei</h1>
<div class="info">Professor, Simon Fraser University, FACM, FIEEE</div>
<h2>Practicing the Art of Data Science</h2>
</div>
</a>
<div class="location center">Date: Nov 5<br />Room: Plenary Hall B</div>
</div>
<div class="speaker col-md-3 col-xs-12">
<a href="keynotespeakers.html#JiaweiHan">
<div class="col-md-12 img-wrap">
<!-- <img src="elements/color-font/y-6.png" class="date"> -->
<div class="img-container" style="padding-bottom: 120%">
<img src="elements/speakers/3-72.png" />
</div>
</div>
<div class="col-md-12 center">
<h1>Jiawei Han</h1>
<div class="info">Abel Bliss Professor, University of Illinois at Urbana-Champaign,
FACM,
FIEEE</div>
<h2>From Unstructured Text to TextCube: Automated Construction and Multidimensional
Exploration</h2>
</div>
</a>
<div class="location center">Date: Nov 6<br />Room: Plenary Hall B</div>
</div>
<div class="speaker col-md-3 col-xs-12">
<a href="keynotespeakers.html#JianpingShi">
<div class="col-md-12 img-wrap">
<!-- <img src="elements/color-font/y-7.png" class="date"> -->
<div class="img-container" style="padding-bottom: 120%">
<img src="elements/speakers/2-72.png" />
</div>
</div>
<div class="col-md-12 center">
<h1>Jianping Shi</h1>
<div class="info">Executive R&D Director, SenseTime</div>
<h2>Autonomous Driving Towards Mass Production</h2>
</div>
</a>
<div class="location center">Date: Nov 7<br />Room: 301AB</div>
</div>
</div>
</div>
</div>
<!-- News & KeynoteSpeakers -->
<div class="col-xs-10 col-xs-offset-1" id="industrial">
<div class="bottom-title col-md-12" style="padding: 0 10%;">
<div class="bottom-title-text">
<a href="industry-speakers.html"
>INDUSTRIAL INVITED SPEAKERS</a>
</div>
</div>
<div class="col-md-12" style="">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide" style="margin-right: 30px;">
<a href="industry-speakers.html#shumingshi">
<div class="industrial-speaker">
<div class="industrial-speaker-image col-md-4">
<img src="elements/industryspeakers/shumingshi.png" alt="" style="">
</div>
<div class="industrial-speaker-desc col-md-8">
<h1>Shuming Shi</h1>
<h2>Title: Text Understanding and Generation for Chatbots</h2>
</div>
</div>
</a>
</a>
</div>
<div class="swiper-slide" style="margin-right: 30px;">
<a href="industry-speakers.html#weicui">
<div class="industrial-speaker">
<div class="industrial-speaker-image col-md-4">
<img src="elements/industryspeakers/weicui.png" alt="" style="">
</div>
<div class="industrial-speaker-desc col-md-8">
<h1>Wei Cui</h1>
<h2>Title: Developing a Super One-on-One Tutor with AI and Big data</h2>
</div>
</div>
</a>
</div>
<div class="swiper-slide" style="margin-right: 30px;">
<a href="industry-speakers.html#ruihuasong">
<div class="industrial-speaker">
<div class="industrial-speaker-image col-md-4">
<img src="elements/industryspeakers/ruishuasong.png" alt="" style="">
</div>
<div class="industrial-speaker-desc col-md-8">
<h1>Ruihua Song</h1>
<h2>Title: Research and Practice in Xiaoice: How We Make an AI Human-Like</h2>
</div>
</div>
</a>
</div>
<div class="swiper-slide" style="margin-right: 30px;">
<a href="industry-speakers.html#zhongyuanwang">
<div class="industrial-speaker">
<div class="industrial-speaker-image col-md-4">
<img src="elements/industryspeakers/zhongyuanwang.png" alt="" style="">
</div>
<div class="industrial-speaker-desc col-md-8">
<h1>Zhongyuan Wang</h1>
<h2>Title: Meituan Brain: A Knowledge Graph Helping People Eat Better and Live
Better</h2>
</div>
</div>
</a>
</div>
<div class="swiper-slide" style="margin-right: 30px;">
<a href="industry-speakers.html#yandongliu">
<div class="industrial-speaker">
<div class="industrial-speaker-image col-md-4">
<img src="elements/industryspeakers/Yandong Liu.png" alt="" style="">
</div>
<div class="industrial-speaker-desc col-md-8">
<h1>Yandong Liu</h1>
<h2>Title: The Discovery Challenge: AI + ML and the Future of Sport</h2>
</div>
</div>
</a>
</div>
<div class="swiper-slide" style="margin-right: 30px;">
<a href="industry-speakers.html#leili">
<div class="industrial-speaker">
<div class="industrial-speaker-image col-md-4">
<img src="elements/industryspeakers/leili.png" alt="" style="">
</div>
<div class="industrial-speaker-desc col-md-8">
<h1>Lei Li</h1>
<h2>Title: Multi-lingual Cross-modal Machine Translation at Global Scale</h2>
</div>
</div>
</a>
</div>
<div class="swiper-slide" style="margin-right: 30px;">
<a href="industry-speakers.html#chullee">
<div class="industrial-speaker">
<div class="industrial-speaker-image col-md-4">
<img src="elements/industryspeakers/ChulLee.png" alt="" style="">
</div>
<div class="industrial-speaker-desc col-md-8">
<h1>Chul Lee</h1>
<h2>Title: Technical challenges of implementing AI algorithms for consumer
electronic devices</h2>
</div>
</div>
</a>
</div>
<div class="swiper-slide" style="margin-right: 30px;">
<a href="industry-speakers.html#zuopeng">
<div class="industrial-speaker">
<div class="industrial-speaker-image col-md-4">
<img src="elements/industryspeakers/ZuoPeng.png" alt="" style="">
</div>
<div class="industrial-speaker-desc col-md-8">
<h1>Zuo Peng</h1>
<h2>Title: A sneak peek into the future of language education: Overview of AI
application in Duolingo</h2>
</div>
</div>
</a>
</div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination swiper-pagination-clickable swiper-pagination-bullets">
<span class="swiper-pagination-bullet swiper-pagination-bullet-active" tabindex="0"
role="button" aria-label="Go to slide 1"></span>
<span class="swiper-pagination-bullet" tabindex="0" role="button"
aria-label="Go to slide 2"></span>
<span class="swiper-pagination-bullet" tabindex="0" role="button"
aria-label="Go to slide 3"></span>
<span class="swiper-pagination-bullet" tabindex="0" role="button"
aria-label="Go to slide 4"></span>
<span class="swiper-pagination-bullet" tabindex="0" role="button"
aria-label="Go to slide 5"></span>
<span class="swiper-pagination-bullet" tabindex="0" role="button"
aria-label="Go to slide 6"></span>
<span class="swiper-pagination-bullet" tabindex="0" role="button"
aria-label="Go to slide 7"></span>
<span class="swiper-pagination-bullet" tabindex="0" role="button"
aria-label="Go to slide 8"></span>
</div>
<span class="swiper-notification" aria-live="assertive" aria-atomic="true"></span>
</div>
</div>
</div>
<div class="col-md-10 col-xs-12 col-md-offset-1 col-xs-offset-0">
<div class="col-xs-12 col-md-5" id="news" style="padding-left: 0">
<div class="textpanel">
<div class="titlebar">
<span class="left">
News
<img src="./elements/news/news_icon.png">
</span>
<span class="right">
<a href="javascript:void(0)">more<img src="./elements/news/more.png" alt=""></a>
</span>
</div>
<div class="newslist">
<dl>
<dt>Nov 6, 2019</dt>
<dd><a href="awards.html">CIKM19 Awards page is online</a></dd>
</dl>
<dl>
<dt>Nov 2, 2019</dt>
<dd><a href="attachments/CIKM2019-Program.pdf" target="_blank" class="notice">Program Schedule PDF is available now</a></dd>
</dl>
<dl>
<dt>Nov 2, 2019</dt>
<dd><a href="registration.html">Online registration entry is closed, please register on site</a></dd>
</dl>
<dl>
<dt>Oct 24, 2019</dt>
<dd><a href="presentation-instruction.html" class="notice">Click here to view Presentation
Instructions</a></dd>
</dl>
<dl>
<dt>Oct 19, 2019</dt>
<dd><a href="venue.html">Update venue map</a></dd>
</dl>
<dl>
<dt>Oct 16, 2019</dt>
<dd><a href="venue.html">Update route from airport to venue</a></dd>
</dl>
<dl>
<dt>Oct 16, 2019</dt>
<dd><a href="accomodation.html">Update route from airport to suggested hotels</a></dd>
</dl>
<dl>
<dt>Oct 15, 2019</dt>
<dd><a href="pcmembers.html">Program committee page is online</a></dd>
</dl>
<dl>
<dt>Oct 15, 2019</dt>
<dd><a href="posters.html">Poster sessions page is online</a></dd>
</dl>
<dl>
<dt>Oct 13, 2019</dt>
<dd><a href="programoverview.html">Program overview page is online</a></dd>
</dl>
<dl>
<dt>Oct 13, 2019</dt>
<dd><a href="session.html">Detailed program page is online</a></dd>
</dl>
<dl>
<dt>Oct 3, 2019</dt>
<dd><a href="keynotespeakers.html">Keynote speakers page is online</a></dd>
</dl>
<!-- <dl>
<dt>Sep 27, 2019</dt>
<dd><a href="schedule.html">Schedule of CIKM2019 is online</a></dd>
</dl> -->
<dl>
<dt>Sep 23, 2019</dt>
<dd><a href="tutorials.html">Tutorials page is online</a></dd>
</dl>
<dl>
<dt>Sep 1, 2019</dt>
<dd><a href="registration.html">Registration information page is online</a></dd>
</dl>
<dl>
<dt>Aug 12, 2019</dt>
<dd><a href="callforappliedresearchpapers.html" class="notice">Applied research paper
acceptance notification date is postponed to Aug 15</a></dd>
</dl>
<dl>
<dt>Aug 7, 2019</dt>
<dd><a href="callforpapers.html" class="notice">Research paper acceptance notification date
is postponed to Aug 8</a></dd>
</dl>
<dl>
<dt>Jul 18, 2019</dt>
<dd><a href="https://tianchi.aliyun.com/markets/tianchi/cikm19_en_copy?spm=a2c22.265802.1380778.2.4cdb2b2cFZlc5l&wh_ttid=pc"
target="_blank">CIKM E-Commerce AI Challenge is online</a></dd>
</dl>
<dl>
<dt>Jun 29, 2019</dt>
<dd><a href="callfortutorials.html">The call for tutorials is
online</a></dd>
</dl>
<dl>
<dt>Jun 22, 2019</dt>
<dd><a href="callforappliedresearchpapers.html" class="notice">Applied research paper
submission deadline! (23:59, AoE
time)</a>
</dd>
</dl>
<dl>
<dt>Jun 3, 2019</dt>
<dd><a href="workshops.html">Workshops page is online</a>
</dd>
</dl>
<dl>
<dt>May 23, 2019</dt>
<dd><a href="callfordemos.html" class="notice">Demo submission deadline! (23:59, AoE
time)</a></dd>
</dl>
<dl>
<dt>May 22, 2019</dt>
<dd><a href="callforpapers.html" class="notice">Research paper submission deadline! (23:59,
AoE time)</a></dd>
</dl>
<dl>
<dt>May 14, 2019</dt>
<dd><a href="callforappliedresearchpapers.html">The call for applied research papers is
online</a></dd>
</dl>
<dl>
<dt>Apr 29, 2019</dt>
<dd><a href="https://easychair.org/conferences/?conf=cikm2019">Submission page is online</a>
</dd>
</dl>
<dl>
<dt>Apr 19, 2019</dt>
<dd><a href="callfordemos.html">The call for demos is online</a></dd>
</dl>
<dl>
<dt>Apr 11, 2019</dt>
<dd><a href="callforsponsorship.html">Sponsorship page is online</a></dd>
</dl>
<dl>
<dt>Mar 06, 2019</dt>
<dd><a href="callforworkshops.html">The call for workshop proposals is online</a></dd>
</dl>
<dl>
<dt>Jan 17, 2019</dt>
<dd><a href="organizingcommittee.html">Organizing Committee page is online</a></dd>
</dl>
<dl>
<dt>Dec 02, 2018</dt>
<dd><a href="callforpapers.html">The call for research papers is online</a></dd>
</dl>
</div>
</div>
</div>
<div class="col-xs-12 col-md-7 keydates" id="keydates" style="padding-right: 0">
<div class="textpanel">
<div class="titlebar">
<span class="left">
Program Overview
<img src="./elements/keydates/keydates.png">
</span>
<span class="right">
<a href="programoverview.html">more<img src="./elements/news/more.png" alt=""></a>
</span>
</div>
<div class="row date-button-row">
<div class="date-button">
<a href="javascript:void(0)" onclick="openSingleKeydate('#keydate_papers', '#a_papers')"
id="a_papers">
Keynote
</a>
</div>
<div class="date-button">