-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathevents.html
511 lines (443 loc) · 17.1 KB
/
events.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
<!DOCTYPE html>
<html>
<title>SPF- Events</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-brown.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
//load the parts of the page that are always the same across the portal
$("#footerContent").load("footer.html");
$("#topMenu").load("topMenu.html");
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118863115-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118863115-2');
</script>
<body>
<style>
.selected{
background-color:#8c6868 ;
}
td.imagecell {
width: 100px;
padding: 5px;
}
td.imagecell img {
width: 100px;
}
</style>
<body>
<header class="w3-container w3-theme w3-padding w3-center" id="topMenu">
<div class="w3-container">
<div class="w3-quarter w3-container w3-padding-8">
<a href="index.html"><img src="images/spflogo_1.png" width="80" style="float:right"/></a>
</div>
<div class="w3-half w3-container">
<h2>The Scientific Paper of the Future Initiative</h2>
</div>
</div>
<div class="w3-center">
<div class="w3-bar w3-theme">
<a href="index.html" class="w3-bar-item w3-button w3-padding-8 ">Home</a>
<a href="motivation.html" class="w3-bar-item w3-button w3-padding-8">Motivation</a>
<a href="spf.html" class="w3-bar-item w3-button w3-padding-8">What is a SPF</a>
<a href="sessions.html" class="w3-bar-item w3-button w3-padding-8">Sessions</a>
<a href="materials.html" class="w3-bar-item w3-button w3-padding-8">Materials</a>
<a href="events.html" class="w3-bar-item w3-button w3-padding-8 selected">Events</a>
<a href="gallery.html" class="w3-bar-item w3-button w3-padding-8">Gallery</a>
<a href="faq.html" class="w3-bar-item w3-button w3-padding-8">FAQ</a>
<a href="organization.html" class="w3-bar-item w3-button w3-padding-8">Organization</a>
<a href="sponsor.html" class="w3-bar-item w3-button w3-padding-8">Sponsorship</a>
</div>
</div>
</header>
<div class="w3-content">
<h3><b>Events</b></h3>
<ul><li><a href="#upcoming">Upcoming Events</a></li>
<li><a href="#previous">Past Events</a></li>
</ul><hr/>
<h1 name="upcoming" id="upcoming"><b>Upcoming Events</b></h1>
<h2>June 3-6, 2024. Information Sciences Institute, Marina Del Rey. (<a href="http://linked.earth/FROGS/"> pyRATES Workshop</a>).</h2>
<p>In-person, 6hours</p>
<p><b>Instructors</b></p>
<table><tr>
<td class="imagecell"><img src="images/deborah.jpeg" /></td>
<td>
<b>Deborah Khider</b><br />
Artificial Intelligence Division<br />
University of Southern California
</td>
<p><b><a href="http://linked.earth/LeapFROGS/">Instructional Platform</a> </b></p>
</tr></table>
<hr />
<h2>April 5th, 2024. 15:00, Room 6305, Campus Montegancedo (ETSI Informáticos). Seminar (<a href="https://moodle.upm.es/titulaciones/oficiales/course/view.php?id=1348#section-10">Data Science course</a>, requires login). Universidad Politécnica de Madrid</h2>
<p>In-person, 3hrs</p>
<p><b>Instructors</b></p>
<table><tr>
<td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Ontology Engineering Group<br />
Universidad Politécnica de Madrid
<p><b><a href="files/SPF-UPM-180min.pdf">Lecture slides</a> </b></p>
</td>
</tr></table>
<hr />
<h1 name="previous" id="previous"><b>Previous Events</b></h1>
<h2>April 28th, 2023. 15:00, Room 6305, Campus Montegancedo (ETSI Informáticos). Seminar (<a href="https://moodle.upm.es/titulaciones/oficiales/course/view.php?id=1348#section-10">Data Science course</a>, requires login). Universidad Politécnica de Madrid</h2>
<p>In-person, 3hrs</p>
<!-- <p><b><a href="files/SPF_180min.pdf">Tutorial materials</a> </b></p> -->
<p><b>Instructors</b></p>
<table><tr>
<td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Ontology Engineering Group<br />
Universidad Politécnica de Madrid
</td>
<p><b><a href="files/SPF-UPM-180min.pdf">Lecture slides</a> </b></p>
</tr></table>
<h2>January 30th, 2023. Seminar. Universidad Politécnica de Madrid</h2>
<p>In-person, 3hrs</p>
<!-- <p><b><a href="files/SPF_180min.pdf">Tutorial materials</a> </b></p> -->
<p><b>Instructors</b></p>
<table><tr>
<td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Ontology Engineering Group<br />
Universidad Politécnica de Madrid
</td>
<p><b><a href="files/SPF-UPM-180min.pdf">Lecture slides</a> </b></p>
</tr></table>
<h2>June 15th, 2022. Seminar. University of Aberdeen</h2>
<p>In-person, 1hr</p>
<!-- <p><b><a href="files/SPF_180min.pdf">Tutorial materials</a> </b></p> -->
<p><b>Instructors</b></p>
<table><tr>
<td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Ontology Engineering Group<br />
Universidad Politécnica de Madrid
</td>
</tr></table>
<h2>September 2021. Data Science Master. Universidad Politécnica de Madrid</h2>
<p>Online (Madrid), 3pm - 6pm</p>
<p><b><a href="files/SPF_180min.pdf">Tutorial materials</a> </b></p>
<p><b>Instructors</b></p>
<table><tr>
<td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Ontology Engineering Group<br />
Universidad Politécnica de Madrid
</td>
<h2>August 5th, 2021. <a href="https://itce.utah.edu/spatial.html">SPATIAL Short Course</a></h2>
<p>Salt Lake City, Utah, 6:00pm - 7:00pm</p>
<p><b><a href="https://figshare.com/articles/presentation/SPATIAL_Data_Management_Lecture/6510305">Lecture slides</a> </b></p>
<p><b>Instructors</b></p>
<table><tr>
<td class="imagecell"><img src="images/deborah.jpeg" /></td>
<td>
<b>Deborah Khider</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
</tr></table>
<h2>20th July, 2021. <a href="https://www.olcf.ornl.gov/caw2021">Computational and Autonomous Workflows Workshop Keynote</a></h2>
<p>Online (Madrid), 3pm - 6pm</p>
<p><b><a href="https://www.slideshare.net/dgarijo/fair-workows-a-step-closer-to-the-scientic-paper-of-the-future">Keynote materials</a> </b></p>
<p><b>Instructors</b></p>
<table><tr>
<td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Ontology Engineering Group<br />
Universidad Politécnica de Madrid
</td>
</tr></table>
<h2>May, 2021. Data Science Master. Universidad Politécnica de Madrid</h2>
<p>Online (Madrid), 3pm - 6pm</p>
<p><b><a href="files/SPF-UPM-180min.pdf">Tutorial materials</a> </b></p>
<p><b>Instructors</b></p>
<table><tr>
<td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Ontology Engineering Group<br />
Universidad Politécnica de Madrid
</td>
</tr></table>
<h2>August 5-6, 2019: Training Session at the FORCE11 Scholarly Communications Institute (FSCI)</h2>
<p>Carnesale - Palisades Ballroom E, University of California Los Angeles, 1pm-4pm</p>
<p><b>Instructors</b></p>
<table><tr>
<td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute and<br />
Department of Computer Science<br />
University of Southern California
</td>
<td class="imagecell"><img src="images/deborah.jpeg" /></td>
<td>
<b>Deborah Khider</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
<td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
</tr></table>
<h2>August 7-8, 2019: Training Session at the FORCE11 Scholarly Communications Institute (FSCI)</h2>
<p>Carnesale - Palisades Ballroom E, University of California Los Angeles, 1pm-4pm</p>
<p><b>Instructors</b></p>
<table><tr>
<td class="imagecell"><img src="images/deborah.jpeg" /></td>
<td>
<b>Deborah Khider</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
<td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
</tr></table>
<h2>July 25, 2019: Training Session at Addis Ababa University</h2>
<p>AAiT Auditorium, Addis Ababa University, Addis Ababa, Ethiopia, 3pm</p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute and<br />
Department of Computer Science<br />
University of Southern California
</td></tr></table>
<h2>September 26th, 2018: Online Training Session (Universidad Pontificia Bolivariana)</h2>
<p>Location and details: Online, 8:30 am PT</p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Information Sciences Institute<br />
University of Southern California
</td></tr></table>
<h2>August 3rd, 2018: The Scientific Paper of the Future for Climate and Weather Extremes</h2>
<p>Location and details: NCAR Foothills Campus, Boulder CO. </p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
</tr></table><hr />
<h2>June 14th, 2018: The Scientific Paper of the Future for Spatial Ecology and Biogeochemistry</h2>
<p>Location and details: University of Utah (Salt Lake City). More details <a href="https://itce.utah.edu/spatial.html">here</a></p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/deborah.jpeg" /></td>
<td>
<b>Deborah Khider</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
</tr></table><hr />
<h2>June 12-14, 2018: The Scientific Paper of the Future for Environmental Research</h2>
<p>Organizer: <strong>Kristin Vanderbilt</strong></p>
<p>Location and details: University of New Mexico. More details <a href="https://environmentaldatainitiative.org/events/training-webinars-workshops/hackathon-for-information-management-code-registry/">here</a></p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
</tr></table><hr />
<h2>April 12, 2018: Training Session at the University of Southern California</h2>
<p>Time: 12pm - 2pm PT (Lunch will be served)</p>
<p><a href="mailto:[email protected]">RSVP here</a>.</p>
<p>Location: Health Sciences Campus (HSC), NML East Conference Room </p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
<td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute and<br />
Department of Computer Science<br />
University of Southern California
</td>
</tr></table>
<h2>February 15, 2018: Training Session at the University of Southern California</h2>
<p>Time: 12pm - 2pm PT (Lunch will be served)</p>
<p><a href="mailto:[email protected]">RSVP here</a>.</p>
<p>Location: University Park Campus (UPC), CUB 329 </p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
<td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute and<br />
Department of Computer Science<br />
University of Southern California
</td>
</tr></table>
<h2>August 31, 2017: Training Session at the University of Southern California</h2>
<p>Time: 12pm - 2pm PT (Lunch will be served)</p>
<p><a href="mailto:[email protected]">RSVP here</a>.</p>
<p>Location: University Park Campus (UPC), Verna & Peter Dauterive Hall (VPD), Room 203 </p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
<td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute and<br />
Department of Computer Science<br />
University of Southern California
</td>
</tr></table><hr />
<h2>April 6, 2017: Training Session at the University of Southern California (Health Sciences Campus)</h2>
<p>Time: 10:30am - 2pm PT (Lunch will be served)</p>
<p><a href="mailto:[email protected]">RSVP here</a>.</p>
<p>Location: Norris Medical Library (NML), East Conference Room </p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
<td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute and<br />
Department of Computer Science<br />
University of Southern California
</td>
</tr></table>
<hr />
<h2>June 19, 2017: Training Session at the <a href="http://cedarweb.vsp.ucar.edu/wiki/index.php/2017_Workshop:Main">CEDAR</a> Annual Meeting</h2>
<p>Time: 10am</p>
<p><a href="mailto:[email protected]">RSVP here</a>.</p>
<p>Location: Redcloud Hall, Keystone Conference Center, Keystone, CO</p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute and<br />
Department of Computer Science<br />
University of Southern California
</td>
</tr></table><hr /><h2>July 30, 2017: Training Session at the <a href="https://www.force11.org/fsci/2017/course-abstract#am2">Scholarship in the 21st Century course</a> at the <a href="https://www.force11.org/fsci/2017/">First FORCE11 Scholarly Communications Institute</a></h2>
<p>Time: 10am</p>
<p><a href="mailto:[email protected]">RSVP here</a>.</p>
<p>Location: University of California San Diego, International House, Asante C</p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute and<br />
Department of Computer Science<br />
University of Southern California
</td>
</tr></table><hr />
<h2>February 4, 2017: Tutorial at the Conference for the Advancement of Artificial Intelligence</h2>
<p>Time: Saturday February 4, 2017 at 9:00am-1:00pm</p>
<p><a href="mailto:[email protected]">RSVP here</a>.</p>
<p>Location: Hilton San Francisco Union Square, Golden Gate 6-8</p>
<p><b><a href="http://www.isi.edu/~gil/slides/ScientificPaperOfTheFuture-AAAI2017-Tutorial.pdf">Tutorial materials</a> </b></p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
<td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute and<br />
Department of Computer Science<br />
University of Southern California
</td>
<td class="imagecell"><img src="images/clement.png" height="140" width="120" /></td>
<td>
<b>Gail Peretsman-Clement</b><br />
Head of Library Research Services<br />
California Institute of Technology
</td>
</tr></table><hr />
<h2>February 1, 2017: Training Session at the University of Southern California (University Park Campus)</h2>
<p>Time: 10:30am - 2pm PT (Lunch will be provided)</p>
<p><a href="mailto:[email protected]">RSVP here</a>.</p>
<p>Location: Doheny Memorial Library (DML), room 240 </p>
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
<td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute and<br />
Department of Computer Science<br />
University of Southern California
</td>
</tr></table><hr />
<h2>October 3, 2016: Training Session at Stanford University</h2>
<p>Time: 1pm-4:30pm PT</p>
<p>Location and details: <a href="https://neuroscience.stanford.edu/events/scientific-paper-future-workshop-yolanda-gil">here</a></p>
<!--<p><a href="http://www.eventbrite.com/e/scientific-paper-of-the-future-tickets-27658030915">RSVP here</a> </p>-->
<p><b>Instructors</b></p>
<table><tr><td class="imagecell"><img src="images/garijo.png" /></td>
<td>
<b>Daniel Garijo</b><br />
Information Sciences Institute<br />
University of Southern California
</td>
<td class="imagecell"><img src="images/gil.png" /></td>
<td>
<b>Yolanda Gil</b><br />
Information Sciences Institute and<br />
Department of Computer Science<br />
University of Southern California
</td>
</tr></table><hr />
</div>
<!-- Footer (defined in footer.html)-->
<footer class="w3-container w3-theme-dark w3-padding-16" style="box-shadow:0 50vh 0 50vh #3D2B24;" id ="footerContent">
</footer>
</body>
</html>