-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1623 lines (1431 loc) · 74.8 KB
/
index.html
File metadata and controls
1623 lines (1431 loc) · 74.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>HITLAML</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="" name="keywords" />
<meta content="" name="description" />
<!-- Favicons -->
<link href="img/favicon.png" rel="icon" />
<link href="img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800"
rel="stylesheet"
/>
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<link href="lib/animate/animate.min.css" rel="stylesheet" />
<link href="lib/venobox/venobox.css" rel="stylesheet" />
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<!-- Uncomment below if you prefer to use a text logo -->
<!-- <h1><a href="#main">C<span>o</span>nf</a></h1>-->
<a href="#intro" class="scrollto"
><img src="img/logo.png" width="150" alt="" title=""
/></a>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#intro">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#speakers">Speakers</a></li>
<li><a href="#organizers">Organizers</a></li>
<li><a href="#pcmember">Program Committee</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#venue">Venue</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#contact">Contact</a></li>
<li class="buy-tickets"><a href="#buy-tickets">Register</a></li>
<a href="https://wwwen.uni.lu/" target="_blank" class="scrollto"
><img src="img/Uni_logo.png"width="70" alt="" title=""
/></a>
</ul>
</nav>
<!-- #nav-menu-container -->
</div>
</header>
<!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container wow fadeIn">
<h2 style="color: whitesmoke" class="mb-4 pb-0">
The 1<sup>st</sup> International Workshop on <br /><span
style="color: #ff5555"><b>Human-in-the-Loop Applied Machine Learning (HITLAML)</span
>
</h1>
<p class="mb-4 pb-0">September 04 - 06, 2023 - Belval, Luxembourg</p>
<a href="#about" class="about-btn scrollto">About The Workshop</a>
</div>
</section>
<main id="main">
<!--==========================
About Section
============================-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h2>Summary</h2>
<p align="justify" style="color: whitesmoke">
Recent advances in applied Machine Learning (ML) are increasingly involving humans,
in data processing, model training, inference, and system design and practical application areas.
Improving model predictions, and creating a seamless interaction between humans and ML systems
are the two main reasons for Human-in-the-Loop applied ML (HITLAML). For instance, ML models are
deployed for designing conversational agents (CA), Adaptive User Interfaces (AUI) and diverse
Human-computer interaction (HCI) applications. ML research, particularly Computer Vision (CV) and
Natural Language processing (NLP) have enjoyed enormous success over the past decade. Advances
in NLP have shown great relevance for various downstream tasks such as language generation,
personalisation and recommender systems. Similarly autonomous vehicles, medical imaging, facial
recognition, pose tracking and interactive entertainment are among the areas where cross-domain
adoption of CV has gained momentum. <br />
The aim of this interdisciplinary workshop is to put a spot-light on recent advances and practical
applications of ML involving humans. The workshop calls participants for submission on topics
including, human-in-the-loop NLP, CV, HCI, and other practical applications of ML such as
recommender systems, personalization.
</p>
<h2>Theme of Submission</h2>
<p>The workshop has an interdisciplinary theme and welcomes submissions of works involving practical applications of Machine learning in HCI context. The relevant themes include but not limited to:
</p>
<ul>
<li>Human-in-the-loop NLP</li>
<ul>
<li>Language Modeling for downstream tasks</li>
<li>Machine Translation </li>
<li>Conversational Agents</li>
</ul>
<li>Human-in-the-loop CV</li>
<ul>
<li>Gesture recognition</li>
<li>Motion Detection</li>
<li>Pose Estimation</li>
</ul>
<li>HCI</li>
<ul>
<li>Emotion recognition using EEG, FNIRS, Eye tracking</li>
<li>Brain computer interfaces (BCI) </li>
<li>Bio-signal processing</li>
<li>Mouse tracking</li>
<li>Adaptive User Interfaces (AUI)</li>
</ul>
<li>Applied ML</li>
<ul>
<li>Recommender Systems, Personalization</li>
<li>Applied ML in Health care </li>
<li>Applied ML in digital arts and cultural Heritage</li>
<li>Applied ML in Economics and Finance</li>
<li>Applied ML in Transportation and Logistics </li>
</ul>
<li>Ethical considerations in applied ML.</li>
</ul>
</div>
<div class="col-lg-3">
<h3>Important Dates</h3>
<p>Paper & Demo <br/> Submission deadline: <p style = "color: rgb(237, 59, 59)"> <b><del>June 15, 2023 (AoE)</b></del></p><p style = "color: rgb(237, 59, 59)"> <b>July 14, 2023 (AoE)</b></p>
<p>Travel Grant Application deadline: <p style = "color: rgb(237, 59, 59)"> </p><p style = "color: rgb(237, 59, 59)"> <b>July 20, 2023 (AoE)</b></p>
Notification of acceptance: <p style = "color: burlywood"> <b><del> July 31, 2023 (AoE) </del></b></p> <p style = "color: burlywood"> <b>August 3, 2023 (AoE)</b></p> <br/>
Camera-ready Submission: <p style = "color: rgb(237, 59, 59)"> <b>August 18, 2023 (AoE)</b></p> <br/>
Registration opens: <p style = "color: burlywood"> <b>July 26, 2023 </b></p> <br/>
Workshop date: <p style = "color: burlywood"> <b>September 04 - 06, 2023</b></p> <br/>
</p>
</div>
<div class="col-lg-3">
<h3>Submission Guidelines</h3>
<p align="justify"><b>Submission format:</b> Submissions for contributing papers must be original
(i.e., not submitted to any other venue) and are required to be in CEUR format
(see: <a href="https://drive.google.com/file/d/1XcK2AU0DU2lRCNMeRpDwMq1LwrW1xQPY/view?usp=sharing" target="_blank"> HOW TO SUBMIT<a> ) with 6 pages + references
(including acknowledgements + supplementary material if necessary). <br/></p>
<p align="justify">Previously published articles or preliminary works can also be submitted
in the form of extended abstracts (2 pages + references). </p>
<p> <b>Submission link:</b> Submissions are to be made via Microsoft CMT: <a href="https://cmt3.research.microsoft.com/User/Login?ReturnUrl=%2FHITLAML2023" target="_blank"> HERE</a></p>
<p align="justify"> <b>The review process:</b> The review process will be carried out as double-blind. </p>
<p align="justify"> <b>Publication: </b> Accepted papers will be published in <a href="https://ceur-ws.org/index.html" target="_blank"> CEUR</a>
Accepted publications will also be invited to submit an extended version, which will be published on <a href="#" target="_blank"> [ACM]</a> proceedings.
</p>
<h3 style="color: rgb(251, 212, 70)" >Travel Grant</h3>
<p align="justify"> Thanks to <a href="https://www.fnr.lu" target="_blank">the Luxembourg National Research Fund (FNR)</a>'s, RESCOM scientific events grant, we are able to offer a maximum of 3,000 Euros
as a travel grant to PhD students and young researchers with accepted papers to support attendance.
If you are interested in applying for a travel grant, please fill out <a href="https://forms.gle/W2mBNyCWXqgf1f9t5" target="_blank"> THIS</a> form. We encourage all eligible applicants to apply.</p>
</div>
</div>
</div>
</section>
<!--==========================
Speakers Section
============================-->
<section id="speakers" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2> Speakers</h2>
<p>Keynote speakers</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/speakers/3_.jpg"
alt="Speaker 3"
class="img-fluid"
/>
<div class="details">
<h3><a href="speaker3-details.html">Djamila Aouada</a></h3>
<p>Professor at SnT UL, Luxembourg</p>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/speakers/2.jpg"
alt="Speaker 2"
class="img-fluid"
/>
<div class="details">
<h3><a href="speaker2-details.html">Jean Vanderdonckt</a></h3>
<p>Professor at UCLouvain, Belgium</p>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/speakers/4.jpg"
alt="Speaker 3"
class="img-fluid"
/>
<div class="details">
<h3><a href="speaker4-details.html">Janin Koch</a></h3>
<p>Professor, Inria Saclay, France</p>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="speakers" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2> </h2>
<p>Tutorials</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/tutorials/1.jpg"
alt="Speaker 1"
class="img-fluid"
/>
<div class="details">
<h3><a href="Tutorial_2-details.html">Ludovik Coba</a></h3>
<p>Machine Learning Scientist, Expedia, UK</p>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href="https://www.linkedin.com/in/ludovik-coba-8b96a0154/"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<p><strong style = "color:#0a0612">Interpretability of Machine Learning Models</strong></p>
</div>
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/tutorials/22.jpg"
alt="Speaker 2"
class="img-fluid"
/>
<div class="details">
<h3><a href="Tutorial_1-details.html">Jonathan K. Kummerfeld</a></h3>
<p>Professor, University of Sydney, Australia</p>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<p><strong style = "color:#0a0612">
Collaborative Human-AI Systems for Databases, Diplomacy, and more</strong></p>
</div>
</div>
</div>
</section>
<!--==========================
Organizer Section
============================-->
<section id="organizers" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Organizers</h2>
<p>Workshop organizing team</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/organizers/1.jpg"
alt="Organizer 1"
class="img-fluid"
/>
<div class="details">
<h3><a href="organizer1-details.html">Bereket YILMA</a></h3>
<p>University of Luxembourg, Luxembourg</p>
<div class="social">
<a href="https://twitter.com/bek_yilma"><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href="https://scholar.google.com/citations?user=Kvk-7FwAAAAJ&hl=en"><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<p><strong style = "color:#ff5555">Program Chair</strong></p>
</div>
<div class="col-lg-4 col-md-6" style="text-align:center" >
<div class="speaker">
<img
src="img/organizers/2.jpg"
alt="Speaker 2"
class="img-fluid"
/>
<div class="details">
<h3><a href="organizer2-details.html">Surafel LAKEW</a></h3>
<p>Amazon AWS AI Labs, USA</p>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<strong style = "color:#ff5555">Program Co-Chair</strong>
</div>
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/organizers/6.jpg"
alt="Speaker 3"
class="img-fluid"
/>
<div class="details">
<h3><a href="organizer6-details.html" target="_blank">Alina KARAKANTA</a></h3>
<p>University of Leiden, Netherlands</p>
<div class="social">
<a href="https://twitter.com/MattyD_IR "><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href="https://scholar.google.lu/citations?user=N5VfxGEAAAAJ&hl=en"><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<strong style = "color:#ff5555">Poster and Demo chair</strong><br/>
</div>
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/organizers/4.jpg"
alt="Speaker 3"
class="img-fluid"
/>
<div class="details">
<h3><a href="organizer4-details.html">Yogesh VIRKAR</a></h3>
<p>Amazon AWS AI Labs, USA</p>
<div class="social">
<a href="https://twitter.com/MattyD_IR "><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href="https://scholar.google.lu/citations?user=N5VfxGEAAAAJ&hl=en"><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<strong style = "color:#ff5555">Technical Program Chair</strong><br/>
</div>
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/organizers/5.jpg"
alt="Speaker 3"
class="img-fluid"
/>
<div class="details">
<h3><a href="organizer5-details.html">Laura PLEIN</a></h3>
<p>Luxembourg Tech School asbl, Luxembourg</p>
<div class="social">
<a href="https://twitter.com/MattyD_IR "><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href="https://scholar.google.lu/citations?user=N5VfxGEAAAAJ&hl=en"><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<strong style = "color:#ff5555">Publicity chair</strong><br/>
</div>
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/organizers/3.jpg"
alt="Speaker 3"
class="img-fluid"
/>
<div class="details">
<h3><a href="organizer3-details.html">Mateusz DUBIEL</a></h3>
<p>Unversity of Luxembourg, Luxembourg</p>
<div class="social">
<a href="https://twitter.com/MattyD_IR "><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href="https://scholar.google.lu/citations?user=N5VfxGEAAAAJ&hl=en"><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<strong style = "color:#ff5555">Publication Chair</strong>
</div>
</div>
</div>
</section>
<!--==========================
PC-member Section
============================-->
<section id="pcmember" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Student Volunteers</h2>
<p>SVs</p>
</div>
<div class="row">
<div class="col-lg-9 col-md-10" style="text-align:left">
<div class="speaker">
<ul>
<li> <a style = "color:#100338" href="#" target="_blank">Guillaume Ballinger, </a> <span style = "color:#fe2727" >University of Luxembourg</span></li>
<li> <a style = "color:#100338" href="#" target="_blank">Matteo Francesco Vitellaro, </a> <span style = "color:#fe2727" >University of Luxembourg</span></li>
<li> <a style = "color:#100338" href="#" target="_blank">Eliott Bonte, </a> <span style = "color:#fe2727" >University of Luxembourg</span></li>
<li> <a style = "color:#100338" href="#" target="_blank">Stefan Jovanovic, </a> <span style = "color:#fe2727" >University of Luxembourg</span></li>
<li> <a style = "color:#100338" href="#" target="_blank">Mika Beckerich, </a> <span style = "color:#fe2727" >University of Luxembourg</span></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--==========================
PC-member Section
============================-->
<section id="pcmember" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Program Committee</h2>
<p>PC Members</p>
</div>
<div class="row">
<!--<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/pc-members/1.jpg"
alt="Organizer 1"
class="img-fluid"
/>
<div class="details">
<h3><a href="pcmember1-details.html">Luis Leiva</a></h3>
<p style = "color:#ff5555">Unversity of Luxembourg</p>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/pc-members/2.jpg"
alt="Speaker 2"
class="img-fluid"
/>
<div class="details">
<h3><a href="pcmember2-details.html">Yonas Tefera</a></h3>
<p style = "color:#ff5555">Istituto Italiano di Tecnologia (IIT)</p>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href="https://scholar.google.com/citations?hl=en&user=BVvbtfoAAAAJ"><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6" style="text-align:center">
<div class="speaker">
<img
src="img/pc-members/1.jpg"
alt="Speaker 2"
class="img-fluid"
/>
<div class="details">
<h3><a href="pcmember3-details.html">Hubert Hirthe</a></h3>
<p style = "color:#ff5555">Unversity of Luxembourg</p>
<div class="social">
<a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-facebook"></i></a>
<a href=""><i class="fa fa-google-plus"></i></a>
<a href=""><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>-->
<div class="col-lg-9 col-md-10" style="text-align:left">
<div class="speaker">
<ul>
<li> <a style = "color:#100338" href="https://luis.leiva.name/" target="_blank">Luis A. Leiva, University of Luxembourg, </a> <span style = "color:#fe2727" >Luxembourg</span></li>
<li> <a style = "color:#100338" href="https://iarapakis.github.io/" target="_blank">Ioannis Arapakis, Telefónica Research, </a> <span style = "color:#fe2727" >Spain</span></li>
<li> <a style = "color:#100338" href="https://lileipisces.github.io/" target="_blank">Lei Li, Hong Kong Baptist University (HKBU), </a> <span style = "color:#fe2727" >Hong Kong</span></li>
<li> <a style = "color:#100338" href="https://hicup.famnit.upr.si/index.php/people/" target="_blank">Nuwan Attygalle, HICUP Lab, University of Primorska, </a> <span style = "color:#fe2727" >Slovenia</span> </li>
<li> <a style = "color:#100338" href="https://scholar.google.lu/citations?user=_nrtpPsAAAAJ&hl=en" target="_blank">Marcelo Romero, DropTeam Paris, </a> <span style = "color:#fe2727" >France</span> </li>
<li> <a style = "color:#100338" href="https://ict.fbk.eu/people/detail/marco-gaido/" target="_blank">Marco Gaido, Fondazione Bruno Kessler (FBK) & Unversity of Trento, </a> <span style = "color:#fe2727" >Italy</span></li>
<li> <a style = "color:#100338" href="https://yuejiang-nj.github.io/" target="_blank">Yue Jiang, Aalto University and Finnish Center for Artificial Intelligence (FCAI), </a> </a> <span style = "color:#fe2727" >Finland</span></li>
<li> <a style = "color:#100338" href="https://alanaai.com/about/vevake_balaraman/" target="_blank">Vevake Balaraman, Alana AI, </a> <span style = "color:#fe2727" >UK</span></li>
<li> <a style = "color:#100338" href="https://umtl.cs.uni-saarland.de/people/amr-gomaa.html" target="_blank">Amr Gomaa, German Research Center for Artificial Intelligence (DFKI),</a><span style = "color:#fe2727" > Germany</span> </li>
<li> <a style = "color:#100338" href="https://scholar.google.lu/citations?hl=en&user=BhA6vd0AAAAJ" target="_blank">Xingjiao Wu, East China Normal University, </a> <span style = "color:#fe2727" >China</span></li>
<li> <a style = "color:#100338" href="https://www.iit.it/people/yonas-tefera" target="_blank">Yonas Tefera, Istituto Italiano di Tecnologia (IIT), </a> <span style = "color:#fe2727" >Italy</span></li>
<li> <a style = "color:#100338" href="https://www.iit.it/it/web/guest/people/-/people/yaesol-kim" target="_blank">Yaesol Kim, Istituto Italiano di Tecnologia (IIT), </a> <span style = "color:#fe2727" >Italy</span></li>
<li> <a style = "color:#100338" href="https://people.aalto.fi/stephan.sigg" target="_blank">Stephan Sigg, Aalto University, </a> <span style = "color:#fe2727" >Finland</span></li>
<li> <a style = "color:#100338" href="https://ict.fbk.eu/people/detail/sara-papi/" target="_blank">Sara Papi, Fondazione Bruno Kessler (FBK) & Unversity of Trento, </a> <span style = "color:#fe2727" >Italy</span></li>
<li> <a style = "color:#100338" href="https://ict.fbk.eu/people/detail/beatrice-savoldi/" target="_blank">Beatrice Savoldi, Fondazione Bruno Kessler (FBK) & Unversity of Trento, </a> <span style = "color:#fe2727" >Italy</span></li>
<li> <a style = "color:#100338" href="https://www.dcs.gla.ac.uk/~rod/" target="_blank">Roderick Murray-Smith, University of Glasgow </a> <span style = "color:#fe2727" >UK</span></li>
<li> <a style = "color:#100338" href="https://eliezersilva.blog/" target="_blank"> Eliezer Silva, Getúlio Vargas Foundation /FGV, Rio de Janeiro, </a> <span style = "color:#fe2727" >Brazil</span></li>
<li> <a style = "color:#100338" href="https://scholar.google.it/citations?user=o4OksrQAAAAJ&hl=en" target="_blank"> Alessandra Cervone, Amazon Alexa AI, </a> <span style = "color:#fe2727" >USA</span></li>
<li> <a style = "color:#100338" href="https://hci.isir.upmc.fr/gilles-bailly/" target="_blank"> Gilles Bailly, ISIR Laboratory (Multi-Scale Interaction team),Sorbonne Université,</a> <span style = "color:#fe2727" >France</span></li>
<li> <a style = "color:#100338" href="https://sven-mayer.com/bio/" target="_blank"> Sven Mayer, LMU Munich, </a> <span style = "color:#fe2727" > Germany</span></li>
<li> <a style = "color:#100338" href="https://www.uni.lu/en/person/NTAwNDczOTJfX01oYW1lZCBNYXR0ZW8gRUwgSEFSSVJZ/" target="_blank"> Matteo EL HARIRY, University of Luxembourg, </a> <span style = "color:#fe2727" >Luxembourg</span></li>
<li> <a style = "color:#100338" href="https://fmplaza.github.io/" target="_blank"> Flor Miriam Plaza-del-Arco , Bocconi University, </a> <span style = "color:#fe2727" >Milan, Italy.</span></li>
<!-- <li> <a style = "color:#100338" href="" target="_blank"> </a> <span style = "color:#fe2727" ></span></li> -->
</ul>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Schedule Section
============================-->
<section id="schedule" class="section-with-bg">
<div class="container wow fadeInUp">
<div class="section-header">
<h2>Event Schedule</h2>
<p>Here is our event schedule</p>
</div>
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item">
<a
class="nav-link active"
href="#day-1"
role="tab"
data-toggle="tab"
>Day 1<br> 04/09/2023</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-toggle="tab"
>Day 2<br> 05/09/2023</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-3" role="tab" data-toggle="tab"
>Day 3<br> 06/09/2023</a
>
</li>
</ul>
<h3 class="sub-heading">
Please find below our schedule.
</h3>
<div class="tab-content row justify-content-center">
<!-- Schdule Day 1 -->
<div
role="tabpanel"
class="col-lg-9 tab-pane fade show active"
id="day-1"
>
<div class="row schedule-item">
<div class="col-md-2"><time>09:30 AM</time></div>
<div class="col-md-10">
<h4>Registration</h4>
<p>
Registration and welcome coffee
</p></br></br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/MD7HGTk78qA?si=vDieeQpHexumZDzt" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/tutorials/1.jpg" alt="Ludovic" />
</div>
<h4>
Tutorial
<span><a href="Tutorial_2-details.html">Ludovik Coba</a></span>
</h4>
<p>
Interpretability of Machine Learning Models
</p>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="buy-tickets"><a href="https://unilu.webex.com/weblink/register/r5fa083cd3d17fa9731bb3629f8476138" target="_blank"><del>Stream Live</del></a></li>
</ul></br>
</nav>
<iframe width="560" height="315" src="https://www.youtube.com/embed/2eDOUWNw0E0?si=7VLfYbfDI95HXVRH" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/oral.jpg" alt="Hubert Hirthe" />
</div>
<h4>
Oral presentations <span></span>
</h4>
<p>Accepted Papers
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="buy-tickets"><a href="https://unilu.webex.com/weblink/register/r0e4844ae65142aab9697b71c5c73fb0e" target="_blank" style="color: rgb(27, 0, 0)"><del>Stream Live</del></a></li>
</ul>
</nav></p> </br>
</br>
<ul>
<li> <h4><b style="color: rgb(166, 16, 16)" >11:00 AM </b>Unveiling the Role of Expert Guidance: A Comparative Analysis of User-centered Imitation Learning and Traditional Reinforcement Learning;
<span><b style="color: rgb(73, 0, 0)" >Amr Gomaa<sup>*</sup></b>, Bilal E Mahdy;
<i style="color: rgb(73, 0, 0)">German Research Center for Artificial Intelligence (DFKI), Germany </i></span></h4></li></br>
<li> <h4><b style="color: rgb(166, 16, 16)" >11:20 AM </b>Beyond original Research Article Categorization via NLP;
<span><b style="color: rgb(73, 0, 0)" >Rosanna Turrisi<sup>*</sup></b>;
<i style="color: rgb(73, 0, 0)">University of Genova, Italy </i></span></h4></li></br>
<li> <h4><b style="color: rgb(166, 16, 16)" >11:40 AM </b> Monitoring Cyber Peer-Led Team Learning: A Multimodal Human-in-the-loop Approach;
<span><b style="color: rgb(73, 0, 0)" >Karen DSouza<sup>*</sup></b>, LPratibha Varma-Nelson, Shiaofen Fang, Snehasis Mukhopadhyay;
<i style="color: rgb(73, 0, 0)">Indiana University & Purdue University Indianapolis, USA </i></span></h4></li>
</ul> </br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/R4VLGCXqtfs?si=e0-2KXvAhP8kJpM8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/venue-gallery/6.jpg" alt="Cole Emmerich" />
</div>
<h4>
Lunch break <span></span>
</h4>
<p>
</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>2:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/3.jpg" alt="Jack Christiansen" />
</div>
<h4> Keynote <span><a href="speaker3-details.html"><del>Djamila Aouada</del></a></span></h4>
<p>
<del> Enabling 3D reverse engineering</del>
</p>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="buy-tickets"><a href="https://forms.gle/Zx7f4v5kBbZZx76c9" target="_blank" style="color: rgb(27, 0, 0)">In person only</a></li>
</ul>
</nav> <p></p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>03:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/spot.jpg" alt="yonas" />
</div>
<h4>
Spotlight Presentation and Demo <nav id="nav-menu-container">
<ul class="nav-menu">
<li class="buy-tickets"><a href="https://unilu.webex.com/weblink/register/r6db987e1894878a37c02619a110e7319" target="_blank" style="color: rgb(27, 0, 0)"><del>Stream Live</del></a></li>
</ul>
</nav> </br> </br>
<span><a href="#"><b style="color: rgb(73, 0, 0)" >Yonas T. Tefera<sup>*</sup></b>, Yaesol Kim, Sara Anastasi, Nikhil Deshpande;</br> <b><a href="https://vicarios.github.io/#home" target="_blank">VICARIOS Lab, Istituto italiano di tecnoligoa (IIT), Genova, Italy</a> </b> </a></span>
</h4></br>
<p>
Real-time Immersive Remote Telerobotics: Highlighting the Benefit of Humans in the Loop and Applying Machine Learning
</p></br>
<h6 align="justify">Immersive remote teleoperation allows humans to interact with inaccessible or hazardous environments through robots using advanced technologies like VR and AR. It ensures safe and efficient operations, facilitates knowledge transfer, and expands human involvement in challenging domains.
This presentation will demonstrate <a href="https://vicarios.github.io/#home" target="_blank">Vicarios Mixed Reality and Simulation Lab</a>'s work that aims to enhance real-time immersive interaction in Telerobotics, focusing on the vital role of human involvement. The presentation will highlight the challenges associated with immersive remote teleoperation and present potential solutions that the lab has been exploring. Moreover, a live demonstration illustrating the practical implementation of these solutions in real-time, overcoming geographical distances will be showcased. Specifically, the demo will present a case study involving a teleoperation scenario from Luxembourg to Genova, Italy, spanning a distance of 863 km.
Furthermore, the talk will discuss specific areas where machine learning can be applied, highlighting its benefits in enhancing user experience, increasing efficiency, and optimizing task execution.
</h6> </br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/RVQIT-_EbF4?si=yhcETcmmJq-DDrQs" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>3:45 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/cof.jpeg" alt="Jack Christiansen" />
</div>
<h4> Coffee break <span><a href="speaker3-details.html">@MSA 0342090 AB</a></span></h4>
<p></p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>4:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/venue-gallery/1.jpg" alt="Jack Christiansen" />
</div>
<h4>
Poster Session.
<span>@ Maison du Savoir (MSA 3.230 and MSA 3.240.)</span>
</h4>
<p>parallel demo session.</p>
<ul>
</br>
<li> <h4><b style="color: rgb(166, 16, 16)" > </b>VisionChain - Taming Foundational Vision Models for use in the Real World;
<span><b style="color: rgb(73, 0, 0)" >George Pearse<sup>*</sup></b>;
<i style="color: rgb(73, 0, 0)">Binit AI</i></span></h4></li></br>
<li> <h4><b style="color: rgb(166, 16, 16)" ></b>Real-time Immersive Remote Telerobotics: Highlighting the Benefit of Humans in the Loop and Applying Machine Learning;
<span><b style="color: rgb(73, 0, 0)" >Yonas T. Tefera<sup>*</sup></b>, Yaesol Kim, Sara Anastasi, Nikhil Deshpande;
<i style="color: rgb(73, 0, 0)"><a href="https://vicarios.github.io/#home" target="_blank">VICARIOS Lab, Istituto italiano di tecnoligoa (IIT), Genova, Italy</a> </i></span></h4></li></br>
<li> <h4><b style="color: rgb(166, 16, 16)" ></b> Gustav: Cross-device Cross-computer Synchronization of Sensory Signals;
<span><b style="color: rgb(73, 0, 0)" >Kayhan Latifzadeh<sup>*</sup></b>, Luis A. Leiva,
<i style="color: rgb(73, 0, 0)">University of Luxembourg, Luxembourg </i></span></h4></li>
</ul>
</div>
</div>
</div>
<!-- End Schdule Day 1 -->
<!-- Schdule Day 1 -->
<!--<div
role="tabpanel"
class="col-lg-9 tab-pane fade show active"
id="day-1"
>
<div class="row schedule-item">
<div class="col-md-2"><time>09:30 AM</time></div>
<div class="col-md-10">
<h4>Registration</h4>
<p>
Registration and welcome coffee
</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/1.jpg" alt="Brenden Legros" />
</div>
<h4>Keynote 1 <span><a href="speaker1-details.html">Marcello FEDERICO</a></span></h4>
<p>Improving Neural Machine Translation with Context Information.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/oral.jpg" alt="Hubert Hirthe" />
</div>
<h4>
Oral presentations <span>Hubert Hirthe, Alex wang</span>
</h4>
<p>
Paper 1: title <br>
Paper 2: title <br>
</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/venue-gallery/6.jpg" alt="Cole Emmerich" />
</div>
<h4>
Lunch break <span></span>
</h4>
<p>
@venue
</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>2:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/venue-gallery/1.jpg" alt="Jack Christiansen" />
</div>
<h4>
Poster Session.
<span>@ Maison du Savoir</span>
</h4>
<p>parallel demo session.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>03:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/organizers/2.jpg" alt="Alejandrin Littel" />
</div>
<h4>
Tutorial.
<span><a href="speaker1-details.html">Surafel LAKEW</a></span>
</h4>
<p>
NMT.
</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>4:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/venue-gallery/1.jpg" alt="Jack Christiansen" />
</div>
<h4>
Poster Session.
<span>@ Maison du Savoir</span>
</h4>
<p>parallel demo session.</p>
</div>
</div>
</div>-->
<!-- End Schdule Day 1 -->
<!-- Schdule Day 2 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-2">
<div class="row schedule-item">
<div class="col-md-2"><time>09:15 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/2.jpg" alt="Brenden Legros" />
</div>
<h4>Keynote <span><a href="speaker2-details.html">Jean Vanderdonckt</a></span></h4>
<p>To the end of our possibilities with adaptive user interfaces</p>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="buy-tickets"><a href="https://unilu.webex.com/weblink/register/rb25012de73a30823a90a7e239f6b1b96" target="_blank" style="color: rgb(27, 0, 0)"><del>Stream Live</del></a></li> </br>
</ul></br>
</nav>
<iframe width="560" height="315" src="https://www.youtube.com/embed/fqIzqxDAG7I?si=Gy70S-KxgKCfgiHQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:15 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/cof.jpeg" alt="Jack Christiansen" />
</div>
<h4> Coffee break <span><a href="speaker3-details.html">@MSA 0342090 AB</a></span></h4>
<p></p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:30 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/tutorials/22.jpg" alt="Hubert Hirthe" />
</div>
<h4>
Tutorial <span><a href="Tutorial_1-details.html">Jonathan K. Kummerfeld</a></span>
</h4>
<p>
Collaborative Human-AI Systems for <del>Databases</del>, Diplomacy, and more
</p>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="buy-tickets"><a href="https://unilu.webex.com/weblink/register/r02578864a1127530768b1777336a4c07" target="_blank" style="color: rgb(27, 0, 0)"><del>Stream Live</del></a></li>
</ul></br>
</nav>