-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathworkshop.html
752 lines (663 loc) · 25.2 KB
/
workshop.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MIND</title>
<meta property="og:title" content="MIND" />
<meta name="author" content="msnews" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="About MIND" />
<meta property="og:description" content="About MIND" />
<link rel="canonical" href="https://msnews.github.io/" />
<meta property="og:url" content="https://msnews.github.io/" />
<meta property="og:site_name" content="MIND" />
<meta property="og:type" content="article" />
<link rel="stylesheet" href="./assets/css/layout.css" type="text/css">
<link rel="icon" type="image/png" sizes="32x32" href="https://msnews.github.io/assets/img/icons/M.png">
<meta name="apple-mobile-web-app-title" content="MIND">
<meta name="application-name" content="MIND">
<meta name="theme-color" content="#ffffff">
<style class="inlineCSS">
h1 {
color: #313237;
margin-top: 0;
margin-bottom: .5rem
}
.dark-bg {
background-color: #313237
}
@media only screen and (min-width:48em) {
.post-card {
width: 48.4375%;
margin-right: 3.125%
}
.post-card:last-of-type,
.post-card:nth-child(2n+2) {
margin-right: 0
}
}
html {
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%
}
body {
margin: 0
}
header,
nav,
section {
display: block
}
h1 {
font-size: 2em;
margin: .67em 0
}
figure,
main {
display: block
}
figure {
margin: 1em 40px
}
a {
background-color: transparent;
-webkit-text-decoration-skip: objects
}
img {
border-style: none
}
svg:not(:root) {
overflow: hidden
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit
}
html {
-webkit-box-sizing: border-box;
box-sizing: border-box
}
body {
-webkit-overflow-scrolling: touch
}
*,
::after,
::before {
-webkit-box-sizing: inherit;
box-sizing: inherit
}
.site {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
min-height: 100vh;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}
.site__content {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1
}
img {
max-width: 100%;
height: auto;
width: auto;
vertical-align: middle
}
figure {
margin: 0
}
body {
background-color: #fff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
font-size: 1rem;
line-height: 1.5;
color: #343851;
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: 100%
}
p {
margin-top: 0;
margin-bottom: 1.25rem
}
h1,
h2 {
color: #313237;
margin-top: 0;
margin-bottom: .5rem
}
a {
color: #277cea;
text-decoration: none;
border-bottom: 1px dashed #277cea
}
.blur {
background: #fff;
filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="16" /></filter></svg>#filter');
-webkit-filter: blur(1rem);
filter: blur(1rem)
}
.container {
padding: 0 20px;
max-width: 100%;
margin: 0 auto
}
@media only screen and (min-width:36em) {
.container {
max-width: 540px;
margin: 0 auto
}
}
@media only screen and (min-width:48em) {
.container {
max-width: 720px;
margin: 0 auto
}
}
@media only screen and (min-width:62em) {
.container {
max-width: 960px;
margin: 0 auto
}
}
@media only screen and (min-width:75em) {
.container {
max-width: 1170px;
margin: 0 auto
}
}
.header {
background-color: #fff;
color: #343851;
position: absolute;
z-index: 4;
width: 100%;
top: 0;
left: 0;
will-change: transform;
-webkit-transform: translateY(0);
transform: translateY(0)
}
.header a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-bottom: 0
}
.header__logo {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: 100%;
overflow: hidden;
padding: 19px 0;
margin-right: 1.25rem;
outline: 0;
border-bottom: 0;
color: #313237
}
.header__logo .header__logo--container {
width: 100px
}
.header__logo .header__logo--container .logo {
fill: currentColor
}
.header__inner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 3.75em;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}
.header__links {
padding-bottom: .5rem;
display: none;
position: absolute;
top: 3.75em;
left: 0;
width: 100%;
height: auto;
background: #fff
}
.header__link {
color: #343851;
padding: .938rem 0;
border-top: 1px solid #ededed
}
.header__toggle {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 44px;
height: 100%;
background-color: transparent;
padding-left: 1.25rem
}
.header__toggle span {
display: block;
position: relative;
margin-top: 4px;
background-color: #343851;
width: 100%;
height: 2px;
border-radius: 1px
}
.header__toggle span:first-child {
margin-top: 0
}
@media (min-width:62em) {
.header__toggle {
display: none;
visibility: hidden
}
.header__links {
position: static;
padding: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
visibility: visible;
width: auto;
height: 100%
}
.header__links-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: 100%;
padding: 0
}
.header__link {
position: relative;
padding: .938rem 1rem;
border: 0;
height: 100%
}
.header__link::after {
content: "";
display: block;
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 100%;
-webkit-transform: scaleX(0);
transform: scaleX(0);
background: #277cea
}
}
.post-card {
display: block;
position: relative;
width: 100%;
min-height: 250px;
border-radius: 4px;
overflow: hidden;
background-color: #fff;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
margin-bottom: 2.25rem;
border-bottom: 0
}
@media only screen and (min-width:48em) {
.post-card {
width: 48.4375%;
margin-right: 3.125%
}
.post-card:nth-child(2n+2) {
margin-right: 0
}
}
@media only screen and (min-width:75em) {
.post-card {
width: 31.25%;
margin-right: 3.125%
}
.post-card:nth-child(2n+2) {
margin-right: 3.125%
}
}
.post-card__label {
position: absolute;
top: 1.5rem;
left: 1.5rem;
z-index: 2
}
.post-card__inner {
display: block;
position: relative;
padding: 1.875rem 1.25rem .625rem;
width: 100%;
color: #838c8d;
border-bottom: 0
}
.post-card__header {
margin-bottom: .75rem
}
.post-card__meta {
font-size: .875rem
}
.post-card__thumb {
margin: 0;
background: #fff;
position: relative;
overflow: hidden
}
.post-card__thumb::after {
content: "";
display: block;
height: 0;
width: 100%;
padding-bottom: 56.25%
}
.post-card__thumb>* {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block
}
.label {
padding: 0 10px;
margin-bottom: 1rem;
display: inline-block;
line-height: 20px;
font-size: .75rem;
text-transform: uppercase;
letter-spacing: 1px;
color: rgba(255, 255, 255, .8);
border: 2px solid rgba(255, 255, 255, .5);
border-radius: 100px
}
.hero {
margin: 3rem auto 0;
min-height: 15rem;
width: 100%;
position: relative;
background-color: #dde5ea;
background-repeat: no-repeat;
background-position: 50%;
background-size: cover
}
@media only screen and (min-width:62em) {
.hero {
margin: 2.5rem auto;
height: 23em
}
}
.hero::before {
position: absolute;
display: block;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(52, 56, 81, .8)
}
.hero__wrap {
position: absolute;
margin: auto;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
color: rgba(255, 255, 255, .8);
width: 100%;
max-width: 90%;
z-index: 1
}
.hero__wrap .hero__title2 {
font-size: 1.9em;
color: #fff
}
.blog {
background-color: #f9f9f9
}
.post-list {
padding-top: 2.5em;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-flex: 1;
-ms-flex: 1 0 auto;
flex: 1 0 auto
}
@media only screen and (min-width:48em) {
.hero__wrap {
max-width: 40em
}
.hero__wrap .hero__title2 {
padding: 1rem 0;
font-size: 1.9em;
line-height: 3.125rem
}
.post-list {
padding-top: 5em
}
}
</style>
<link rel="preload" href="https://msnews.github.io/assets/css/main.css" as="style" onload="this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="https://msnews.github.io/assets/css/main.css"></noscript>
<script
type="text/javascript"> (function (w) { "use strict"; if (!w.loadCSS) { w.loadCSS = function () { } } var rp = loadCSS.relpreload = {}; rp.support = (function () { var ret; try { ret = w.document.createElement("link").relList.supports("preload") } catch (e) { ret = !1 } return function () { return ret } })(); rp.bindMediaToggle = function (link) { var finalMedia = link.media || "all"; function enableStylesheet() { link.media = finalMedia } if (link.addEventListener) { link.addEventListener("load", enableStylesheet) } else if (link.attachEvent) { link.attachEvent("onload", enableStylesheet) } setTimeout(function () { link.rel = "stylesheet"; link.media = "only x" }); setTimeout(enableStylesheet, 3000) }; rp.poly = function () { if (rp.support()) { return } var links = w.document.getElementsByTagName("link"); for (var i = 0; i < links.length; i++) { var link = links[i]; if (link.rel === "preload" && link.getAttribute("as") === "style" && !link.getAttribute("data-loadcss")) { link.setAttribute("data-loadcss", !0); rp.bindMediaToggle(link) } } }; if (!rp.support()) { rp.poly(); var run = w.setInterval(rp.poly, 500); if (w.addEventListener) { w.addEventListener("load", function () { rp.poly(); w.clearInterval(run) }) } else if (w.attachEvent) { w.attachEvent("onload", function () { rp.poly(); w.clearInterval(run) }) } } if (typeof exports !== "undefined") { exports.loadCSS = loadCSS } else { w.loadCSS = loadCSS } }(typeof global !== "undefined" ? global : this)) </script>
<script
type="text/javascript"> function getJson(url) { return JSON.parse($.ajax({ type: 'GET', url: url, dataType: 'json', global: false, async: false, success: function (data) { return data; } }).responseText); } function buildDataTable() { var leaderboard = []; leaderboard.push(getJson("https://yjw.wh98.me:8080")[0]); var tr; $("#leaderboardtable").empty(); var columnSet = []; var headerTr$ = $('<tr/>'); var headers = leaderboard[0].headers; headerTr$.append($('<th/>').html("participant")); for (var j = 0; j < headers.length; j++) { headerTr$.append($('<th/>').html(headers[j].label)); } $("#leaderboardtable").append(headerTr$); for (var i = 0; i < leaderboard[0].scores.length; i++) { tr = $('<tr/>'); tr.append("<td>" + leaderboard[0].scores[i][1].username + "</td>"); values = leaderboard[0].scores[i][1].values; for (var j = 0; j < values.length; j++) { tr.append("<td>" + values[j].val + "</td>"); } $('#leaderboardtable').append(tr); } console.log(leaderboard) } </script>
<script type="text/javascript">
function checkAllBox(obj) {
var train_set = document.getElementById("train-set");
var dev_set = document.getElementById("dev-set");
var test_set = document.getElementById("test-set");
var smalltrain_set = document.getElementById("smalltrain-set");
var smalldev_set = document.getElementById("smalldev-set");
var az_set = document.getElementById("az-dataset");
if (obj.checked == true) {
train_set.disabled = false;
dev_set.disabled = false;
test_set.disabled = false;
smalltrain_set.disabled = false;
smalldev_set.disabled = false;
az_set.disabled = false;
}
else {
train_set.disabled = true;
dev_set.disabled = true;
test_set.disabled = true;
smalltrain_set.disabled = true;
smalldev_set.disabled = true;
az_set.disabled = true;
}
}
</script>
<!-- <script type="text/javascript">
window.onload = function (){
buildDataTable();
var term_agree = document.getElementById("TermAgree");
checkAllBox(term_agree);
} </script> -->
</head>
<body class="site">
<header class="header" itemscope itemtype="http://schema.org/SiteNavigationElement" aria-label="Main navigation">
<div class="container">
<div class="header__inner"> <a class="header__logo" href="/" aria-label="MIND logo">
<div class="header__logo--container">
<!-- <svg width="60px" height="153px" viewBox="10 0 277 140" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="logocon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" font-family="LucidaGrande, Lucida Grande" font-size="100" font-weight="normal">
<g id="logo" transform="translate(-14.000000, -69.000000)" fill="#515556">
<text id="MIND">
<tspan x="18" y="179">MIND</tspan>
</text>
</g>
</g>
</svg> -->
<img style="max-width:200%; width:90px;" alt="backgound image"
src="https://msnews.github.io/assets/img/icons/logo.png">
</div>
</a>
<nav class="header__links">
<div class="container header__links-wrapper">
<a class="header__link" href="workshop.html" itemprop="url">
<span itemprop="name">Main</span> </a>
<a class="header__link" href="call.html" itemprop="url"> <span itemprop="name">Call for Papers</span> </a>
<a class="header__link" href="program.html" itemprop="url"> <span itemprop="name">Program</span> </a>
<a class="header__link" href="competition.html" itemprop="url">
<span itemprop="name">Competition</span> </a>
<a class="header__link" href="organization.html" itemprop="url">
<span itemprop="name">Organization</span> </a>
</div>
<!-- <a class="header__link" href="#evaluation-leaderboard" itemprop="url"> <span
itemprop="name">Leaderboard</span> </a></div> -->
</nav>
<div class="header__toggle"> <span></span> <span></span> <span></span></div>
</div>
</div>
</header>
<div class="hero lazyload" data-bg="https://msnews.github.io/assets/img/posts/sleek.jpg">
<div class="hero__wrap">
<div class="hero__categories"></div>
<h1 class="hero__title2">The 1st International Workshop on News Recommendation and Intelligence</h1>
<p class="hero__meta"> <span> April 14, Co-located with The Web Conference 2021 </span></p>
</div>
</div>
<main class="site__content">
<div class="container">
<article class="post-content">
<!-- about mind -->
<h1 id="main">Overview</h1>
<p>
Online news services such as <a href="https://microsoftnews.msn.com/">Microsoft News</a> which collect news from
various sources and display them to users in a unified view have gained huge popularity for online news reading.
However, massive news articles emerge every day, and it is overwhelming for users to read all news to find their interested content.
Thus, news recommendation and intelligence techniques are critical for online news platforms to help users find interested news, improve their reading experiences and alleviate information overload.
</p>
<p>
News recommendation and intelligence are of significant relevance to the NLP community.
News articles usually contain rich textual information such as title and body.
It is very important for news related applications to understand news content from their texts using NLP techniques.
In addition, news articles on news websites emerge and update very quickly.
Many new articles are posted continuously, and existing news articles will disappear after a short period of time.
Thus, there is a severe cold-start problem in news recommendation and intelligence scenarios, and understanding news by their content is necessary.
Besides, there is usually no explicit feedback such as ratings provided by users of online news platforms, and we usually need to model users’ interests from their implicit feedback like browsing and click behaviors.
However, user interests are usually diverse and evolutional, which are difficult to be accurately modeled.
Thus, further researches from both NLP and data mining communities are highly needed to tackle the various challenges in news recommendation and intelligence. </p>
<p>
The purpose of this workshop is to call for research and practice on news recommendation and intelligence to promote the techniques in these fields.
It welcomes research works that study news recommendation and intelligence in various aspects, including but not limited to novel algorithms, data analysis, real-world systems/applications, and ethical problems like fairness, diversity and user privacy.
We hope this workshop can help attendees master a better understanding of news recommendation and intelligence, facilitate future research in these fields, and provide useful insights for other related NLP fields.
</p>
<div class="button-container">
<button class="button button-pill button-border" onclick="location.href='https://www2021.thewebconf.org/attendees/';"><strong>Registration</strong></button>
</div>
<h1 id="main">Latest Updates</h1>
<h3>April 22rd, 2021</h3>
<li >The videos of talks are released on the <a href="program.html">program</a> page. </li>
<h3>April 14th, 2021</h3>
<li >Our workshop is successfully held! Thanks all the authors, attendees and program committee members. </li>
<h3>March 10th, 2021</h3>
<li >The <a href="program.html">accepted papers, keynotes and planned schedule</a> are published</li>
<h3>February 22nd, 2021</h3>
<li >Acceptance notifications are sent</li>
<h3>February 14th, 2021</h3>
<li >The last call for paper is out</li>
<h3>December 21st, 2020</h3>
<li >The first call for paper is out</li>
<h3>November 27th, 2020</h3>
<li >The workshop will be colocated with The Web Conference 2021</li>
<h3>October 2nd, 2020</h3>
<li>Workshop website is launched</li>
<h1 id="main">Important Dates</h1>
<table class="date">
<tr >
<td class="word-break2">
Submission site opens
</td>
<td class="word-break2">
Friday
</td>
<td class="word-break2">
December 18, 2020
</td>
</tr>
<tr >
<td class="word-break2">
Paper submissions due
</td>
<td class="word-break2">
Monday
</td>
<td class="word-break2">
February 15, 2021 <del>January 25, 2021</del>
</td>
</tr>
<tr >
<td class="word-break2">
Notification of acceptance
</td>
<td class="word-break2">
Monday
</td>
<td class="word-break2">
February 22, 2021 <del>February 15, 2021</del>
</td>
</tr>
<tr >
<td class="word-break2">
Camera-ready papers due
</td>
<td class="word-break2">
Sunday
</td>
<td class="word-break2">
February 28, 2021
</td>
</tr>
</table >
<p>All deadlines are 11.59 pm UTC -12h.</p>
<br>
</article>
</div>
</main>
<footer class="footer">
<div class="container">
<a href="https://go.microsoft.com/fwlink/?LinkId=521839">Privacy & Cookies</a>
<span>|</span>
<a href="https://www.microsoft.com/trademarks">Trademarks</a>
<span>|</span>
<a href="https://go.microsoft.com/fwlink/?LinkID=206977">Terms of use</a>
<span>|</span>
<span> ©2020 Microsoft </span>
</div>
</footer>
<script async src="https://msnews.github.io/assets/js/bundle.js"></script>
</body>
</html>