-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpapers.html
706 lines (565 loc) · 42 KB
/
papers.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>HCOMP 2016: Call for Sponsors</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- favicon link-->
<link rel="shortcut icon" type="image/png" href="img/favicon.png" />
<!-- Custom CSS -->
<link href="css/landing-page.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top topnav" role="navigation">
<div class="container topnav">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand topnav" href="index.html">HCOMP 2016</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="submit.html">Submit</a>
</li>
<li>
<a href="participate.html">Participate</a>
</li>
<li>
<a href="program.html">Program</a>
</li>
<li>
<a href="attend.html">Attend</a>
</li>
<li>
<a href="industry.html">Industry</a>
</li>
<li>
<a href="organizers.html">Organizers</a>
</li>
<li>
<a href="sponsors.html">Sponsors</a>
</li>
<li>
<a href="past%20meetings.html">Past Meetings</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Header -->
<div class="sponsor-header">
<div class="intro-message"></div>
</div>
<!-- Page Content -->
<div class="container">
<div class="row">
</div>
</div>
<div class="container">
<div class="row">
<h2 class="section-head"><span>Accepted Papers</span></h2>
</div>
</div>
<!-- container a-->
<div class="container">
<div class="intro-text">
<div class="row">
<div class="col-md-12">
<div class="intro-paragraph lead">
<ul class="list-inline">
<li><i class="icon-font fa fa-road"></i></li>
<li>
<h2 class="section-heading">Tracks</h2></li>
</ul>
<p class="lead"><i>
Accepted papers are grouped by track, with a link to each track group provided below.
</i></p>
<ul class="lead">
<li>
<a class="theme-link" href="#demo">Demonstrations</a>
</li>
<li>
<a class="theme-link" href="#doc">Doctoral Consortium</a>
</li>
<li>
<a class="theme-link" href="#encore">Encore Papers</a>
</li>
<li>
<a class="theme-link" href="#full">Full Papers</a>
</li>
<a name="demo"></a>
<li>
<a class="theme-link" href="#wip">Works-in-Progress</a>
</li>
</ul>
<ul class="list-inline">
<li><i class="icon-font fa fa-file-text"></i></li>
<li>
<h2 class="section-heading">Demonstrations</h2></li>
</ul>
<a class="theme-link" href="https://arxiv.org/abs/1609.02271">Ashwin: Plug-and-Play System for Machine-Human Image Annotation</a>
<ul class="nobullet">
<li>Anand Sriraman, Mandar Kulkarni, Rahul Kumar, Kanika Kalra, Purushotam Radadia and Shirish Karande (TCS Research, Tata Consultancy Services)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.01382">Creating Interactive Behaviors in Early Sketch by Recording and Remixing Crowd Demonstrations</a>
<ul class="nobullet">
<li>Sang Won Lee (University of Michigan), Yi Wei Yang (University of Michigan), Shiyan Yan (University of Michigan), Yujin Zhang (University of Michigan), Isabelle Wong (University of Michigan), Zhengxi Tan (University of Michigan), Miles McGruder (University of Michigan), Christopher Homan (Rochester Institute of Technology), Walter S. Lasecki (University of Michigan)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.00904">High Dimensional Human Guided Machine Learning</a>
<ul class="nobullet">
<li>Eric Holloway, Robert Marks II (Dept. Elec. and Comp. Eng., Baylor University)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.05763">Integrating citizen science with online learning to ask better questions</a>
<ul class="nobullet">
<li>Vineet Pandey (Design Lab, UC San Diego), Scott Klemmer (Design Lab, UC San Diego), Amnon Amir (Department of Pediatrics, UC San Diego), Justine Debelius (Department of Pediatrics, UC San Diego), Embriette R. Hyde (Department of Pediatrics, UC San Diego), Tomasz Kosciolek (Department of Pediatrics, UC San Diego), Rob Knight (Department of Pediatrics, UC San Diego)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.00945">MmmTurkey: A Crowdsourcing Framework for Deploying Tasks and Recording Worker Behavior on Amazon Mechanical Turk</a>
<ul class="nobullet">
<li>Brandon Dang, Miles Hutson and Matt Lease (University of Texas, Austin)</li>
</ul>
<a name="doc"></a>
<a class="theme-link" href="http://arxiv.org/abs/1609.00791">Reprowd: Crowdsourced Data Processing Made Reproducible</a>
<ul class="nobullet">
<li>Ruochen Jiang and Jiannan Wang (Simon Fraser University)</li>
</ul>
<ul class="list-inline">
<li><i class="icon-font fa fa-file-text"></i></li>
<li>
<h2 class="section-heading">Doctoral Consortium</h2></li>
</ul>
<p class="lead"><i>
Accepted Doctoral Consortium participants will present posters at the main conference as well as participating in the <a class="theme-link" href="dc.html">DC</a> itself.
</i></p>
<b>Application of the Dual-Process Theory to debias Forecasts in Prediction Markets</b>
<ul class="nobullet">
<li>Simon Kloker (KIT)</li>
</ul>
<b>Complex Systems and Society: What are the barriers to automated text summarization of an online policy deliberation?</b>
<ul class="nobullet">
<li>Brian McInnis (Cornell University)</li>
</ul>
<b>Crowd-Powered Conversational Agents</b>
<ul class="nobullet">
<li>Ting-Hao Huang (Carnegie Mellon University)</li>
</ul>
<b>Crowdsourcing to reconnect: Enabling online contributions and social interactions for older adults</b>
<ul class="nobullet">
<li>Francisco Ibarra (University of Trento)</li>
</ul>
<b>How Crowdsensing and Crowdsourcing Change Collaborative Planning: three explorations in transportation</b>
<ul class="nobullet">
<li>Greg Griffin (The University of Texas at Austin)</li>
</ul>
<b>Incentive Engineering in Crowdsourcing Systems</b>
<ul class="nobullet">
<li>Nhat Truong (University of Southampton)</li>
</ul>
<b>Integrating Asynchronous Interaction into Real-time Collaboration for Crowdsorced Creation</b>
<ul class="nobullet">
<li>Sang Won Lee (University of Michigan)</li>
</ul>
<b>Quantifying, Understanding, and Mitigating Crowd Work Bias</b>
<ul class="nobullet">
<li>Jacob Thebault-Spieker (GroupLens Research)</li>
</ul>
<b>Researching and Learning History via Crowdsourcing</b>
<ul class="nobullet">
<li>Nai-Ching Wang (Virginia Tech)</li>
</ul>
<b>Self-improving Crowdsourcing</b>
<ul class="nobullet">
<li>Jonathan Bragg (University of Washington)</li>
</ul>
<b>Understanding Online Self-organization and Distributed Problem Solving in Disaster</b>
<ul class="nobullet">
<li>Marina Kogan (University of Colorado Boulder)</li>
</ul>
<a name="encore"></a>
<b>Understanding User Action and Behavior on Collaborative Platforms using Machine Learning</b>
<ul class="nobullet">
<li>Rakshit Agrawal (University of California, Santa Cruz)</li>
</ul>
<ul class="list-inline">
<li><i class="icon-font fa fa-file-text"></i></li>
<li>
<h2 class="section-heading">Encore Papers</h2></li>
</ul>
<b><i>Invited Papers</i></b>
<br/>
<a class="theme-link" href="http://dl.acm.org/citation.cfm?id=2819936">You Get Who You Pay for: The Impact of Incentives on Participation Bias</a>
<ul class="nobullet">
<li>Gary Hsieh and Rafal Kocielnik (University of Washington)</li>
<li>Proceedings CSCW 2016: the 19th ACM Conference on Computer-Supported Cooperative Work & Social Computing, pp. 823-835. ACM, 2016.</li>
<li><b>CSCW 2016 Best Paper Award</b></li>
</ul>
<a class="theme-link" href="http://www2016.net/proceedings/proceedings/p133.pdf">Crowdsourcing annotations of websites' privacy policies: Can it really work?</a>
<ul class="nobullet">
<li>Shomir Wilson (Carnegie Mellon University), Florian Schaub (Carnegie Mellon University), Rohan Ramanath (Carnegie Mellon University), Norman Sadeh (Carnegie Mellon University), Fei Liu (University of Central Florida), Noah Smith (University of Washington), and Frederick Liu (Carnegie Mellon University)</li>
<li>Proceedings of the 25th International World Wide Web (WWW) Conference, pp. 133-143, 2016. </li>
<li><b>WWW 2016 Best Paper Finalist</b></li>
</ul>
<a class="theme-link" href="http://dl.acm.org/citation.cfm?id=2858411">Alloy: Clustering with Crowds and Computation</a>
<ul class="nobullet">
<li>Joseph Chee Chang, Aniket Kittur, and Nathan Hahn (Carnegie Mellon University)</li>
<li>Proceedings of CHI 2016: the 34th ACM Conference on Human Factors in Computing Systems, pp. 3180-3191.</li>
<li><b>CHI 2016 Best Paper Honorable Mention</b></li>
</ul>
<br/><b><i>Accepted Papers</i></b></br>
<a class="theme-link" href="http://www.aaai.org/ocs/index.php/FLAIRS/FLAIRS16/paper/view/12984/12564">Comparative Methods and Analysis for Creating High-Quality Question Sets from Crowdsourced Data</a>
<ul class="nobullet">
<li>Sarah KK Luger and Jeff Bowles (University of Edinburgh)</li>
<li>Proceedings of the Twenty-Ninth International Florida Artificial Intelligence Research Society (FLAIRS) Conference; Special Track: Applications of Artificial Intelligence in Business and Industry, pp. 185-190. 2016.</li>
</ul>
<a class="theme-link" href="https://smartech.gatech.edu/handle/1853/54594">Crowd in C [loud]: Audience Participation Music with Online Dating Metaphor using Cloud Service</a>
<ul class="nobullet">
<li>Sang Won Lee (University of Michigan), Antonio Deusany de Carvalho Jr (Universidade de São Paulo), and Georg Essl (University of Michigan) </li>
<li>Proceedings of the 2nd Web Audio Conference (WAC-2016), Atlanta. 2016.</li>
</ul>
<a class="theme-link" href="http://www.sciencedirect.com/science/article/pii/S1389128615002194">Hybrid human–machine information systems: Challenges and opportunities</a>
<ul class="nobullet">
<li>Gianluca Demartini (University of Sheffield)</li>
<li>Computer Networks v. 90, pp. 5-13, October 2015.</li>
</ul>
<a class="theme-link" href="http://www.ijcai.org/Proceedings/16/Papers/532.pdf">Learning to Incentivize: Eliciting Effort via Output Agreement</a>
<ul class="nobullet">
<li>Yang Liu and Yiling Chen (Harvard University)</li>
<li>Proceedings of the Twenty-Fifth International Joint Conference on Artificial Intelligence (IJCAI), pp. 3782-3788, 2016.</li>
</ul>
<a class="theme-link" href="http://dl.acm.org/citation.cfm?id=2767727">On the Relation Between Assessor's Agreement and Accuracy in Gamified Relevance Assessment</a>
<ul class="nobullet">
<li>Olga Megorskaya, Vladimir Kukushkin, and Pavel Serdyukov (Yandex)</li>
<li>Proceedings of the 38th International ACM SIGIR Conference on Research and Development in Information Retrieval, pp. 605-614. 2015.</li>
</ul>
<a class="theme-link" href="http://www.opensym.org/os2016/proceedings-files/p600-agrawal.pdf">Predicting the quality of user contributions via LSTMs</a>
<ul class="nobullet">
<li>Rakshit Agrawal and Luca Dealfaro (University of California, Santa Cruz)</li>
<li>International Symposium on Open Collaboration (OpenSym, formerly WikiSym), 2016.</li>
</ul>
<a class="theme-link" href="http://www2016.net/proceedings/proceedings/p855.pdf">Scheduling Human Intelligence Tasks in Multi-Tenant Crowd-Powered Systems</a>
<ul class="nobullet">
<li>Djellel Eddine Difallah (University of Fribourg), Gianluca Demartini (University of Sheffield), and Philippe Cudré-Mauroux (University of Fribourg)</li>
<li>Proceedings of the 25th International Conference on World Wide Web (WWW), pp. 855-865, 2016.</li>
</ul>
<a name="full"></a>
<a class="theme-link" href="http://dl.acm.org/citation.cfm?id=2858268">Toward a Learning Science for Complex Crowdsourcing Tasks</a>
<ul class="nobullet">
<li>Shayan Doroudi (Carnegie Mellon University), Ece Kamar (Microsoft Research), Emma Brunskill (Carnegie Mellon University), and Eric Horvitz (Microsoft Research)</li>
<li>Proceedings of the 2016 ACM CHI Conference on Human Factors in Computing Systems, pp. 2623-2634. 2016.</li>
</ul>
<ul class="list-inline">
<li><i class="icon-font fa fa-file-text"></i></li>
<li>
<h2 class="section-heading">Full Papers</h2></li>
</ul>
<p class="lead">Please see the online <a class="theme-link" href="http://www.aaai.org/Library/HCOMP/hcomp16contents.php">Conference Proceedings</a> to download full papers.</p>
<b>Click Carving: Segmenting Objects in Video with Point Clicks</b>
<ul class="nobullet">
<li>Suyog Dutt Jain and Kristen Grauman (University of Texas at Austin)</li>
</ul>
<b>Crowdclass: Designing Classification-Based Citizen Science Learning Modules</b>
<ul class="nobullet">
<li>Doris Jung-Lin Lee, Joanne Lo, Moonhyok Kim and Eric Paulos (University of California, Berkeley)</li>
</ul>
<b>Crowdsourcing Accurate and Creative Word Problems and Hints</b>
<ul class="nobullet">
<li>Yvonne Chen, Travis Mandel, Yun-En Liu and Zoran Popović (University of Washington)</li>
</ul>
<b>Crowdsourcing Relevance Assessments: The Unexpected Benefits of Limiting the Time to Judge</b>
<ul class="nobullet">
<li>Eddy Maddalena (University of Udine), Marco Basaldella (University of Udine), Dario De Nart (University of Udine), Dante Degl'Innocenti (University of Udine), Stefano Mizzaro (University of Udine) and Gianluca Demartini (University of Sheffield)</li>
</ul>
<b>CRQA: Crowd-Powered Real-Time Automatic Question Answering System</b>
<ul class="nobullet">
<li>Denis Savenkov and Eugene Agichtein (Emory University)</li>
</ul>
<b>Efficient Techniques for Crowdsourced Top-k Lists</b>
<ul class="nobullet">
<li>Luca de Alfaro, Vassilis Polychronopoulos and Neoklis Polyzotis (University of California, Santa Cruz)</li>
</ul>
<b>Evaluating Task-Dependent Taxonomies for Navigation</b>
<ul class="nobullet">
<li>Yuyin Sun (University of Washington), Adish Singla (ETH Zurich), Tori Yan (University of Washington), Andreas Krause (ETH Zurich) and Dieter Fox (University of Washington)</li>
</ul>
<b>Extending Workers' Attention Span Through Dummy Events</b>
<ul class="nobullet">
<li>Avshalom Elmalech (Bar-Ilan University), David Sarne (Bar-Ilan University), Esther David (Ashkelon College) and Chen Hajaj (Bar-Ilan University)</li>
</ul>
<b>Interactive Consensus Agreement Games For Labeling Images</b>
<ul class="nobullet">
<li>Paul Upchurch, Daniel Sedra, Andrew Mullen, Haym Hirsh and Kavita Bala (Cornell University)</li>
</ul>
<b>Investigating the Influence of Data Familiarity to Improve the Design of a Crowdsourcing Image Annotation System</b>
<ul class="nobullet">
<li>Danna Gurari (University of Texas at Austin), Mehrnoosh Sameki (Boston University) and Margrit Betke (Boston University)</li>
</ul>
<b>"Is there anything else I can help you with?": Challenges in Deploying an On-Demand Crowd-Powered Conversational Agent</b>
<ul class="nobullet">
<li>Ting-Hao (Kenneth) Huang (Carnegie Mellon University), Walter S. Lasecki (University of Michigan), Amos Azaria (Ariel University) and Jeffrey P. Bigham (Carnegie Mellon University)</li>
</ul>
<b>Learning and Feature Selection under Budget Constraints in Crowdsourcing</b>
<ul class="nobullet">
<li>Besmira Nushi, Adish Singla, Andreas Krause and Donald Kossmann (ETH Zurich)</li>
</ul>
<b>Learning Privacy Expectations by Crowdsourcing Contextual Informational Norms</b>
<ul class="nobullet">
<li>Yan Shvartzshnaider (New York University), Schrasing Tong (Princeton University) Thomas Wies (New York University), Paula Kift (New York University), Helen Nissenbaum (New York University), Lakshminarayanan Subramanian (New York University), and Prateek Mittal (Princeton University)</li>
</ul>
<b>Learning to Scale Payments in Crowdsourcing with PropeRBoost</b>
<ul class="nobullet">
<li>Goran Radanovic and Boi Faltings (Ecole Polytechnique Fédérale de Lausanne)</li>
</ul>
<b>Leveraging the Contributions of the Casual Majority to Identify Appealing Web Content</b>
<ul class="nobullet">
<li>Tad Hogg (Institute for Molecular Manufacturing, USA) and Kristina Lerman (University of Southern California)</li>
</ul>
<b>MicroTalk: Using Argumentation to Improve Crowdsourcing Accuracy</b>
<ul class="nobullet">
<li>Ryan Drapeau, Lydia B. Chilton, Jonathan Bragg and Daniel S. Weld (University of Washington)</li>
</ul>
<b>Modeling Task Complexity in Crowdsourcing</b>
<ul class="nobullet">
<li>Jie Yang (Delft University of Technology), Judith Redi (Delft University of Technology), Gianluca Demartini (University of Sheffield) and Alessandro Bozzon (Delft University of Technology)</li>
</ul>
<b>Much Ado about Time: Exhaustive Annotation of Temporal Data</b>
<ul class="nobullet">
<li>Gunnar A. Sigurdsson (Carnegie Mellon University), Olga Russakovsky (Carnegie Mellon University), Ivan Laptev (INRIA, France), Ali Farhadi (University of Washington) and Abhinav Gupta (Carnegie Mellon University)</li>
</ul>
<b>Practical Peer Prediction for Peer Assessment</b>
<ul class="nobullet">
<li>Victor Shnayder and David C Parkes (Harvard University)</li>
</ul>
<b>Predicting Crowd Work Quality under Monetary Interventions</b>
<ul class="nobullet">
<li>Ming Yin and Yiling Chen (Harvard University)</li>
</ul>
<b>Probabilistic Modeling for Crowdsourcing Partially-Subjective Ratings</b>
<ul class="nobullet">
<li>An T. Nguyen (University of Texas at Austin), Matthew Halpern (University of Texas at Austin), Byron C. Wallace (Northeastern University) and Matthew Lease (University of Texas at Austin)</li>
</ul>
<b>Quality Estimation of Workers in Collaborative Crowdsourcing Using Group Testing</b>
<ul class="nobullet">
<li>Prakhar Ojha and Partha Talukdar (Indian Institute of Science)</li>
</ul>
<b>State Detection using Adaptive Human Sensor Sampling</b>
<ul class="nobullet">
<li>Ioannis Boutsis (Athens University of Economics and Business), Vana Kalogeraki (Athens University of Economics and Business) and Dimitrios Gunopulos (University of Athens)</li>
</ul>
<b>Studying the Effects of Task Notification Policies on Participation and Outcomes in On-the-go Crowdsourcing</b>
<ul class="nobullet">
<li>Yongsung Kim, Emily Harburg, Shana Azria, Aaron Shaw, Elizabeth Gerber, Darren Gergle and Haoqi Zhang (Northwestern University)</li>
</ul>
<b>Understanding Crowdsourcing Workflow: Modeling and Optimizing Iterative and Parallel Processes</b>
<ul class="nobullet">
<li>Shinsuke Goto, Toru Ishida and Donghui Lin (Kyoto University)</li>
</ul>
<b>Validating the Quality of Crowdsourced Psychometric Personality Test Items</b>
<ul class="nobullet">
<li>Bao Sheng Loe (University of Cambridge), Francis Smart (Michigan State University), Lenka Firtova (University of Economics, Prague), Corinna Brauner (University of Münster), Laura Lueneborg (University of Bonn) and David Stillwell (University of Cambridge)</li>
</ul>
<a name="wip"></a>
<b>Why Is That Relevant? Collecting Annotator Rationales for Relevance Judgments</b>
<ul class="nobullet">
<li>Tyler Mcdonnell (University of Texas at Austin), Matthew Lease (University of Texas at Austin), Mucahid Kutlu (Qatar University) and Tamer Elsayed (Qatar University)</li>
</ul>
<ul class="list-inline">
<li><i class="icon-font fa fa-file-text"></i></li>
<li>
<h2 class="section-heading">Works-in-Progress</h2></li>
</ul>
<p class="lead"><i>
Accepted works-in-Progress papers are non-archival will be presented as posters at the conference. Some authors have also chosen to share an online copy of their paper, in which case the paper title links to the online copy.
</i></p>
<b>A GWAP Approach to Analyzing Informal Algorithm for Collaborative Group Problem Solving</b>
<ul class="nobullet">
<li>Tatsuki Furukawa, Hajime Mizuyama and Tomomi Nonaka (Aoyama Gakuin Univerisity)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.01484">A Markov Chain based Ensemble Method for Crowdsourced Clustering</a>
<ul class="nobullet">
<li>Sujoy Chatterjee, Enakshi Kundu and Anirban Mukhopadhyay (University of Kalyani)</li>
</ul>
<b>Exploring Required Work and Progress Feedback in Crowdsourced Mapping</b>
<ul class="nobullet">
<li>Sofia Eleni Spatharioti (Northeastern University), Becca Govoni (Northeastern University), Jennifer Carrera (Michigan State University), Sara Wylie (Northeastern University) and Seth Cooper (Northeastern University)</li>
</ul>
<b>CoFE: A Collaborative Feature Engineering Framework for Data Science</b>
<ul class="nobullet">
<li>Yoshihiko Suhara (MIT Media Lab), Hideki Awashima (Recruit Institute of Technology), Hidekazu Oiwa (Recruit Institute of Technology) and Alex Pentland (MIT Media Lab)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.01408">Consensus of Dependent Opinions</a>
<ul class="nobullet">
<li>Sujoy Chatterjee (University of Kalyani), Anirban Mukhopadhyay (University of Kalyani), Malay Bhattacharyya (Indian Institute of Engineering Science and Technology, Shibpur)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.01017">Crowdsourcing Information Extraction for Biomedical Systematic Reviews</a>
<ul class="nobullet">
<li>Yalin Sun (the University of Texas at Austin), Pengxiang Cheng (the University of Texas at Austin), Shengwei Wang (the University of Texas at Austin), Hao Lyu (the University of Texas at Austin), Matthew Lease (the University of Texas at Austin), Iain Marshall (King's College London), Byron C. Wallace (Northeastern University)</li>
</ul>
<b>Does Communication Help People Coordinate?</b>
<ul class="nobullet">
<li>Yevgeniy Vorobeychik, Zlatko Joveski and Sixie Yu (Vanderbilt University)</li>
</ul>
<b>Dynamic Allocation of Crowd Contributions for Sentiment Analysis during the 2016 U.S. Presidential Election</b>
<ul class="nobullet">
<li>Mehrnoosh Sameki, Mattia Gentil, Kate K. Mays, Lei Guo and Margrit Betke (Boston University)</li>
</ul>
<b>Extremest Extraction: Push-Button Learning of Novel Events</b>
<ul class="nobullet">
<li>Christopher Lin (University of Washington), Mausam (IIT Delhi), and Daniel Weld (University of Washington, CSE)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.02043">Feasibility of Post-Editing Speech Transcriptions with a Mismatched Crowd</a>
<ul class="nobullet">
<li>Purushotam Radadia (Tata Consultancy Services), Shirish Karande (TRDDC)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/pdf/1602.03291v2.pdf">Feature Based Task Recommendation in Crowdsourcing with Implicit Observations</a>
<ul class="nobullet">
<li>Habibur Rahman (University of Texas at Arlington), Lucas Joppa (Microsoft Research), and Senjuti Basu Roy (New Jersey Institute of Technology)</li>
</ul>
<a class="theme-link" href="https://arxiv.org/abs/1609.02182">Feedback and Timing in a Crowdsourcing Game</a>
<ul class="nobullet">
<li>Gili Freedman, Sukdith Punjasthitkul, Max Seidman, Mary Flanagan (Dartmouth College)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.00117">Group Rotation Type Crowdsourcing</a>
<ul class="nobullet">
<li>Katsumi Kumai (University of Tsukuba), Jianwei Zhang (Tsukuba University of Technology), Yuhki Shiraishi (Tsukuba University of Technology), Atsuyuki Morishima (University of Tsukuba) and Hiroyuki Kitagawa (University of Tsukuba)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.01348">Incentive Engineering Framework for Crowdsourcing Systems</a>
<ul class="nobullet">
<li>Nhat V.Q. Truong (University of Southampton), Sebastian Stein (University of Southampton), Long Tran-Thanh (University of Southampton), Nicholas R. Jennings (Imperial College London)</li>
</ul>
<b>Incentives for Truthful and Informative Post-Publication Peer Review</b>
<ul class="nobullet">
<li>Luca de Alfaro (UC Santa Cruz) and Marco Faella (University of Naples)</li>
</ul>
<b>Incentives for Truthful Evaluations</b>
<ul class="nobullet">
<li>Luca de Alfaro (University of California Santa Cruz), Marco Faella (University of Naples “Federico II”), Vassilis Polychronopoulos (University of California Santa Cruz), and Michael Shavlovsky (University of California Santa Cruz)</li>
</ul>
<a class="theme-link" href="https://arxiv.org/abs/1609.02549">Learning Phrasal Lexicons for Robotic Commands using Crowdsourcing</a>
<ul class="nobullet">
<li>Njie Hu, Jean Oh, Anatole Gershman (Carnegie Mellon University)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.00683">Pairwise, Magnitude, or Stars: What's the Best Way for Crowds to Rate?</a>
<ul class="nobullet">
<li>Alessandro Checco and Gianluca Demartini (University of Sheffield)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.00439">Qualitative Framing of Financial Incentives – A Case of Emotion Annotation</a>
<ul class="nobullet">
<li>Sephora Madjiheurem (EPFL), Valentina Sintsova (EPFL) and Pearl Pu (Human Computer Interaction Group, Swiss Federal Institute of Technology in Lausanne)</li>
</ul>
<b>Redesigning Product X as an Inversion-Problem Game</b>
<ul class="nobullet">
<li>Yu Kagoshima, Hajime Mizuyama and Tomomi Nonaka (Aoyama Gakuin Univerisity)</li>
</ul>
<b>Route Market: A Prediction-Market-Based Route Recommendation Service</b>
<ul class="nobullet">
<li>Keisuke Beppu, Hajime Mizuyama and Tomomi Nonaka (Aoyama Gakuin Univerisity)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.02171">The Effect of Class Imbalance and Order on Crowdsourced Relevance Judgments</a>
<ul class="nobullet">
<li>Rehab K. Qarout, Alessandro Checco and Gianluca Demartini (University of Sheffield)</li>
</ul>
<a class="theme-link" href="http://arxiv.org/abs/1609.01070">Toward Crowdsourced User Studies for Software Evaluation</a>
<ul class="nobullet">
<li>Florian Daniel (Politecnico di Milano), Pavel Kucherbaev (University of Trento)</li>
</ul>
<b>Visual Questions: Predicting If a Crowd Will (Dis)Agree on the Answer</b>
<ul class="nobullet">
<li>Danna Gurari and Kristen Grauman (University of Texas at Austin)</li>
</ul>
<b>Video Summarization using Causality Graphs</b>
<ul class="nobullet">
<li>Shay Sheinfeld (IDC, Herzliya), Yotam Gingold (George Mason University) and Ariel Shamir (IDC, Herzliya)</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- container a-->
<!-- Footer -->
<footer>
<div class="container">
<h2 class="section-head"><span><a class="theme-link-org" href="sponsors.html">Conference Sponsors</a></span></h2>
<div class="row">
<div class="intro-text">
<div class="intro-paragraph">
<div class="lead col-md-6">
<p style="text-align: center;"><font size="+3"><b>Platinum</b></font>
<br/>
<a class="theme-link" href="https://spare5.com"><img src="img/sponsors/spare5.png" alt="Spare 5" width="" height="50" style="border-style: none" /></a>
</p>
</div>
<div class="lead col-md-6">
<p style="text-align: center;"><font size="+3"><b>Gold</b></font>
<br/>
<a class="theme-link" href="http://www.microsoft.com"><img src="img/sponsors/microsoft.png" alt="Microsoft" width="" height="50" style="border-style: none" /></a>
<br/>
<br/>
<a class="theme-link" href="http://www.stitchfix.com"><img src="img/sponsors/stitchfix.png" alt="STITCH FIX - YOUR PARTNER IN PERSONAL STYLE" width="" height="50" style="border-style: none" /></a>
</p>
</div>
<div class="lead col-md-6">
<p style="text-align: center;"><font size="+3"><b>Silver</b></font>
<br/>
<br/>
<a class="theme-link" href="https://alegion.com"><img src="img/sponsors/alegion.png" alt="Alegion Crowdsourcing Automation Platform" width="" height="40" style="border-style: none" /></a>
<br/>
<br/>
<a class="theme-link" href="http://informationevolution.com"><img src="img/sponsors/ie.png" alt="INFORMATION EVOLUTION - RELIABLE, EXPERIENCED, AFFORDABLE HUMAN BANDWIDTH" width="250" height="" style="border-style: none" /></a>
<br/>
<br/>
<a class="theme-link" href="http://www.google.com"><img src="img/sponsors/google.png" alt="Google" width="190" height="" style="border-style: none" /></a>
<br/>
<br/>
<a class="theme-link" href="https://microworkers.com"><img src="img/sponsors/microworkers.png" alt="Microworkers" width="200" height="" style="border-style: none" /></a>
<br/>
<br/>
<a class="theme-link" href="http://www.ischool.utexas.edu"><img src="img/sponsors/ut-ischool.jpg" alt="The School of Information at the University of Texas at Austin" width="250" height="" style="border-style: none" /></a>
</p>
</div>
<div class="lead col-md-6">
<p style="text-align: center;"><font size="+3"><b>Bronze</b></font>
<br/>
<br/>
<a class="theme-link" href="https://www.asist.org/publications/jasist/"><img src="img/sponsors/jasist.png" alt="ournal of the Association for Information Science and Technology (JASIST)" width="200" height="" style="border-style: none" /></a>
</p>
</div>
</div>
</div>
</div>
<div class="row intro-text">
<div class="col-lg-12">
<p class="copyright text-muted">Copyright © HCOMP 2016. All Rights Reserved | Designed by <a class="theme-link-org" href="https://www.linkedin.com/in/yangzhangux">Yang Zhang</a></p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>