-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1285 lines (1136 loc) · 81.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
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">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Center of Excellence for AI</title>
<meta content="Explore AI and its applications at the Center of Excellence for AI, SLIIT." name="description">
<meta content="AI, Machine Learning, Excellence, Center, SLIIT" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon2.ico" rel="icon">
<link href="assets/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,600,600i,700,700i|Jost:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-173908477-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-173908477-1');
</script>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" style="padding-bottom:1%; background-color: #ffffff;">
<div class="container d-flex align-items-center">
<a href="index.html" style="display: flex; align-items: center;">
<!-- Set the height of the logo to 50% of the container's height -->
<img src="assets/img/Logo-AI-new.png" alt="Logo" style="height: 15%; width: 15%;">
<h1 style="margin-left: 10px; text-transform: uppercase; font-weight: bold;">Center of Excellence for AI</h1>
</a>
</div>
</header>
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
</div>
<div class="container">
<div class="row" style="padding-left: 20%; margin-top: -5%">
</nav>
<nav class="nav-menu d-none d-lg-block" align="right">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<!-- <li><a href="aboutus.html">About Us</a></li> -->
<li><a href="team.html">Team</a></li>
<!-- <li><a href="project.html">Projects</a></li> -->
<li><a href="Key_AI_verticles.html">Key AI verticals</a></li>
<li><a href="grants.html">Grants</a></li>
<li><a href="index.html#publications">Publications</a></li>
<li><a href="index.html#research">Research</a></li>
<li><a href="Event.html">Events</a></li>>
</ul>
</nav><!-- .nav-menu -->
</div>
<!-- T added the model here -->
<div id="myModal" class="modal hide fade" role="dialog">
<div class="modal-dialog modal-lg" role="content">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Colombo ACM SIGCHI Town Hall Meeting</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<div class="mt-0">
<p>Interest in Human Computer Interaction, but not sure if you can find the local community? Join our
Town Hall event. We provide information on -
How to connect to your local researchers and practitioners
How to join ACM SIGCHI local Chapter
What are the Global ACM SIGCHI events and programs
What are the funds available.. and any other questions..
Join the discussion, meet the team leading this effort, join hands to lead next.</p>
<div class="row">
<div class="col-12 col-md-6">
<p>If you’re interested,<br>
<a class="btn btn-success " target="_blank"
href="https://zoom.us/j/93397420894?pwd=VmoweHJ1ODhlVm1YTzdKdFZPQ2taQT09">
Join via zoom</a>
</p>
<p>or,</p>
<ul>
<li>Meeting ID: 933 9742 0894</li>
<li>Passcode: SIGCHI</li>
</ul>
<!-- <p>This is the first baby-step to many things:</p>
<ul>
<li>Country-wide collaboration of HCI researchers and educators</li>
<li>Taking SLIIT-HCI to a prominent position in the local and global HCI community</li>
<li>More opportunities** for research collaborations - joint publications, MPhils, PhDs, grants,
etc</li>
<li>Increasing Sri Lankan footprint in top ACM HCI conferences and journals e.g. ACM-CHI</li>
<li>Our own ACM HCI conference (CHI-Asia)</li>
<li>Our own HCI journal for the region</li>
</ul> -->
</div>
<div class="col-12 col-md">
<img class="img-fluid w-100" src="assets\img\events\CHI Town Hall.jpg" alt="flyer">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="flyerModal" class="modal hide fade" role="dialog">
<div class="modal-dialog modal-lg" role="content">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">2021 Generation Google Scholarship: for women in computer science</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<div class="mt-0">
<div class="col col-md">
<!-- google ad -->
<div>
<div>
<div>
<div>
<div>
<div>
<div>
<div>
<div>
<div class="_2Ypz6DjF0cnPXsnj_7roel" style="" has-hovered="true">
<table border="0" cellspacing="0" cellpadding="0"
style="border-collapse: collapse; transform: scale(1, 1); transform-origin: left top;"
min-scale="0.7238805970149254">
<tbody>
<tr>
<td valign="top"
style="background-color:#F3F3F3;padding:21.6pt;overflow:hidden;">
<p style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<div align="center">
<table border="0" cellspacing="0" cellpadding="0"
style="width:459pt;border-collapse:collapse;">
<tbody>
<tr style="height:20pt;">
<td valign="top"
style="background-color:white;height:20pt;padding:21.6pt;overflow:hidden;">
<p align="center" style="text-align:center;"><b><span
style="color:#434343;font-family:Arial,sans-serif;padding:0;border:1pt none windowtext;"><img
data-imagetype="External"
src="https://lh4.googleusercontent.com/CoqZMCh76tfMPrvo40APHrTp1aznd6K_loBsPii3hz4IhCOAgL5iaysDCVxY08DUhRj46bdPTTx3-SnC1Gw45p--ZkCNJMLLe8ktZM0wqSQUtN9KUi_R87I-KRCjRpuVzfKOKbUhkw"
border="0" id="x__x0000_i1038"
style="width:154.49pt;height:52.49pt;"></span></b></p>
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0 0 12pt 0;">
</p>
<p><span
style="color:#434343;font-family:Arial,sans-serif;">Ready to
be inspired? </span></p>
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<p><span style="color:black;"><a
href="https://buildyourfuture.withgoogle.com/scholarships/generation-google-scholarship-apac/"
target="_blank" rel="noopener noreferrer"
data-auth="NotApplicable"><b><span
style="font-family:Arial,sans-serif;">Apply
now</span></b></a></span><span
style="color:black;font-family:Arial,sans-serif;">
</span><span
style="color:#434343;font-family:Arial,sans-serif;">for the
2021 Generation Google Scholarship: for women in computer
science (APAC)! Application closing on Monday, 29th March
2021.</span></p>
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<p><b><span
style="color:#434343;font-family:Arial,sans-serif;">Generation
Google Scholarship: for women in computer science
</span></b><span
style="color:#434343;font-family:Arial,sans-serif;">(formerly
known as Women Techmakers Scholars Program) supports
women to excel in computing and technology, and become
active role models and leaders in the industry. It is an
opportunity to develop, grow and enhance your skills and
broaden your horizons. </span></p>
<div align="center"
style="font-size:11pt;font-family:Calibri,sans-serif;text-align:center;margin:0;">
<span style="color:black;">
<hr align="center" width="100%" size="2">
</span>
</div>
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<div align="center">
<table border="0" cellspacing="0" cellpadding="0"
style="border-collapse:collapse;">
<tbody>
<tr style="height:27pt;">
<td valign="top" colspan="2"
style="height:27pt;padding:0.75pt;overflow:hidden;">
<p align="center" style="text-align:center;"><span
style="color:#434343;font-size:15pt;font-family:Arial,sans-serif;">If
the below applies to you, you’re eligible!</span>
</p>
</td>
</tr>
<tr style="height:34pt;">
<td valign="top"
style="height:34pt;padding:0.75pt;overflow:hidden;">
<p align="center" style="text-align:center;"><span
style="color:#434343;font-family:Arial,sans-serif;padding:0;border:1pt none windowtext;"><img
data-imagetype="External"
src="https://lh6.googleusercontent.com/JEuOf0BniS0_RGWHpAhN5v09thp0mrLmEzAFx1uQSdPYkD-SHrNi-dk1dPA1XslnNfFdsaPw0YI7rYPVjEXfa-qxBTaMfz2geVNIbCSID7EZpUrWX6-6xdhRs2FKymXgZZnCnqHH1Q"
border="0" id="x__x0000_i1037"
style="width:45.74pt;height:43.49pt;"></span>
</p>
</td>
<td valign="top"
style="height:34pt;padding:0.75pt;overflow:hidden;">
<p
style="text-indent:-18pt;vertical-align:baseline;margin-left:47.25pt;">
<span
style="color:#434343;font-size:10pt;font-family:Symbol;"><span>·<span
style="font-size:7pt;font-family:Times New Roman;">
</span></span></span><span
style="color:#434343;font-family:Arial,sans-serif;">A
female student studying computer science or a
closely related technical field.</span></p>
<p
style="text-indent:-18pt;vertical-align:baseline;margin-left:47.25pt;">
<span
style="color:#434343;font-size:10pt;font-family:Symbol;"><span>·<span
style="font-size:7pt;font-family:Times New Roman;">
</span></span></span><span
style="color:#434343;font-family:Arial,sans-serif;">Be
currently enrolled as a full-time student for the
2021-2022 academic year</span></p>
<p
style="text-indent:-18pt;vertical-align:baseline;margin-left:47.25pt;">
<span
style="color:#434343;font-size:10pt;font-family:Symbol;"><span>·<span
style="font-size:7pt;font-family:Times New Roman;">
</span></span></span><span
style="color:#434343;font-family:Arial,sans-serif;">Be
a 1st year or 2nd year student in a Bachelors
program at an accredited university in one of the
following Southeast Asia+ countries: </span>
</p>
<p
style="text-indent:-18pt;vertical-align:baseline;margin-left:83.25pt;">
<span
style="color:#434343;font-size:10pt;font-family:Courier New;"><span>o<span
style="font-size:7pt;font-family:Times New Roman;">
</span></span></span><span
style="color:#434343;font-family:Arial,sans-serif;">Bangladesh,
Brunei, Cambodia, Indonesia, Laos, Malaysia,
Mongolia, Myanmar, Nepal, Pakistan, Philippines,
Singapore, Sri Lanka, Thailand and Vietnam.</span>
</p>
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<p><i><span
style="color:#434343;font-size:9pt;font-family:Arial,sans-serif;">For
students across undergraduate (3rd & 4th
Year), post graduate and PhD levels, we highly
encourage you to visit </span></i><a
href="https://careers.google.com/students/"
target="_blank" rel="noopener noreferrer"
data-auth="NotApplicable"><i><span
style="font-size:9pt;font-family:Arial,sans-serif;">Google
Careers for Students</span></i></a><i><span
style="color:#434343;font-size:9pt;font-family:Arial,sans-serif;">
page to find out more about opportunities and
programs that better align to your academic
level.</span></i></p>
</td>
</tr>
<tr style="height:16pt;">
<td valign="top" colspan="2"
style="height:16pt;padding:0.75pt;overflow:hidden;">
</td>
</tr>
<tr style="height:19pt;">
<td valign="top" colspan="2"
style="height:19pt;padding:0.75pt;overflow:hidden;">
<p align="center" style="text-align:center;"><span
style="color:#434343;font-size:15pt;font-family:Arial,sans-serif;">Why
you should apply for this scholarship!</span></p>
</td>
</tr>
<tr style="height:229.55pt;">
<td valign="top" colspan="2"
style="height:229.55pt;padding:0.75pt;overflow:hidden;">
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<div align="center">
<table border="0" cellspacing="0" cellpadding="0"
style="border-collapse:collapse;">
<tbody>
<tr>
<td valign="top"
style="padding:5pt;border:1pt solid white;overflow:hidden;">
<p align="center"
style="text-align:center;"><span
style="color:#434343;font-size:15pt;font-family:Arial,sans-serif;padding:0;border:1pt none windowtext;"><img
data-imagetype="External"
src="https://lh5.googleusercontent.com/6AQY6u1uDD2cwsDi04E86XGudISEoDXdL2i3BABCPaI3rsg8n11AfYPbK3HTTbfLY_k8IcZL1XpaFaiyOzf37Y2watvDCli76xPR1lHSQwgGNzubsxy22IgXioXf1cF9yEibCTXaew"
border="0" id="x__x0000_i1036"
style="width:47.24pt;height:50.24pt;"></span>
</p>
</td>
<td valign="top"
style="padding:5pt;border-width:1pt;border-style:solid solid solid none;border-color:white;overflow:hidden;">
<p align="center"
style="text-align:center;"><span
style="color:#434343;font-size:12pt;font-family:Arial,sans-serif;">
</span><span
style="color:#434343;font-size:12pt;font-family:Arial,sans-serif;padding:0;border:1pt none windowtext;"><img
data-imagetype="External"
src="https://lh6.googleusercontent.com/ufMVC_k4DZXqqy74LyYJ923l9hbYYaITVdh6BEyUd4eJaSmi6uT1sDSYqmjRMJlzORdwdmn3kM9cQC6plraS_IDhnyQBJtXnzbDerxs9tiEit_Jhkd1hKV3JpLdIk14weePSF_sNSA"
border="0" id="x__x0000_i1035"
style="width:49.5pt;height:48.74pt;"></span>
</p>
</td>
<td valign="top"
style="padding:5pt;border-width:1pt;border-style:solid solid solid none;border-color:white;overflow:hidden;">
<p align="center"
style="text-align:center;"><span
style="color:#434343;font-size:12pt;font-family:Arial,sans-serif;">
</span><span
style="color:#434343;font-size:12pt;font-family:Arial,sans-serif;padding:0;border:1pt none windowtext;"><img
data-imagetype="External"
src="https://lh4.googleusercontent.com/QO3rkCRyc5_ORhAbD7t1fnhzeZcsV0_B8UAL0_Y7FD-u4cwt3l9NFkG7jFAoVyupy1LlTcMyK0yBiaVbuZVIZVACHFZhtdqJ-rAsKMZmHrElSCmBhLzasfg6qKGPgceJ-xkSAQRKbQ"
border="0" id="x__x0000_i1034"
style="width:50.24pt;height:50.24pt;"></span>
</p>
</td>
</tr>
<tr style="height:20pt;">
<td valign="top"
style="height:20pt;padding:5pt;border-width:1pt;border-style:none solid solid solid;border-color:white;overflow:hidden;">
<p align="center"
style="text-align:center;"><b><span
style="color:#434343;font-size:12pt;font-family:Arial,sans-serif;">Award</span></b>
</p>
</td>
<td valign="top"
style="height:20pt;padding:5pt;border-style:none solid solid none;border-right-width:1pt;border-bottom-width:1pt;border-right-color:white;border-bottom-color:white;overflow:hidden;">
<p align="center"
style="text-align:center;"><b><span
style="color:#434343;font-size:12pt;font-family:Arial,sans-serif;">
Retreat</span></b></p>
</td>
<td valign="top"
style="height:20pt;padding:5pt;border-style:none solid solid none;border-right-width:1pt;border-bottom-width:1pt;border-right-color:white;border-bottom-color:white;overflow:hidden;">
<p align="center"
style="text-align:center;"><b><span
style="color:#434343;font-size:12pt;font-family:Arial,sans-serif;">
Self Development</span></b></p>
</td>
</tr>
<tr style="height:105pt;">
<td valign="top" colspan="3"
style="height:105pt;padding:5pt;border-width:1pt;border-style:none solid solid solid;border-color:white;overflow:hidden;">
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<p><span
style="color:#434343;font-family:Arial,sans-serif;">This
is an<b> opportunity to learn, grow
</b>and<b> develop yourself</b>. As a
scholar, you will receive a<b> cash
award</b> for the 2021-2022 academic
year and be invited to attend the annual
(virtual)
<b>Scholars' Retreat </b>to connect with
fellow scholars, network with Googlers
and participate in a number of
<b>developmental workshops</b> to help
enhance your skills to prepare you for a
better tomorrow.</span></p>
</td>
</tr>
</tbody>
</table>
</div>
<p align="center"
style="font-size:11pt;font-family:Calibri,sans-serif;text-align:center;margin:0;">
</p>
</td>
</tr>
</tbody>
</table>
</div>
<div align="center"
style="font-size:11pt;font-family:Calibri,sans-serif;text-align:center;margin:0;">
<span style="color:black;">
<hr align="center" width="100%" size="2">
</span>
</div>
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<div align="center">
<table border="0" cellspacing="0" cellpadding="0"
style="border-collapse:collapse;">
<tbody>
<tr style="height:29.75pt;">
<td valign="top" colspan="2"
style="height:29.75pt;padding:0.75pt;overflow:hidden;">
<p align="center" style="text-align:center;"><span
style="color:#434343;font-size:15pt;font-family:Arial,sans-serif;">Wish
to find out more?</span></p>
<p align="center" style="text-align:center;"><span
style="color:#434343;font-family:Arial,sans-serif;">Join
us on YouTube Livestream to learn more and ask
your questions LIVE!</span></p>
</td>
</tr>
<tr style="height:101.75pt;">
<td valign="top"
style="height:101.75pt;padding:0.75pt;overflow:hidden;">
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<p><b><span
style="color:#434343;font-family:Arial,sans-serif;">Date:
</span></b><span
style="color:#434343;font-family:Arial,sans-serif;">Monday,
15th March 2021</span></p>
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<p><b><span
style="color:#434343;font-family:Arial,sans-serif;">Time:
</span></b><span
style="color:#434343;font-family:Arial,sans-serif;">5.30pm
IST | 8.00pm SGT</span></p>
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<p><b><span
style="color:#434343;font-size:10pt;font-family:Arial,sans-serif;">Please
RSVP by Thursday, 11th March
2021</span></b><span
style="color:#434343;font-size:10pt;font-family:Arial,sans-serif;">,
and we'll send you a link to the YouTube
Livestream
before the session. </span></p>
</td>
<td
style="background-color:#4285F4;height:101.75pt;padding:14.4pt;overflow:hidden;">
<p align="center" style="text-align:center;"><span
style="color:black;"><a
href="https://forms.gle/MRqveW5qc6tC2toh7"
target="_blank" rel="noopener noreferrer"
data-auth="NotApplicable"><b><span
style="color:white;font-size:13pt;font-family:Arial,sans-serif;">RSVP
Here</span></b></a></span></p>
</td>
</tr>
<tr style="height:6.75pt;">
<td valign="top" colspan="2"
style="height:6.75pt;padding:0.75pt;overflow:hidden;">
</td>
</tr>
</tbody>
</table>
</div>
<p><b><span
style="color:#434343;font-family:Arial,sans-serif;">What
are you waiting for? We hope to see you (and your
application) soon!</span></b></p>
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<p><b><span
style="color:#434343;font-family:Arial,sans-serif;">Need
more info? </span></b><span
style="color:#434343;font-family:Arial,sans-serif;">Visit
</span><span style="color:black;"><a
href="https://buildyourfuture.withgoogle.com/scholarships/generation-google-scholarship-apac/"
target="_blank" rel="noopener noreferrer"
data-auth="NotApplicable"><span
style="font-family:Arial,sans-serif;">here</span></a></span>
</p>
<p><b><span
style="color:#434343;font-family:Arial,sans-serif;">Questions?</span></b><span
style="color:#434343;font-family:Arial,sans-serif;"> Reach
out to <a href="mailto:[email protected]"
target="_blank" rel="noopener noreferrer"
data-auth="NotApplicable">[email protected]</a></span>
</p>
</td>
</tr>
</tbody>
</table>
</div>
<p style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
</p>
<p align="center" style="text-align:center;"><span
style="color:#434343;font-size:10pt;font-family:Arial,sans-serif;padding:0;border:1pt none windowtext;"><img
data-imagetype="External"
src="https://lh5.googleusercontent.com/y8w6YAz9a3PwX5bS0UCxRmMvYxc2bfJq7yoRU_egY5zyNUYxH60kMF8pC3N4BvNGWRzZ2mnsc2Td4DZmG4_NNOexFEz11owhZJbQ8Ck5xGCMErqD0HJC_ZSPxjuqQgoxo2rDWpvq6w"
border="0" id="x__x0000_i1033"
style="width:47.24pt;height:14.99pt;"></span></p>
<p align="center" style="text-align:center;"><span
style="color:#999999;font-size:8pt;font-family:Arial,sans-serif;">If
you wish to no longer receive these emails, click </span><span
style="color:black;"><a
href="https://docs.google.com/forms/d/19G2_Rd77djAejwU3KyHQpdxvrGV_vZ5akDHHKFm__lU/edit"
target="_blank" rel="noopener noreferrer"
data-auth="NotApplicable"><span
style="font-size:8pt;font-family:Arial,sans-serif;">here</span></a></span><span
style="color:#999999;font-size:8pt;font-family:Arial,sans-serif;">
to unsubscribe.</span></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<p style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;"> </p>
</div>
</div>
</div>
</div>
<p style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;"><br>
</p>
<div>
<p style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;"> </p>
</div>
<p style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">-- </p>
<div>
<div>
<div class="_2Ypz6DjF0cnPXsnj_7roel" style="">
<table border="0" cellspacing="0" cellpadding="0"
style="max-width: 261pt; transform: scale(1, 1); transform-origin: left top;"
min-scale="0.8">
<tbody>
<tr>
<td style="padding:0 0 3.75pt 0;"></td>
</tr>
<tr>
<td style="padding:0;">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top"
style="padding:0 15pt 0 0;border-style:none solid none none;border-right-width:1pt;border-right-color:#D5D5D5;">
<p style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;"><img
data-imagetype="External"
src="https://lh3.googleusercontent.com/e0Xs5ITmmCpZlGky33Sr5v3ehiKEGNheaJuZnMszm2QVH5darVZgXVNUMRsPdp1wpUq_FsuxTP-eW7g8jprS6obB2MQTEFuXgPMEYcxZHaVUbnKHKm7FmjOMQkM9AcVmWb0-lL2PDRNb"
border="0" id="x__x0000_i1032" style="width:119.99pt;height:81.74pt;">
</p>
</td>
<td style="padding:0 0 0 15pt;">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="padding:0.75pt 0 3.75pt 0;">
<p style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;">
<b><span
style="color:#383A35;font-size:10pt;font-family:Arial,sans-serif;">Sadeep
Jayasumana</span></b></p>
</td>
</tr>
<tr>
<td style="padding:0 0 3.75pt 0;">
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;line-height:9.75pt;">
<span
style="color:#383A35;font-size:8.5pt;font-family:Arial,sans-serif;">Senior
Research Scientist</span>
</p>
</td>
</tr>
<tr>
<td style="padding:0 0 3.75pt 0;">
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;line-height:9.75pt;">
<span
style="color:#383A35;font-size:8.5pt;font-family:Arial,sans-serif;"><a
href="mailto:[email protected]" target="_blank"
rel="noopener noreferrer"
data-auth="NotApplicable">[email protected]</a></span>
</p>
</td>
</tr>
<tr>
<td style="padding:0 0 2.25pt 0;">
<p
style="font-size:11pt;font-family:Calibri,sans-serif;margin:0;line-height:9.75pt;">
<span
style="color:#0370F8;font-size:8.5pt;font-family:Arial,sans-serif;">+1
917 478 2197</span>
</p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- google ad -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- T ended the model here -->
<br><br>
<div class="row">
<div class="col-lg-7" data-aos="fade-up" data-aos-delay="200">
<h1>Leading the Way in AI Innovation: The Center of Excellence for AI at SLIIT</h1>
<h2 style="font-size: 20px">Inspire the next generation of AI innovators.</h2>
<br><br>
</div>
<div class="col-lg-5 d-flex align-items-center justify-content-center">
<img src="assets/img/cover3.jpg" alt="Cover Image" style="max-width: 100%; height: auto;">
</div>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Us Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About Us</h2>
</div>
<p style="text-align: center;">
The Center of Excellence for AI (COE-AI) research group is one of the leading research groups in the Faculty of Computing at the Sri Lanka Institute of Information Technology (SLIIT). Focused on pioneering advancements, COE-AI brings together top researchers and innovators to drive impactful discoveries in AI and shape the future of technology.
</p><br>
<div class="row content">
<div class="col-lg-6">
<ul>
<li><i class="ri-check-double-line"></i> VISION</li>
</ul>
<p style="text-align: justify;">To be a leading education center in artificial intelligence and research, empowering students to become innovators and leaders who drive the responsible and impactful integration of AI into society.</p>
</div>
<div class="col-lg-6 pt-4 pt-lg-0">
<ul>
<li><i class="ri-check-double-line"></i> MISSION</li>
</ul>
<p style="text-align: justify;"> Empower students with cutting-edge AI knowledge, fostering a collaborative research environment that addresses real-world challenges. SLIIT is committed to developing ethical and visionary AI leaders who bridge theory and practice through hands-on learning and strong industry connections, preparing them to drive impactful and responsible AI advancements in academia, industry, and society.</p>
<!-- <a href="aboutus.html" class="btn-learn-more" style="margin-left: 50%">Read More</a> -->
</div>
</div>
</div>
</section><!-- End About Us Section -->
<!-- ======= publications ======= -->
<section id="publications" class="why-us section-bg">
<div class="container-fluid" data-aos="fade-up">
<div class="row">
<div class="col-lg-7 d-flex flex-column justify-content-center align-items-stretch order-2 order-lg-1">
<div class="content">
<div class="section-title">
<h2>Research Publications</h2>
</div>
</div>
<div class="accordion-list">
<ul>
<li>
<a data-toggle="collapse" class="collapse" href="#accordion-list-1">We already have a list of
publications of our team members in the Google Scholar profile. You can find out from there. <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-1" class="collapse show" data-parent=".accordion-list">
<p>
<button type="button"
onclick="window.location.href='https://scholar.google.com/citations?user=VYNyCnMAAAAJ&hl=en'"
class="btn btn-info" style="float: right;">View publications</button>
</p>
<br><br>
</div>
</li>
</ul>
</div>
</div>
<div class="col-lg-5 align-items-stretch order-1 order-lg-2 img"
style='background-image: url("assets/img/4.png");' data-aos="zoom-in" data-aos-delay="150"> </div>
</div>
</div>
</section><!-- End Why Us Section -->
<!-- ======= projects Section ======= -->
<section id="research" class="portfolio">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Ongoing Research Projects</h2>
</div>
<ul id="portfolio-flters" class="d-flex justify-content-center" data-aos="fade-up" data-aos-delay="100">
<li data-filter="*" class="filter-active">ALL</li>
<li data-filter=".filter-inter">COEAI Group</li>
<li data-filter=".filter-ubicomp">CDAP</li>
</ul>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-4 col-md-6 portfolio-item filter-inter">
<div class="portfolio-img"><img src="assets/img/projects/chat.jpg" class="img-fluid"
alt="" style="width: 100%; height: 200px; object-fit: cover;"></div>
<div class="portfolio-info">
<h4>Personalized Tutor Chatbots </h4>
<p>Assist students in their studies</p>
<a href="education.html" target="_blank" class="details-link"
title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-inter">
<div class="portfolio-img"><img src="assets/img/projects/exam.png" class="img-fluid" alt=""
style="width: 100%; height: 200px; object-fit: cover;"></div>
<div class="portfolio-info">
<h4>Exam-Based Chatbots</h4>
<p>Specialize in generating multiple-choice and essay questions</p>
<a href="education.html" target="_blank" class="details-link" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-inter">
<div class="portfolio-img"><img src="assets/img/projects/psy.jpg" class="img-fluid" alt=""
style="width: 100%; height: 200px; object-fit: cover;">
</div>
<div class="portfolio-info">
<h4>GenAI Psychology Project</h4>
<p>Enhance psychological well-being, improve decision-making processes.</p>
<a href="psychology.html" target="_blank" class="details-link" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-inter">
<div class="portfolio-img"><img src="assets/img/projects/business.jpg" class="img-fluid" alt=""
style="width: 100%; height: 200px; object-fit: cover;"></div>
<div class="portfolio-info">
<h4>GenAI Business Project</h4>
<p>Assist students in their studies</p>
<a href="" target="_blank" class="details-link" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-ubicomp">
<div class="portfolio-img"><img src="assets/img/projects/cdap/autograder.jpg" class="img-fluid" alt=""
style="width: 100%; height: 200px; object-fit: cover;"></div>
<div class="portfolio-info">
<h4>Autograder</h4>
<p>GenAI in Education RP Project</p>
<a href="" target="_blank" class="details-link" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-ubicomp">
<div class="portfolio-img"><img src="assets/img/projects/cdap/questions.png" class="img-fluid" alt=""
style="width: 100%; height: 200px; object-fit: cover;"></div>
<div class="portfolio-info">
<h4>Question Generation</h4>
<p>GenAI in Education RP Project</p>
<a href="" target="_blank" class="details-link" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-ubicomp">
<div class="portfolio-img"><img src="assets/img/projects/cdap/chatbot.png" class="img-fluid" alt=""
style="width: 100%; height: 200px; object-fit: cover;"></div>
<div class="portfolio-info">
<h4>Chatbots</h4>
<p>GenAI in Education RP Project</p>
<a href="" target="_blank" class="details-link" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-inter">
<div class="portfolio-img"><img src="assets/img/projects/eng.jpg" class="img-fluid" alt=""
style="width: 100%; height: 200px; object-fit: cover;">
</div>
<div class="portfolio-info">
<h4>English Intervention Program</h4>
<p>To support students with the English language</p>
<a href="education.html" target="_blank" class="details-link" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-inter">
<div class="portfolio-img"><img src="assets/img/projects/lolc.jpg" class="img-fluid" alt=""
style="width: 100%; height: 200px; object-fit: cover;"></div>
<div class="portfolio-info">
<h4>LOLC Projects</h4>
<p>Ongoing</p>
<a href="" target="_blank" class="details-link" title="More Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Services Section ======= -->
<!-- <section id="services" class="services section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Upcoming workshops</h2>
<p>ICAC 2024 workshops</p>
</div>
<div class="row justify-content-center">
<div class="col-xl-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box">
<div class="icon"><i class="bx bx-file"></i></div>
<h4><a href="">Exploring the use of Spiking Neural Networks in AI Applications</a></h4>
<p style="text-align: justify;">
Artificial Spiking Neural Networks (ASNNs), inspired by the brain's efficiency in operating on just 20 watts of power, aim to emulate biological learning through precisely timed spikes. This workshop explores leveraging brain-like plasticity mechanisms, such as Spike Time Dependent Plasticity and Intrinsic Plasticity, to enhance ASNN performance.
<br><br>
</p>
<img class="zoomableImg" src="assets/img/Workshop1.png" alt="Workshop Poster" style="width:100%; cursor:pointer;">
</div>
</div>
<div class="col-xl-4 col-md-6 d-flex align-items-stretch mt-4 mt-xl-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bx bx-file"></i></div>
<h4><a href="">Tiny Machine Learning (TinyML) in Action</a></h4>
<p style="text-align: justify;">
This hands-on Tiny Machine Learning (TinyML) workshop focuses on embedding intelligence into resource-constrained devices, covering techniques such as quantization, pruning, and knowledge distillation to optimize models for microcontrollers like the Arduino Nano BLE. The session will take you through end-to-end TinyML applications, offering live demonstrations.
<br><br>
</p>
<img class="zoomableImg" src="assets/img/Workshop2.png" alt="Workshop Poster" style="width:100%; cursor:pointer;">
</div>
</div>
<div class="col-xl-4 col-md-6 d-flex align-items-stretch mt-4 mt-xl-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bx bx-file"></i></div>
<h4><a href="">Unleashing the Power of Generative AI in Research</a></h4>
<p style="text-align: justify;">
This engaging workshop focuses on practical applications and actionable strategies for seamlessly integrating cutting-edge AI tools into your research process. Gain valuable insights and hands-on experience to: Enhance your research workflows, Maximize the potential of GenAI in your academic pursuits. Don’t miss this opportunity to revolutionize the way you conduct research.
<br><br>
</p>
<img class="zoomableImg" src="assets/img/workshop3.png" alt="Workshop Poster" style="width:100%; cursor:pointer;">
</div>
</div>
</div>
</div>
<br>
<!-- <button type="button" onclick="window.location.href='seminars.html'" class="btn btn-info" style="float: right;">View more workshops</button> -->
</div>
</section> -->
<!-- End Services Section -->
<!-- ======= Cta Section ======= -->
<section id="cta" class="cta">
<div class="container" data-aos="zoom-in">
<div class="row">
<div class="col-lg-12 text-center text-lg-left">
<h3>"Great ideas can come from anyone, anywhere. It’s about creating an environment where those ideas can flourish."</h3>
<p style="text-align: justify;">
Jensen Huang <br/>
CEO of Nvidia
</p><br>
<!-- <button type="button" onclick="window.location.href='hci_module.html'" class="btn btn-info"
style="float: right;">View more</button> -->
</div>
</div>
</section><!-- End Cta Section -->
<script>
document.addEventListener('DOMContentLoaded', function () {
// Get all images with the class 'zoomableImg'
var images = document.querySelectorAll('.zoomableImg');
var currentlyZoomedImg = null; // Track the currently zoomed image
images.forEach(function (img) {
img.addEventListener('click', function (event) {
// Reset previously zoomed image if it exists
if (currentlyZoomedImg && currentlyZoomedImg !== this) {
currentlyZoomedImg.style.transform = '';
currentlyZoomedImg.style.transition = '';
}
// Zoom the clicked image or reset if it's already zoomed
if (currentlyZoomedImg === this) {
this.style.transform = '';
this.style.transition = '';
currentlyZoomedImg = null; // Reset the currently zoomed image
} else {
this.style.transform = 'scale(1.5)';
this.style.transition = 'transform 0.25s ease';
currentlyZoomedImg = this; // Set the currently zoomed image
}
event.stopPropagation(); // Prevent event from bubbling up to document
});
});
// Add event listener to the document to reset any zoomed image on outside click
document.addEventListener('click', function () {
if (currentlyZoomedImg) {
currentlyZoomedImg.style.transform = '';
currentlyZoomedImg.style.transition = '';
currentlyZoomedImg = null; // Reset the currently zoomed image
}
});
});
</script>