-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
5687 lines (5685 loc) · 403 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" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Proceedings of the 2018 World Wide Web Conference</title>
<link href="basic.css" media="all" rel="stylesheet" title="Basic" />
<style>
body > header {
font-size: smaller;
text-align: justify;
}
article h1 {
font-size: 2em;
}
li[typeof="ScholarlyArticle"] {
margin-top:1em;
}
li[typeof="ScholarlyArticle"]:first-child,
li[typeof="ScholarlyArticle"] dl {
margin-top:0;
}
li[typeof="ScholarlyArticle"] dt:first-child {
display:none;
}
section[typeof="PublicationIssue"] dt,
section[typeof="PublicationIssue"] dd,
li[typeof="ScholarlyArticle"] dt,
li[typeof="ScholarlyArticle"] dd {
display:inline;
}
section[typeof="PublicationIssue"] dt:after,
li[typeof="ScholarlyArticle"] dt:after {
content:": ";
}
section[typeof="PublicationIssue"] dd,
li[typeof="ScholarlyArticle"] dd {
margin:0;
}
section[typeof="PublicationIssue"] dd + dt:before,
li[typeof="ScholarlyArticle"] dd + dt:before {
content:"\A";
white-space:pre;
}
</style>
</head>
<body vocab="http://schema.org/">
<header>
<p>This is a web copy of <a property="mainEntityOfPage http://purl.org/pav/derivedFrom http://www.w3.org/ns/prov#wasDerivedFrom" href="https://www2018.thewebconf.org/proceedings/"><span property="name">Proceedings of the 2018 World Wide Web Conference</span></a>. Published in WWW2018 Proceedings © 2018 International World Wide Web Conference Committee, published under <a rel="license" property="license" href="https://creativecommons.org/licenses/by/4.0/"> Creative Commons CC By 4.0 License</a>.</p>
<p>The <a property="http://purl.org/pav/createdWith" typeof="SoftwareSourceCode" href="https://github.com/usable-oa/thewebconf2018/tree/master/scripts">modifications</a> from the originals are solely to improve HTML aiming to make them <a href="https://doi.org/10.1038/sdata.2016.18" property="publishingPrinciples">Findable, Accessible, Interoperable and Reusable</a>, augmenting metadata and (just in case) avoiding ACM trademarks. To help improve this, please <a property="discussionUrl" href="https://github.com/usable-oa/thewebconf2018/issues">raise an issue or pull request</a>.</p>
<p>To cite these papers, use their DOI. To link to or reference their HTML version here, use the corresponding w3id.org permalinks.</p>
</header>
<main>
<article about="" typeof="Article">
<h1 property="name">Proceedings of the 2018 World Wide Web Conference</h1>
<nav>
<ul>
<li><a href="#9781450356398">Proceedings of the 2018 World Wide Web Conference on World Wide Web - WWW '18</a></li>
<li><a href="#9781450356404">Companion of the The Web Conference 2018 on The Web Conference 2018 - WWW '18</a></li>
</ul>
</nav>
<section id="9781450356398" resource="urn:isbn:9781450356398" typeof="PublicationIssue">
<h2 property="name">Proceedings of the 2018 World Wide Web Conference on World Wide Web - WWW '18</h2>
<dl>
<dt>ISBN</dt> <dd lang="" property="isbn" xml:lang="">9781450356398</dd>
<dt>Published</dt> <dd><time datatype="xsd:gYear" property="schema:datePublished">2018</time></dd>
</dl>
<div datatype="rdf:HTML" property="schema:description">
<ul rel="hasPart">
<li resource="https://w3id.org/oa/10.1145/3178876.3185992" id="10.1145/3178876.3185992" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3185992"><span property="name">Detecting Absurd Conversations from Intelligent Assistant Logs by Exploiting User Feedback Utterances</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Chikara Hashimoto, Manabu Sassano</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3185992" property="sameAs">10.1145/3178876.3185992</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3185992">https://w3id.org/oa/10.1145/3178876.3185992</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3185993" id="10.1145/3178876.3185993" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3185993"><span property="name">ROSC</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Xiang Li, Ben Kao, Siqiang Luo, Martin Ester</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3185993" property="sameAs">10.1145/3178876.3185993</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3185993">https://w3id.org/oa/10.1145/3178876.3185993</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3185994" id="10.1145/3178876.3185994" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3185994"><span property="name">DRN</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Guanjie Zheng, Fuzheng Zhang, Zihan Zheng, Yang Xiang, Nicholas Jing Yuan, Xing Xie, Zhenhui Li</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3185994" property="sameAs">10.1145/3178876.3185994</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3185994">https://w3id.org/oa/10.1145/3178876.3185994</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3185995" id="10.1145/3178876.3185995" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3185995"><span property="name">Sharing Deep Neural Network Models with Interpretation</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Huijun Wu, Chen Wang, Jie Yin, Kai Lu, Liming Zhu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3185995" property="sameAs">10.1145/3178876.3185995</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3185995">https://w3id.org/oa/10.1145/3178876.3185995</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3185996" id="10.1145/3178876.3185996" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3185996"><span property="name">Unsupervised Anomaly Detection via Variational Auto-Encoder for Seasonal KPIs in Web Applications</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Haowen Xu, Yang Feng, Jie Chen, Zhaogang Wang, Honglin Qiao, Wenxiao Chen, Nengwen Zhao, Zeyan Li, Jiahao Bu, Zhihan Li, Ying Liu, Youjian Zhao, Dan Pei</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3185996" property="sameAs">10.1145/3178876.3185996</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3185996">https://w3id.org/oa/10.1145/3178876.3185996</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3185997" id="10.1145/3178876.3185997" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3185997"><span property="name">Time Expression Recognition Using a Constituent-based Tagging Scheme</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Xiaoshi Zhong, Erik Cambria</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3185997" property="sameAs">10.1145/3178876.3185997</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3185997">https://w3id.org/oa/10.1145/3178876.3185997</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3185998" id="10.1145/3178876.3185998" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3185998"><span property="name">Parabel</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Yashoteja Prabhu, Anil Kag, Shrutendra Harsola, Rahul Agrawal, Manik Varma</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3185998" property="sameAs">10.1145/3178876.3185998</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3185998">https://w3id.org/oa/10.1145/3178876.3185998</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3185999" id="10.1145/3178876.3185999" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3185999"><span property="name">Dynamic Embeddings for Language Evolution</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Maja Rudolph, David Blei</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3185999" property="sameAs">10.1145/3178876.3185999</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3185999">https://w3id.org/oa/10.1145/3178876.3185999</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186000" id="10.1145/3178876.3186000" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186000"><span property="name">HighLife</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Patrick Ernst, Amy Siu, Gerhard Weikum</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186000" property="sameAs">10.1145/3178876.3186000</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186000">https://w3id.org/oa/10.1145/3178876.3186000</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186001" id="10.1145/3178876.3186001" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186001"><span property="name">Content Attention Model for Aspect Based Sentiment Analysis</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Qiao Liu, Haibin Zhang, Yifu Zeng, Ziqi Huang, Zufeng Wu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186001" property="sameAs">10.1145/3178876.3186001</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186001">https://w3id.org/oa/10.1145/3178876.3186001</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186002" id="10.1145/3178876.3186002" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186002"><span property="name">Financing the Web of Data with Delayed-Answer Auctions</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Tobias Grubenmann, Abraham Bernstein, Dmitry Moor, Sven Seuken</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186002" property="sameAs">10.1145/3178876.3186002</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186002">https://w3id.org/oa/10.1145/3178876.3186002</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186003" id="10.1145/3178876.3186003" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186003"><span property="name">Estimating the Cardinality of Conjunctive Queries over RDF Data Using Graph Summarisation</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Giorgio Stefanoni, Boris Motik, Egor V. Kostylev</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186003" property="sameAs">10.1145/3178876.3186003</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186003">https://w3id.org/oa/10.1145/3178876.3186003</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186004" id="10.1145/3178876.3186004" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186004"><span property="name">Never-Ending Learning for Open-Domain Question Answering over Knowledge Bases</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Abdalghani Abujabal, Rishiraj Saha Roy, Mohamed Yahya, Gerhard Weikum</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186004" property="sameAs">10.1145/3178876.3186004</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186004">https://w3id.org/oa/10.1145/3178876.3186004</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186005" id="10.1145/3178876.3186005" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186005"><span property="name">Large-Scale Hierarchical Text Classification with Recursively Regularized Deep Graph-CNN</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Hao Peng, Jianxin Li, Yu He, Yaopeng Liu, Mengjiao Bao, Lihong Wang, Yangqiu Song, Qiang Yang</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186005" property="sameAs">10.1145/3178876.3186005</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186005">https://w3id.org/oa/10.1145/3178876.3186005</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186006" id="10.1145/3178876.3186006" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186006"><span property="name">Estimating Rule Quality for Knowledge Base Completion with the Relationship between Coverage Assumption</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Kaja Zupanc, Jesse Davis</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186006" property="sameAs">10.1145/3178876.3186006</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186006">https://w3id.org/oa/10.1145/3178876.3186006</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186007" id="10.1145/3178876.3186007" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186007"><span property="name">Improving Word Embedding Compositionality using Lexicographic Definitions</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Thijs Scheepers, Evangelos Kanoulas, Efstratios Gavves</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186007" property="sameAs">10.1145/3178876.3186007</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186007">https://w3id.org/oa/10.1145/3178876.3186007</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186008" id="10.1145/3178876.3186008" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186008"><span property="name">Browserless Web Data Extraction</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Ruslan R. Fayzrakhmanov, Emanuel Sallinger, Ben Spencer, Tim Furche, Georg Gottlob</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186008" property="sameAs">10.1145/3178876.3186008</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186008">https://w3id.org/oa/10.1145/3178876.3186008</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186009" id="10.1145/3178876.3186009" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186009"><span property="name">Short-Text Topic Modeling via Non-negative Matrix Factorization Enriched with Local Word-Context Correlations</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Tian Shi, Kyeongpil Kang, Jaegul Choo, Chandan K. Reddy</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186009" property="sameAs">10.1145/3178876.3186009</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186009">https://w3id.org/oa/10.1145/3178876.3186009</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186010" id="10.1145/3178876.3186010" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186010"><span property="name">Are All People Married?</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Jonathan Lajus, Fabian M. Suchanek</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186010" property="sameAs">10.1145/3178876.3186010</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186010">https://w3id.org/oa/10.1145/3178876.3186010</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186011" id="10.1145/3178876.3186011" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186011"><span property="name">Socioeconomic Dependencies of Linguistic Patterns in Twitter</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Jacob Levy Abitbol, Márton Karsai, Jean-Philippe Magué, Jean-Pierre Chevrot, Eric Fleury</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186011" property="sameAs">10.1145/3178876.3186011</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186011">https://w3id.org/oa/10.1145/3178876.3186011</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186012" id="10.1145/3178876.3186012" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186012"><span property="name">An Attention Factor Graph Model for Tweet Entity Linking</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Chenwei Ran, Wei Shen, Jianyong Wang</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186012" property="sameAs">10.1145/3178876.3186012</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186012">https://w3id.org/oa/10.1145/3178876.3186012</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186013" id="10.1145/3178876.3186013" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186013"><span property="name">Find the Conversation Killers</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Yunhao Jiao, Cheng Li, Fei Wu, Qiaozhu Mei</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186013" property="sameAs">10.1145/3178876.3186013</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186013">https://w3id.org/oa/10.1145/3178876.3186013</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186014" id="10.1145/3178876.3186014" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186014"><span property="name">Semantics and Complexity of GraphQL</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Olaf Hartig, Jorge Pérez</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186014" property="sameAs">10.1145/3178876.3186014</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186014">https://w3id.org/oa/10.1145/3178876.3186014</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186015" id="10.1145/3178876.3186015" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186015"><span property="name">Sentiment Analysis by Capsules</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Yequan Wang, Aixin Sun, Jialong Han, Ying Liu, Xiaoyan Zhu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186015" property="sameAs">10.1145/3178876.3186015</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186015">https://w3id.org/oa/10.1145/3178876.3186015</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186016" id="10.1145/3178876.3186016" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186016"><span property="name">Modelling Dynamics in Semantic Web Knowledge Graphs with Formal Concept Analysis</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Larry González, Aidan Hogan</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186016" property="sameAs">10.1145/3178876.3186016</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186016">https://w3id.org/oa/10.1145/3178876.3186016</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186017" id="10.1145/3178876.3186017" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186017"><span property="name">Scalable Instance Reconstruction in Knowledge Bases via Relatedness Affiliated Embedding</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Richong Zhang, Junpeng Li, Jiajie Mei, Yongyi Mao</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186017" property="sameAs">10.1145/3178876.3186017</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186017">https://w3id.org/oa/10.1145/3178876.3186017</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186018" id="10.1145/3178876.3186018" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186018"><span property="name">Leveraging Social Media Signals for Record Linkage</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Andrew T. Schneider, Arjun Mukherjee, Eduard C. Dragut</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186018" property="sameAs">10.1145/3178876.3186018</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186018">https://w3id.org/oa/10.1145/3178876.3186018</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186019" id="10.1145/3178876.3186019" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186019"><span property="name">A Structured Approach to Understanding Recovery and Relapse in AA</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Yue Zhang, Arti Ramesh, Jennifer Golbeck, Dhanya Sridhar, Lise Getoor</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186019" property="sameAs">10.1145/3178876.3186019</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186019">https://w3id.org/oa/10.1145/3178876.3186019</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186020" id="10.1145/3178876.3186020" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186020"><span property="name">Facet Annotation Using Reference Knowledge Bases</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Riccardo Porrini, Matteo Palmonari, Isabel F. Cruz</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186020" property="sameAs">10.1145/3178876.3186020</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186020">https://w3id.org/oa/10.1145/3178876.3186020</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186021" id="10.1145/3178876.3186021" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186021"><span property="name">MemeSequencer</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Abhimanyu Dubey, Esteban Moro, Manuel Cebrian, Iyad Rahwan</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186021" property="sameAs">10.1145/3178876.3186021</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186021">https://w3id.org/oa/10.1145/3178876.3186021</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186022" id="10.1145/3178876.3186022" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186022"><span property="name">Matching Natural Language Sentences with Hierarchical Sentence Factorization</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Bang Liu, Ting Zhang, Fred X. Han, Di Niu, Kunfeng Lai, Yu Xu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186022" property="sameAs">10.1145/3178876.3186022</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186022">https://w3id.org/oa/10.1145/3178876.3186022</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186023" id="10.1145/3178876.3186023" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186023"><span property="name">Why Reinvent the Wheel</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Kuldeep Singh, Christoph Lange, Maria Esther Vidal, Jens Lehmann, Sören Auer, Arun Sethupat Radhakrishna, Andreas Both, Saeedeh Shekarpour, Ioanna Lytra, Ricardo Usbeck, Akhilesh Vyas, Akmal Khikmatullaev, Dharmen Punjani</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186023" property="sameAs">10.1145/3178876.3186023</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186023">https://w3id.org/oa/10.1145/3178876.3186023</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186024" id="10.1145/3178876.3186024" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186024"><span property="name">Weakly-supervised Relation Extraction by Pattern-enhanced Embedding Learning</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Meng Qu, Xiang Ren, Yu Zhang, Jiawei Han</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186024" property="sameAs">10.1145/3178876.3186024</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186024">https://w3id.org/oa/10.1145/3178876.3186024</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186025" id="10.1145/3178876.3186025" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186025"><span property="name">Finding Needles in an Encyclopedic Haystack</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Marius Pasca</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186025" property="sameAs">10.1145/3178876.3186025</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186025">https://w3id.org/oa/10.1145/3178876.3186025</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186026" id="10.1145/3178876.3186026" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186026"><span property="name">User-guided Hierarchical Attention Network for Multi-modal Social Image Popularity Prediction</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Wei Zhang, Wen Wang, Jun Wang, Hongyuan Zha</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186026" property="sameAs">10.1145/3178876.3186026</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186026">https://w3id.org/oa/10.1145/3178876.3186026</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186027" id="10.1145/3178876.3186027" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186027"><span property="name">A Coherent Unsupervised Model for Toponym Resolution</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Ehsan Kamalloo, Davood Rafiei</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186027" property="sameAs">10.1145/3178876.3186027</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186027">https://w3id.org/oa/10.1145/3178876.3186027</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186028" id="10.1145/3178876.3186028" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186028"><span property="name">Inferring Missing Categorical Information in Noisy and Sparse Web Markup</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Nicolas Tempelmeier, Elena Demidova, Stefan Dietze</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186028" property="sameAs">10.1145/3178876.3186028</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186028">https://w3id.org/oa/10.1145/3178876.3186028</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186029" id="10.1145/3178876.3186029" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186029"><span property="name">Towards Annotating Relational Data on the Web with Language Models</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Matteo Cannaviccio, Denilson Barbosa, Paolo Merialdo</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186029" property="sameAs">10.1145/3178876.3186029</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186029">https://w3id.org/oa/10.1145/3178876.3186029</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186030" id="10.1145/3178876.3186030" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186030"><span property="name">CESI</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Shikhar Vashishth, Prince Jain, Partha Talukdar</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186030" property="sameAs">10.1145/3178876.3186030</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186030">https://w3id.org/oa/10.1145/3178876.3186030</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186031" id="10.1145/3178876.3186031" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186031"><span property="name">Creating Crowdsourced Research Talks at Scale</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Rajan Vaish, Shirish Goyal, Amin Saberi, Sharad Goel</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186031" property="sameAs">10.1145/3178876.3186031</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186031">https://w3id.org/oa/10.1145/3178876.3186031</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186032" id="10.1145/3178876.3186032" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186032"><span property="name">Attack under Disguise</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Chenglin Miao, Qi Li, Lu Su, Mengdi Huai, Wenjun Jiang, Jing Gao</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186032" property="sameAs">10.1145/3178876.3186032</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186032">https://w3id.org/oa/10.1145/3178876.3186032</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186033" id="10.1145/3178876.3186033" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186033"><span property="name">Leveraging Crowdsourcing Data for Deep Active Learning An Application</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Jie Yang, Thomas Drake, Andreas Damianou, Yoelle Maarek</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186033" property="sameAs">10.1145/3178876.3186033</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186033">https://w3id.org/oa/10.1145/3178876.3186033</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186034" id="10.1145/3178876.3186034" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186034"><span property="name">Web-Based VR Experiments Powered by the Crowd</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Xiao Ma, Megan Cackett, Leslie Park, Eric Chien, Mor Naaman</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186034" property="sameAs">10.1145/3178876.3186034</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186034">https://w3id.org/oa/10.1145/3178876.3186034</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186035" id="10.1145/3178876.3186035" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186035"><span property="name">CHIMP</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Mario Almeida, Muhammad Bilal, Alessandro Finamore, Ilias Leontiadis, Yan Grunenberger, Matteo Varvello, Jeremy Blackburn</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186035" property="sameAs">10.1145/3178876.3186035</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186035">https://w3id.org/oa/10.1145/3178876.3186035</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186036" id="10.1145/3178876.3186036" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186036"><span property="name">Crowd-based Multi-Predicate Screening of Papers in Literature Reviews</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Evgeny Krivosheev, Fabio Casati, Boualem Benatallah</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186036" property="sameAs">10.1145/3178876.3186036</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186036">https://w3id.org/oa/10.1145/3178876.3186036</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186037" id="10.1145/3178876.3186037" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186037"><span property="name">The Size Conundrum</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Himel Dev, Chase Geigle, Qingtao Hu, Jiahui Zheng, Hari Sundaram</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186037" property="sameAs">10.1145/3178876.3186037</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186037">https://w3id.org/oa/10.1145/3178876.3186037</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186038" id="10.1145/3178876.3186038" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186038"><span property="name">Bid-Limited Targeting</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Patrick Hummel, Uri Nadav</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186038" property="sameAs">10.1145/3178876.3186038</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186038">https://w3id.org/oa/10.1145/3178876.3186038</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186039" id="10.1145/3178876.3186039" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186039"><span property="name">Reinforcement Mechanism Design for e-commerce</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Qingpeng Cai, Aris Filos-Ratsikas, Pingzhong Tang, Yiwei Zhang</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186039" property="sameAs">10.1145/3178876.3186039</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186039">https://w3id.org/oa/10.1145/3178876.3186039</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186040" id="10.1145/3178876.3186040" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186040"><span property="name">Field-weighted Factorization Machines for Click-Through Rate Prediction in Display Advertising</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Junwei Pan, Jian Xu, Alfonso Lobos Ruiz, Wenliang Zhao, Shengjun Pan, Yu Sun, Quan Lu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186040" property="sameAs">10.1145/3178876.3186040</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186040">https://w3id.org/oa/10.1145/3178876.3186040</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186041" id="10.1145/3178876.3186041" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186041"><span property="name">Dynamic Mechanism Design in the Field</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Vahab Mirrokni, Renato Paes Leme, Rita Ren, Song Zuo</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186041" property="sameAs">10.1145/3178876.3186041</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186041">https://w3id.org/oa/10.1145/3178876.3186041</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186042" id="10.1145/3178876.3186042" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186042"><span property="name">Incentive-Aware Learning for Large Markets</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Alessandro Epasto, Mohammad Mahdian, Vahab Mirrokni, Song Zuo</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186042" property="sameAs">10.1145/3178876.3186042</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186042">https://w3id.org/oa/10.1145/3178876.3186042</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186043" id="10.1145/3178876.3186043" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186043"><span property="name">Incentive-Compatible Diffusion</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Yakov Babichenko, Oren Dean, Moshe Tennenholtz</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186043" property="sameAs">10.1145/3178876.3186043</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186043">https://w3id.org/oa/10.1145/3178876.3186043</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186044" id="10.1145/3178876.3186044" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186044"><span property="name">A Short-term Intervention for Long-term Fairness in the Labor Market</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Lily Hu, Yiling Chen</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186044" property="sameAs">10.1145/3178876.3186044</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186044">https://w3id.org/oa/10.1145/3178876.3186044</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186046" id="10.1145/3178876.3186046" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186046"><span property="name">Detecting Ponzi Schemes on Ethereum</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Weili Chen, Zibin Zheng, Jiahui Cui, Edith Ngai, Peilin Zheng, Yuren Zhou</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186046" property="sameAs">10.1145/3178876.3186046</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186046">https://w3id.org/oa/10.1145/3178876.3186046</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186047" id="10.1145/3178876.3186047" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186047"><span property="name">Testing Incentive Compatibility in Display Ad Auctions</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Sébastien Lahaie, Andrés Munoz Medina, Balasubramanian Sivan, Sergei Vassilvitskii</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186047" property="sameAs">10.1145/3178876.3186047</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186047">https://w3id.org/oa/10.1145/3178876.3186047</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186048" id="10.1145/3178876.3186048" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186048"><span property="name">Simple vs Optimal Contests with Convex Costs</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Amy Greenwald, Takehiro Oyakawa, Vasilis Syrgkanis</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186048" property="sameAs">10.1145/3178876.3186048</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186048">https://w3id.org/oa/10.1145/3178876.3186048</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186049" id="10.1145/3178876.3186049" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186049"><span property="name">A Fast Deep Learning Model for Textual Relevance in Biomedical Information Retrieval</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Sunil Mohan, Nicolas Fiorini, Sun Kim, Zhiyong Lu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186049" property="sameAs">10.1145/3178876.3186049</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186049">https://w3id.org/oa/10.1145/3178876.3186049</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186050" id="10.1145/3178876.3186050" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186050"><span property="name">Multi-Task Learning Improves Disease Models from Web Search</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Bin Zou, Vasileios Lampos, Ingemar Cox</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186050" property="sameAs">10.1145/3178876.3186050</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186050">https://w3id.org/oa/10.1145/3178876.3186050</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186051" id="10.1145/3178876.3186051" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186051"><span property="name">Multi-instance Domain Adaptation for Vaccine Adverse Event Detection</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Junxiang Wang, Liang Zhao</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186051" property="sameAs">10.1145/3178876.3186051</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186051">https://w3id.org/oa/10.1145/3178876.3186051</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186052" id="10.1145/3178876.3186052" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186052"><span property="name">Modeling Individual Cyclic Variation in Human Behavior</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Emma Pierson, Tim Althoff, Jure Leskovec</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186052" property="sameAs">10.1145/3178876.3186052</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186052">https://w3id.org/oa/10.1145/3178876.3186052</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186053" id="10.1145/3178876.3186053" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186053"><span property="name">Multi-Task Pharmacovigilance Mining from Social Media Posts</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Shaika Chowdhury, Chenwei Zhang, Philip S. Yu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186053" property="sameAs">10.1145/3178876.3186053</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186053">https://w3id.org/oa/10.1145/3178876.3186053</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186055" id="10.1145/3178876.3186055" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186055"><span property="name">Did You Really Just Have a Heart Attack?</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Payam Karisani, Eugene Agichtein</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186055" property="sameAs">10.1145/3178876.3186055</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186055">https://w3id.org/oa/10.1145/3178876.3186055</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186056" id="10.1145/3178876.3186056" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186056"><span property="name">Arrays of (locality-sensitive) Count Estimators (ACE)</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Chen Luo, Anshumali Shrivastava</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186056" property="sameAs">10.1145/3178876.3186056</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186056">https://w3id.org/oa/10.1145/3178876.3186056</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186057" id="10.1145/3178876.3186057" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186057"><span property="name">Mile High WiFi</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">John P. Rula, James Newman, Fabián E. Bustamante, Arash Molavi Kakhki, David Choffnes</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186057" property="sameAs">10.1145/3178876.3186057</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186057">https://w3id.org/oa/10.1145/3178876.3186057</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186058" id="10.1145/3178876.3186058" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186058"><span property="name">DeepMove</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Jie Feng, Yong Li, Chao Zhang, Funing Sun, Fanchao Meng, Ang Guo, Depeng Jin</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186058" property="sameAs">10.1145/3178876.3186058</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186058">https://w3id.org/oa/10.1145/3178876.3186058</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186059" id="10.1145/3178876.3186059" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186059"><span property="name">Aladdin</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Yun Ma, Ziniu Hu, Yunxin Liu, Tao Xie, Xuanzhe Liu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186059" property="sameAs">10.1145/3178876.3186059</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186059">https://w3id.org/oa/10.1145/3178876.3186059</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186060" id="10.1145/3178876.3186060" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186060"><span property="name">The Cost of Digital Advertisement</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Panagiotis Papadopoulos, Nicolas Kourtellis, Evangelos P. Markatos</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186060" property="sameAs">10.1145/3178876.3186060</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186060">https://w3id.org/oa/10.1145/3178876.3186060</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186061" id="10.1145/3178876.3186061" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186061"><span property="name">Facebook (A)Live?</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Aravindh Raman, Gareth Tyson, Nishanth Sastry</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186061" property="sameAs">10.1145/3178876.3186061</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186061">https://w3id.org/oa/10.1145/3178876.3186061</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186062" id="10.1145/3178876.3186062" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186062"><span property="name">I'll Be Back</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Zhiyuan Lin, Tim Althoff, Jure Leskovec</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186062" property="sameAs">10.1145/3178876.3186062</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186062">https://w3id.org/oa/10.1145/3178876.3186062</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186063" id="10.1145/3178876.3186063" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186063"><span property="name">Joint User- and Event- Driven Stable Social Event Organization</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Xin Wang, Wenwu Zhu, Chun Chen, Martin Ester</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186063" property="sameAs">10.1145/3178876.3186063</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186063">https://w3id.org/oa/10.1145/3178876.3186063</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186064" id="10.1145/3178876.3186064" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186064"><span property="name">Learning on Partial-Order Hypergraphs</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Fuli Feng, Xiangnan He, Yiqun Liu, Liqiang Nie, Tat-Seng Chua</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186064" property="sameAs">10.1145/3178876.3186064</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186064">https://w3id.org/oa/10.1145/3178876.3186064</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186065" id="10.1145/3178876.3186065" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186065"><span property="name">"Satisfaction with Failure" or "Unsatisfied Success"</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Mengyang Liu, Yiqun Liu, Jiaxin Mao, Cheng Luo, Min Zhang, Shaoping Ma</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186065" property="sameAs">10.1145/3178876.3186065</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186065">https://w3id.org/oa/10.1145/3178876.3186065</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186066" id="10.1145/3178876.3186066" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186066"><span property="name">TEM</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Xiang Wang, Xiangnan He, Fuli Feng, Liqiang Nie, Tat-Seng Chua</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186066" property="sameAs">10.1145/3178876.3186066</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186066">https://w3id.org/oa/10.1145/3178876.3186066</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186067" id="10.1145/3178876.3186067" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186067"><span property="name">Ad Hoc Table Retrieval using Semantic Similarity</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Shuo Zhang, Krisztian Balog</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186067" property="sameAs">10.1145/3178876.3186067</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186067">https://w3id.org/oa/10.1145/3178876.3186067</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186068" id="10.1145/3178876.3186068" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186068"><span property="name">Query Suggestion with Feedback Memory Network</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Bin Wu, Chenyan Xiong, Maosong Sun, Zhiyuan Liu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186068" property="sameAs">10.1145/3178876.3186068</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186068">https://w3id.org/oa/10.1145/3178876.3186068</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186069" id="10.1145/3178876.3186069" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186069"><span property="name">A Sparse Topic Model for Extracting Aspect-Specific Summaries from Online Reviews</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Vineeth Rakesh, Weicong Ding, Aman Ahuja, Nikhil Rao, Yifan Sun, Chandan K. Reddy</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186069" property="sameAs">10.1145/3178876.3186069</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186069">https://w3id.org/oa/10.1145/3178876.3186069</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186070" id="10.1145/3178876.3186070" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186070"><span property="name">Neural Attentional Rating Regression with Review-level Explanations</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Chong Chen, Min Zhang, Yiqun Liu, Shaoping Ma</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186070" property="sameAs">10.1145/3178876.3186070</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186070">https://w3id.org/oa/10.1145/3178876.3186070</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186071" id="10.1145/3178876.3186071" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186071"><span property="name">Learning from Multi-View Multi-Way Data via Structural Factorization Machines</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Chun-Ta Lu, Lifang He, Hao Ding, Bokai Cao, Philip S. Yu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186071" property="sameAs">10.1145/3178876.3186071</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186071">https://w3id.org/oa/10.1145/3178876.3186071</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186072" id="10.1145/3178876.3186072" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186072"><span property="name">Scalable Supervised Discrete Hashing for Large-Scale Search</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Xin Luo, Ye Wu, Xin-Shun Xu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186072" property="sameAs">10.1145/3178876.3186072</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186072">https://w3id.org/oa/10.1145/3178876.3186072</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186073" id="10.1145/3178876.3186073" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186073"><span property="name">Subgraph-augmented Path Embedding for Semantic User Search on Heterogeneous Social Network</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Zemin Liu, Vincent W. Zheng, Zhou Zhao, Hongxia Yang, Kevin Chen-Chuan Chang, Minghui Wu, Jing Ying</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186073" property="sameAs">10.1145/3178876.3186073</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186073">https://w3id.org/oa/10.1145/3178876.3186073</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186074" id="10.1145/3178876.3186074" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186074"><span property="name">Leveraging Fine-Grained Wikipedia Categories for Entity Search</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Denghao Ma, Yueguo Chen, Kevin Chen-Chuan Chang, Xiaoyong Du, Chuanfei Xu, Yi Chang</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186074" property="sameAs">10.1145/3178876.3186074</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186074">https://w3id.org/oa/10.1145/3178876.3186074</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186075" id="10.1145/3178876.3186075" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186075"><span property="name">Online Compact Convexified Factorization Machine</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Xiao Lin, Wenpeng Zhang, Min Zhang, Wenwu Zhu, Jian Pei, Peilin Zhao, Junzhou Huang</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186075" property="sameAs">10.1145/3178876.3186075</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186075">https://w3id.org/oa/10.1145/3178876.3186075</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186076" id="10.1145/3178876.3186076" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186076"><span property="name">Understanding and Predicting Delay in Reciprocal Relations</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Jundong Li, Jiliang Tang, Yilin Wang, Yali Wan, Yi Chang, Huan Liu</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186076" property="sameAs">10.1145/3178876.3186076</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186076">https://w3id.org/oa/10.1145/3178876.3186076</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186077" id="10.1145/3178876.3186077" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186077"><span property="name">Hierarchical Variational Memory Network for Dialogue Generation</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Hongshen Chen, Zhaochun Ren, Jiliang Tang, Yihong Eric Zhao, Dawei Yin</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186077" property="sameAs">10.1145/3178876.3186077</a></dd>
<dt>Permalink</dt>
<dd><a href="https://w3id.org/oa/10.1145/3178876.3186077">https://w3id.org/oa/10.1145/3178876.3186077</a></dd>
</dl>
</li>
<li resource="https://w3id.org/oa/10.1145/3178876.3186078" id="10.1145/3178876.3186078" typeof="ScholarlyArticle">
<a href="https://w3id.org/oa/10.1145/3178876.3186078"><span property="name">Strategies for Geographical Scoping and Improving a Gazetteer</span></a>
<dl>
<dt>Authors</dt>
<dd xml:lang="" lang="">Sanket Kumar Singh, Davood Rafiei</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1145/3178876.3186078" property="sameAs">10.1145/3178876.3186078</a></dd>
<dt>Permalink</dt>