-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.html
480 lines (364 loc) · 17.8 KB
/
program.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>epiDAMIK</title>
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.3.0/build/cssreset/reset-min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="global1.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3960302-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script>
$(document).ready(function(){
$("#toggle1").click(function(){
var $this = $(this);
$this.toggleClass('SeeMore');
if($this.hasClass('SeeMore')){
$this.text('collapse');
} else {
$this.text('expand');
}
});
$("#toggle2").click(function(){
var $this = $(this);
$this.toggleClass('SeeMore');
if($this.hasClass('SeeMore')){
$this.text('collapse');
} else {
$this.text('expand');
}
});
$("#toggle3").click(function(){
var $this = $(this);
$this.toggleClass('SeeMore');
if($this.hasClass('SeeMore')){
$this.text('collapse');
} else {
$this.text('expand');
}
});
$("#toggle4").click(function(){
var $this = $(this);
$this.toggleClass('SeeMore');
if($this.hasClass('SeeMore')){
$this.text('collapse');
} else {
$this.text('expand');
}
});
$("#toggle5").click(function(){
var $this = $(this);
$this.toggleClass('SeeMore');
if($this.hasClass('SeeMore')){
$this.text('collapse');
} else {
$this.text('expand');
}
});
$("#toggle6").click(function(){
var $this = $(this);
$this.toggleClass('SeeMore');
if($this.hasClass('SeeMore')){
$this.text('collapse');
} else {
$this.text('expand');
}
});
$("#toggle7").click(function(){
var $this = $(this);
$this.toggleClass('SeeMore');
if($this.hasClass('SeeMore')){
$this.text('collapse');
} else {
$this.text('expand');
}
});
$("#toggle8").click(function(){
var $this = $(this);
$this.toggleClass('SeeMore');
if($this.hasClass('SeeMore')){
$this.text('collapse');
} else {
$this.text('expand');
}
});
});
</script>
<style type="text/css">
table{
width:100%;
}
td
{
vertical-align:top;
}
</style>
<style>
#toggle1 {
width: 100%;
}
.sticky {
position: fixed;
overflow: hidden;
background-color: #004D98;
list-style:none;
margin:0;
padding:0;
top: 0;
text-align:center;
width:1040px;
}
.sticky a{
display:inline-block;
color: #f2f2f2;
text-align: center;
padding: 12px 12px;
text-decoration: none;
font-size: 20px;
}
.sticky li{
display:inline-block;
}
/* Main content */
.main {
margin-top: 40px; /* Add a top margin to avoid content overlay */
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
table-layout:fixed;
}
td, th {
border: 1px solid #8b898c;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
<style type="text/css">
/* Three columns side by side */
.column {
float: left;
width: 42%;
margin-bottom: 16px;
padding: 0 8px;
margin-right: 50px;
}
/* Display the columns below each other instead of side by side on small screens */
.cardimage{
width:110px;
height:110px;
float: left;
margin-right: 20px;
/*margin-left: 20px;*/
margin-top: 10px;
margin-bottom: 10px;
}
/* Add some shadows to create a card effect */
.card {
/*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);*/
}
/* Some left and right padding inside the container */
.container {
padding: 0 16px;
}
/* Clear floats */
.container::after, .row::after {
content: "";
clear: both;
display: table;
}
.title {
color: grey;
}
.button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color:white;
text-align:left;
cursor: pointer;
margin-top:0px;
margin-bottom: 5px;
}
</style>
<!--
<div style="background-color:#5e7593; position:relative;">
-->
<!--#8e2344 -->
<!--
<div style="background-color:#60311B; position:relative;">
<div style="margin: 0px auto; width:900px;height: 190px; position:relative; ">
<div style="position:absolute; left: 2px; top: 20px;">
<span class="fullname">CS 6604: Fall 2015<br> Data Mining Large Networks <br>and Time-Series</span>
<img style="position:absolute; left: 675px; width: 215px; height: 50px; top: 20px;" src="vtlogo-2.png" width="750" height="275" />
</div>
</div>
</div>
-->
</head>
<body style="width:1040px; padding:auto; margin:20px auto auto auto;">
<ul id="nav">
<!--<li><a href="index.html"><img style ="vertical-align:text-bottom;", src="smalllogoWhite.png" width="150"/></a></li> -->
<li><a href="index.html">Home</a></li>
<li><a href="program.html">Program</a></li>
<li><a href="dates.html">CFP & Dates</a></li>
<li><a href="committee.html">Committee</a></li>
<li><a href="organizers.html">Organizers</a></li>
<li><a href="https://twitter.com/EpidamikW"><img style ="vertical-align:text-bottom;", src="twitter-white.png" width="30"/></a></li>
</ul>
<div style=" width:900px; height:60px; display:table; text-align:center;padding-top: 30px;">
<!--<span class="fullname" style="font-family:arial;text-align:center; vertical-align:middle; display:table-cell;">CS 5525: Spring 2018</span>-->
<!-- <img style="position:absolute; float:left: 435px; width: 200px; height: 32px; top: 15px;" src="vtGrey.jpg" width="750" height="150" /> -->
<span class="fullname" style="font-family:arial;text-align:justify; vertical-align:top; display:table-cell;">
<h1>Schedule</h1>
</span>
<div style="">
<img style="float:right;" src="textlogo2024.png" width="200"/></span>
</div>
</div>
<p>
Workshop will be held on August 26, 2024, 9:00 AM - 1:00 PM CEST.
All times below are in CEST.
<br><br>
Location: Room 118 at <a href="https://ccib.es/">Centre de Convencions Internacional de Barcelona</a>.
</p>
<table>
<colgroup><col width="180px">
</colgroup>
<tbody>
<tr>
<th><b>Time</b></th>
<th><b>Event</b></th>
</tr>
<tr>
<td>9:00am-9:05am</td>
<td>epiDAMIK opening Remarks</td>
</tr>
<tr>
<td>9:05am-9:35am</td>
<td>Contributed Talk 1<br>
Paper: Medfluencer: A Network Representation of Medical Influencers' Identities and Discourse on Social Media <a href="https://openreview.net/forum?id=StgezOmzHd">[PDF]</a><br>
Authors: Zhijin Guo, Edwin Simpson, Roberta Bernardi
<br><br>
Contributed Talk 2<br>
Paper: EpiLearn: A Python Library for Machine Learning in Epidemic Modeling <a href="https://openreview.net/forum?id=yBa0TkD99x">[PDF]</a><br>
Authors: Zewen Liu, Yunxiao Li, Mingyang Wei, Guancheng Wan, Max S.Y. Lau, Wei Jin
<br><br>
</td>
</tr>
<tr>
<td>9:35am-10:25am</td>
<td><b>Invited Keynote 1: Mauricio Santillana </b>
[<a id="toggle1" data-toggle="collapse" href="program.html#hideitem1">expand</a>]
<div id="hideitem1" class="collapse">
<img class="cardimage" src="./mauricio.png" alt="ben"><br>
Mauricio Santillana, PhD, MSc is the director of the Machine Intelligence Group for the betterment of Health and the Environment (MIGHTE) at the Network Science Institute at Northeastern University. He is a Professor at both the Physics and Electrical and Computer Engineering Departments at Northeastern University, and an Adjunct Professor at the Department of Epidemiology, at the Harvard T.H. Chan School of Public Health.
<br><br>
Dr. Santillana's research areas include the modeling of geographic patterns of population growth, modeling fluid flow to inform coastal floods simulations and atmospheric global pollution transport models, and most recently, the design and implementation of disease outbreaks prediction platforms and mathematical solutions to healthcare. His research has shown that machine learning techniques can be used to effectively monitor and predict the dynamics of disease outbreaks using novel data sources not designed for these purposes such as: Internet search activity, social media posts, clinician’s searches, human mobility, weather, etc. Dr. Santillana has advised the US CDC, Africa CDC, and the White House on the development of population-wide disease forecasting tools.
<br><br>
Mauricio received a B.S. in Physics with highest honors from Universidad Nacional Autónoma de México in Mexico City, and a Master's and PhD in Computational and Applied Mathematics from the University of Texas at Austin. Mauricio was a Postdoctoral fellow at the Harvard Center for the Environment and later became a lecturer in applied mathematics at the Harvard School of Engineering and Applied Sciences, receiving two awards for excellence in teaching. He became a tenure-track faculty member at Boston Children's Hospital, Harvard Medical School, and the Harvard T.H. Chan School of Public Health. He recently joined the faculty at Northeastern University.
</div><br>
Title: <i>Using Artificial Intelligence and novel Internet-based data sources to anticipate disease outbreaks. Lessons learned during the COVID-19 pandemic</i>
[<a id="toggle2" data-toggle="collapse" href="program.html#hideitem2">expand</a>]
<div id="hideitem2" class="collapse">
Abstract: I will describe data-driven machine learning methodologies that leverage Internet-based information from search engines (clinicians and the general public), Twitter microblogs, crowd-sourced disease surveillance systems, news alerts, electronic medical records, waste water, and weather information to successfully monitor and forecast disease outbreaks in multiple locations around the globe in near real-time. I will present how these approaches can be used to build early warning systems to anticipate communicable disease outbreaks including COVID-19 outbreaks.
</div>
</td>
</tr>
<tr>
<td>10:25am-11:10am</td>
<td> <b>Poster Session</b> (<a href="https://ccib.es/en/espais/ccib-p1/">Area 116</a>) + Coffee Break </td>
</tr>
<tr>
<td>11:10am-11:40am</td>
<td>Contributed Talk 3<br>
Paper: Optimal Disease Surveillance with Graph-Based Active Learning <a href="https://openreview.net/forum?id=Vxa4b8B601">[PDF]</a><br>
Authors: Joseph L-H Tsui, Mengyan Zhang, Prathyush Sambaturu, Simon Busch-Moreno, Oliver G. Pybus, Seth Flaxman, Elizaveta Semenova, Moritz U. G. Kraemer
<br><br>
Contributed Talk 4<br>
Paper: Enhancing COVID-19 Forecasting Precision through the Integration of Compartmental Models, Machine Learning and Variants <a href="https://openreview.net/forum?id=v89eTCg3EO">[PDF]</a><br>
Authors: Daniele Baccega, Paolo Castagno, Antonio Fernández Anta, Matteo Sereno
</td>
</tr>
<tr>
<td>11:40am-12:30pm</td>
<td><b>Invited Keynote 2: Yen-Chia Hsu</b>
[<a id="toggle3" data-toggle="collapse" href="program.html#hideitem3">expand</a>]
<div id="hideitem3" class="collapse">
<img class="cardimage" src="./yen-chia.jpeg" alt="ben"><br>
Yen-Chia Hsu is an assistant professor at the Informatics Institute, University of Amsterdam. His research focuses on studying how AI and visual analytics systems can support citizen participation, public engagement, citizen science, and community empowerment, especially in addressing environmental and social issues. He received his Ph.D. in Robotics in 2018 from the Robotics Institute at Carnegie Mellon University (CMU), where he conducted research on using technology to empower local people in tackling air pollution. He received his Master's degree in tangible interaction design in 2012 from the School of Architecture at CMU. Before CMU, he earned his dual Bachelor's degree in both architecture and computer science in 2010 at National Cheng Kung University, Taiwan. More information about him can be found on his website (http://yenchiah.me/).
</div><br>
Title: <i>Empowering Local Communities Using Artificial Intelligence </i>
[<a id="toggle4" data-toggle="collapse" href="program.html#hideitem4">expand</a>]
<div id="hideitem4" class="collapse">
Abstract: How can scientists co-create AI (Artificial Intelligence) systems with citizens to address environmental and social issues? Recently, it has become an important topic to explore the impact of AI on society. One viable strategy is citizen science, and its previous works have identified expert-based methods of how scientists developed technology for the public to participate in research, such as sustaining participation, verifying data quality, and labeling data. In contrast, there is another community-based perspective that receives significantly less attention: how scientists co-create AI systems with local communities to influence a particular geographical region. This talk will discuss examples and challenges of applying the community-based perspective to create social impact and empower people at a place-based local scale. Three deployed systems focusing on air quality monitoring using different types of data will be presented as examples.
</div>
</td>
</tr>
<tr>
<td>12:30am-1:00pm</td>
<td>Contributed Talk 5<br>
Paper: Estimating time-varying transmission and oral cholera vaccine effectiveness in Haiti and Cameroon, 2021-2023 <a href="https://openreview.net/forum?id=04m0rCKt9g">[PDF]</a><br>
Authors: Erin N Hulland, Marie-Laure Charpignon, Ghinwa Y. El Hayek, Lihong Zhao, Angel N. Desai, Maimuna S. Majumder
<br><br>
Contributed Talk 6<br>
Paper: Optimizing HIV Patient Engagement with Reinforcement Learning in Resource-Limited Settings <a href="https://openreview.net/forum?id=dVm3Oefm5g">[PDF]</a><br>
Authors: África Periáñez, Kathrin Schmitz, Lazola Makhupula, Moiz Hassan Khan, Moeti Moleko, Ana Fernández del Río, Ivan Nazarov, Aditya Rastogi and Dexian Tang
</td>
</tr>
</tbody></table>
<h1>Invited Keynote Speakers</h1>
<ul>
<li> <a href="https://yenchiah.me/">Yen-Chia Hsu</a>, University of Amsterdam </li>
<li> <a href="https://scholar.harvard.edu/msantillana/bio">Mauricio Santillana </a>, Northeastern University </li>
</ul>
<h1>List of Accepted Papers</h1>
The workshop proceedings can be found <a href="https://openreview.net/group?id=KDD.org/2024/Workshop/epiDAMIK"> here</a>.
<h2>Accepted Papers</h2>
<ul>
<li><i>Medfluencer: A Network Representation of Medical Influencers' Identities and Discourse on Social Media.</i> Zhijin Guo, Edwin Simpson, Roberta Bernardi</li>
<li><i>EpiLearn: A Python Library for Machine Learning in Epidemic Modeling.</i> Zewen Liu, Yunxiao Li, Mingyang Wei, Guancheng Wan, Max S.Y. Lau, Wei Jin</li>
<li><i>Estimating time-varying transmission and oral cholera vaccine effectiveness in Haiti and Cameroon, 2021-2023.</i> Erin N Hulland, Marie-Laure Charpignon, Ghinwa Y. El Hayek, Lihong Zhao, Angel N. Desai, Maimuna S. Majumder</li>
<li><i>Optimal Disease Surveillance with Graph-Based Active Learning.</i> Joseph L-H Tsui, Mengyan Zhang, Prathyush Sambaturu, Simon Busch-Moreno, Oliver G. Pybus, Seth Flaxman, Elizaveta Semenova, Moritz U. G. Kraemer</li>
<li><i>Distributed Calibration of Agent-based Models.</i> Aditi Garg, Ayush Chopra</li>
<li><i>Optimizing HIV Engagement with Reinforcement Learning in Resource-Limited Settings.</i> África Periáñez, Kathrin Schmitz, Lazola Makhupula, Moiz Hassan Khan, Moeti Moleko, Ana Fernández del Río, Ivan Nazarov, Aditya Rastogi and Dexian Tang</li>
<li><i>Enhancing COVID-19 Forecasting Precision through the Integration of Compartmental Models, Machine Learning and Variants.</i> Daniele Baccega, Paolo Castagno, Antonio Fernández Anta, Matteo Sereno</li>
<!-- <li><i>Assessing the extent of decoupling between the public's interest in the COVID-19 pandemic and health outcomes through Google Search Trends: a case study in the United States.</i> Anika Puri, Marie-Laure Charpignon, Erin N Hulland, Maimuna S. Majumder</li> -->
</ul>
<div id="credit">
<script language="javascript">
var lastModDate = new Date(document.lastModified);
document.write("Last updated by AR on: "+lastModDate);
window.onscroll = function() {myFunction()};
var navbar = document.getElementById("nav");
var sticky = navbar.offsetTop;
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
</script>
</div>
</div>
</div>
</body>
</html>