-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
2387 lines (2152 loc) · 106 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 name="viewport" content="width=device-width, initial-scale=1.0" />
<title> CISC-2024 | International Conference on Computational Intelligence and Smart Communication</title>
<link rel="icon" href="assets/images/logo/CISC-2024-logo-small.png" type="image/x-icon" />
<!-- Website Meta Tags -->
<meta name="description" content="CISC-2024 is the first series of an annual International Conference on Computational Intelligence and Smart Communication organized by SMVITM, Bantakal, Udupi, Karnataka, India. Join us on 20th and 21st December 2024 to share experiences and exchange ideas on the latest developments in soft computation, AI systems, and smart communication." />
<meta name="keywords" content="CISC-2024, cise 2024, conference, CISC 2024, Computational Intelligence, Smart Communication, International Conference, Shri Madhwa Vadiraja Institute of Technology and Management, SMVITM, Bantakal, Udupi, Karnataka, Soft Computation, Artificial Intelligence, Smart Communication, Digital Revolution, IEEE Conference, Research, Academicians, Engineers, Industry Fraternity, Cloud Computing, IoT, AI, Machine Learning, Data Analytics, Image Processing, Computer Vision, Network Security, Blockchain, VLSI, Microelectronics, Control and Automation, IEEE Publishing, Technical Education, Conference Submission" />
<meta name="author" content="Anuswar" />
<link rel="canonical" href="index.html" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="CISC-2024 | International Conference on Computational Intelligence and Smart Communication">
<meta property="og:description" content="Join us at CISC-2024 to explore the latest trends and developments in computational intelligence and smart communication.">
<meta property="og:image" content="assets/images/logo/CISC-2024-logo-small.png">
<meta property="og:url" content="index.html">
<meta property="og:type" content="website">
<meta property="og:site_name" content="CISC-2024">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="CISC-2024 | International Conference on Computational Intelligence and Smart Communication">
<meta name="twitter:description" content="Join us at CISC-2024 to explore the latest trends and developments in computational intelligence and smart communication.">
<meta name="twitter:image" content="assets/images/logo/CISC-2024-logo-small.png">
<!-- Robots Meta Tag -->
<meta name="robots" content="index, follow" />
<!-- Mobile Web App Capable Meta Tag -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="HandheldFriendly" content="true">
<!-- Apple Touch Icon Link Tag -->
<link rel="apple-touch-icon" href="assets/images/logo/CISC-2024-logo-small.png">
<!-- Data breadcrumbs -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://sode-edu.in/cisc/"
},
{
"@type": "ListItem",
"position": 2,
"name": "About",
"item": "https://sode-edu.in/cisc/#about"
},
{
"@type": "ListItem",
"position": 3,
"name": "Committee",
"item": "https://sode-edu.in/cisc/#committee"
},
{
"@type": "ListItem",
"position": 4,
"name": "Call for Papers",
"item": "https://sode-edu.in/cisc/#call_for_papers"
},
{
"@type": "ListItem",
"position": 5,
"name": "Schedule",
"item": "https://sode-edu.in/cisc/#schedule"
},
{
"@type": "ListItem",
"position": 6,
"name": "Submit Paper",
"item": "https://sode-edu.in/cisc/#submission"
},
{
"@type": "ListItem",
"position": 7,
"name": "Registration",
"item": "https://sode-edu.in/cisc/#registration"
},
{
"@type": "ListItem",
"position": 8,
"name": "Download",
"item": "https://sode-edu.in/cisc/#downloads"
},
{
"@type": "ListItem",
"position": 9,
"name": "Contact",
"item": "https://sode-edu.in/cisc/#contact"
}
]
}
</script>
<!-- Structured Data -->
<script type="application/ld+json">
{
"conference": {
"@context": "https://schema.org",
"@type": "Event",
"name": "CISC-2024",
"full_name": "International Conference on Computational Intelligence and Smart Communication",
"description": "CISC-2024 is the first series of an annual International Conference on Computational Intelligence and Smart Communication organized by Shri Madhwa Vadiraja Institute of Technology and Management (SMVITM), Bantakal, Udupi, Karnataka, India. CISC-2024 shall bring together researchers, academicians, engineers, and the industrial fraternity to share their experiences and exchange ideas on the latest developments in the fields of soft computation, artificial intelligent systems, and smart communication. The digital revolution has had a deep impact on the way people live, work, and communicate. The purpose of CISC-2024 is to discuss the role of computational intelligence in growth as well as the shaping of society. The international conference CISC-2024 offers a unique opportunity to gain insight into state-of-the-art technology in multi-disciplinary areas and promote scientific growth.",
"startDate": "2024-12-20",
"endDate": "2024-12-21",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/MixedEventAttendanceMode",
"dates": {
"Submission_of_Full_length_paper": "15th November 2024",
"Intimation_of_Acceptance": "30th November 2024",
"Early_Bird_Registration": "10th December 2024",
"Late_Registration": "15th December 2024",
"conference": "20th & 21th December 2024"
},
"venue": {
"name": "Shri Madhwa Vadiraja Institute of Technology and Management",
"address": "Vishwothamanagara, Bantakal, Udupi - 574115",
"phone": "+91 9611615001",
"email": "[email protected]"
},
"website": "https://sode-edu.in/cisc",
"submission_link": "https://cmt3.research.microsoft.com/User/Login?ReturnUrl=%2FCISC2024",
"template_link": "https://www.ieee.org/conferences/publishing/templates.html",
"brochure_download_link": "https://sode-edu.in/cisc/assets/pdf/CISC_2024-brochure.pdf",
"topics": [
"Cloud Computing and IoT",
"AI, Machine Learning and Data Analytics",
"Modelling and Computational Techniques",
"Image Processing and Computer Vision",
"Health Informatics and Biomedical Systems",
"Network Security and Blockchain",
"Next-generation Communication",
"VLSI and Microelectronics",
"Control and Automation"
],
"sameAs": [
"https://twitter.com/SmvitM",
"https://www.facebook.com/officialsmvitm",
"https://www.linkedin.com/company/shri-madhwa-vadiraja-institute-of-technology-and-management/",
"https://www.instagram.com/smvitm.sode/",
"https://www.youtube.com/SMVITMBANTAKAL"
],
"contactPoint": [
{
"@type": "ContactPoint",
"contactType": "Event Inquiry",
"email": "[email protected]",
"telephone": "+91 9611615001"
},
{
"@type": "ContactPoint",
"contactType": "CSE Department Inquiry",
"name": "Dr. Soumya J. Bhat",
"email": "[email protected]",
"telephone": "+91 9886359431"
},
{
"@type": "ContactPoint",
"contactType": "ECE Department Inquiry",
"name": "Dr. Guruprasad",
"telephone": "+91 9482098406",
"email": "[email protected]"
}
],
"committee": {
"chief_patrons": [
{
"name": "His Holiness Shri Shri Vishwavallabha Theertha Swamiji",
"position": "Shri Sode Vadiraja Mutt, Udupi & President, SSVMET"
},
{
"name": "Shri. P. Srinivas Thantry",
"position": "Vice President, SSVMET, Udupi"
},
{
"name": "Shri. Rathnakumar",
"position": "Secretary, SSVMET, Udupi"
}
],
"patrons": [
{
"name": "Dr. Thirumaleshwara Bhat",
"position": "Principal, SMVITM"
},
{
"name": "Dr. Ganesh Aithal",
"position": "Vice Principal, SMVITM"
}
],
"general_chairs": [
{
"name": "Dr. Nagaraj Bhat",
"position": "Dean (Academics), SMVITM"
},
{
"name": "Dr. Soumya J. Bhat",
"position": "HoD, Dept. of CSE, SMVITM"
},
{
"name": "Dr. Guruprasad",
"position": "HoD, Dept. of ECE, SMVITM"
},
{
"name": "Dr. Parameshachari B. D.",
"position": "Professor, NMIT, Bengaluru"
},
{
"name": "Ms. Rekha P.",
"position": "Senior Virtualization Engineer, ANZ bank New Zealand"
}
],
"technical_program_chairs": [
{
"name": "Dr. Bharti Panjwani",
"position": "Associate Professor, Dept. of CSE, SMVITM"
},
{
"name": "Dr. Shilpa Kamath A.",
"position": "Associate Professor, Dept. of ECE, SMVITM"
},
{
"name": "Dr. Renita Sharon Monis",
"position": "Associate Professor, Dept. of ECE, SMVITM"
},
{
"name": "Dr. Yashwanth N",
"position": "MIT, Manipal"
},
{
"name": "Dr. Ashwini V. R.",
"position": "CEC, Mangaluru"
},
{
"name": "Mr. Vinod Bhagwat",
"position": "IBM Technologies, Bengaluru"
}
],
"publication_chairs": [
{
"name": "Mr. Nagaraj Rao",
"position": "HOD, Dept. of AI-ML, SMVITM, Banatakal"
},
{
"name": "Dr. Lolita Priya Castelino",
"position": "Associate Professor Dept. of Mathematics, SMVITM"
},
{
"name": "Dr. Sadananda L.",
"position": "Associate Professor, Dept. CSE, SMVITM"
},
{
"name": "Dr. Vijay Mohan",
"position": "MIT Manipal"
},
{
"name": "Dr. M. Devanathan",
"position": "REVA, Bengaluru"
}
],
"international_advisory_committee": [
{
"name": "Dr. Kassem Saleh",
"position": "Professor, Kuwait University"
},
{
"name": "Dr. Kaustubh Salvi",
"position": "University of Alabama, USA"
},
{
"name": "Dr. Avinash Aithal",
"position": "UKRI Science Engineering And Technology"
},
{
"name": "Dr. Ankit Nayak",
"position": "University of Hong Kong"
},
{
"name": "Dr. John Adeoye",
"position": "University of Hong Kong"
},
{
"name": "Dr. Kirti Seth",
"position": "INHA University, Tashkent, Uzbekistan"
},
{
"name": "Dr. Nilesh Goel",
"position": "BITS, Dubai Campus"
},
{
"name": "Dr. Sazia Hasan",
"position": "BITS, Dubai Campus"
},
{
"name": "Dr. Shekhar Saxena",
"position": "NTNU, Norway"
},
{
"name": "Mr. Jagadish Nayak",
"position": "BITS, Dubai Campus"
}
],
"national_advisory_committee": [
{
"name": "Dr. Abhishek Appaji",
"position": "Treasurer, IEEE Bangalore Section"
},
{
"name": "Dr. Mohit P. Tahiliani",
"position": "NITK, IEEE Mangalore Subsection"
},
{
"name": "Dr. Sathish Kumar",
"position": "MIT, Manipal"
},
{
"name": "Dr. Ananthkrishna",
"position": "MIT, Manipal"
},
{
"name": "Dr. Indira K. P",
"position": "MIT, Manipal"
},
{
"name": "Dr. B. R. Shankar",
"position": "NITK, Surathkal"
},
{
"name": "Dr. Nagaraj N. Katagi",
"position": "MIT, Manipal"
},
{
"name": "Prof. Vijander Singh",
"position": "NSUT, Delhi"
},
{
"name": "Prof. Shyama Kant Jha",
"position": "NSUT, Delhi"
},
{
"name": "Dr. Siddhartha S. Satapathy",
"position": "Tezpur University, Assam"
},
{
"name": "Dr. Ram Mohan Reddy",
"position": "NITK, Surathkal"
},
{
"name": "Dr. Karunakar A. Kotegar",
"position": "MIT, Manipal"
},
{
"name": "Dr. D.V.Kamat",
"position": "MIT, Manipal"
},
{
"name": "Dr. Vishal Goar",
"position": "Govt. Engineering College, Bikaner"
},
{
"name": "Dr. Roop P. Mahanta",
"position": "Tezpur University, Assam"
},
{
"name": "Dr. Rajesh Kumar",
"position": "NIT, Jamshedpur"
},
{
"name": "Dr. Rajdeep Chakravorty",
"position": "BITSP, Pilani"
}
],
"local_organizing_committee": [
{
"name": "Dr. Mahesh Reddy",
"position": "Professor, Dept. of ECE, SMVITM"
},
{
"name": "Dr. Gururaj B.",
"position": "Professor, Dept. of CSE, SMVITM"
},
{
"name": "Dr. Avinash Shetty",
"position": "Associate Professor, Dept. of ECE, SMVITM"
},
{
"name": "Dr. Shruthi Shastry",
"position": "Associate Professor, Dept. of CSE, SMVITM"
},
{
"name": "Dr. Asha Rai",
"position": "Assistant Professor, Dept. of CSE, SMVITM"
},
{
"name": "Dr. Shweta Shetty",
"position": "Assistant Professor, Dept. of CSE, SMVITM"
},
{
"name": "Mr. Manju Kumar",
"position": "Assistant Professor, Dept. of ECE, SMVITM"
}
]
}
}
}
</script>
<!-- manifest -->
<link rel="manifest" href="manifest.json">
<!-- Stylesheets -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<link href="assets/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/style.css" />
<!-- External Scripts -->
<script defer src="https://unpkg.com/scrollreveal"></script>
<script defer src="https://unpkg.com/[email protected]/dist/scrollreveal.min.js"></script>
<script defer src="https://hammerjs.github.io/dist/hammer.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script defer src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
<script defer src="js/script.js"></script>
</head>
<body>
<!--==================== PRELOADER ====================-->
<section id="spinner" class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner"></div>
</section>
<!--=============== TOP BAR ===============-->
<section class="container-fluid bg-dark px-5 d-none d-lg-block top_bar" id="home">
<div class="row gx-0">
<div class="left_anim col-lg-8 text-center text-lg-start mb-2 mb-lg-0">
<div class="d-inline-flex align-items-center" style="height: 45px">
<small class="me-3 text-light">
<i class="fa fa-map-marker-alt me-2"></i>
<a class="top-bar" href="https://maps.app.goo.gl/EnfFBYmdF53Vrv998" target="_blank">SMVITM, Vishwothamanagara, Bantakal</a>
</small>
<small class="me-3 text-light">
<i class="fa fa-phone-alt me-2"></i>
<a class="top-bar" href="tel:+919611615001">Mob: +91 96116 15001</a>
</small>
<small class="text-light d-flex align-items-center">
<i class="fa fa-envelope-open me-2"></i>
<a class="top-bar" href="mailto:[email protected]">[email protected]</a>
</small>
</div>
</div>
<div class="col-lg-4 text-center text-lg-end">
<div class="d-inline-flex align-items-center" style="height: 45px">
<a target="_blank" class="btn-primary btn-lg me-2 btn btn-sm btn-light btn-sm-square rounded-circle me-2 d-flex justify-content-center align-items-center" href="https://twitter.com/SmvitM" style="background-color: #000000; border-color: #000000">
<i class="fab fa-twitter fw-normal text-white"></i>
</a>
<a target="_blank" class="btn-primary btn-lg me-2 btn btn-sm btn-light btn-sm-square rounded-circle me-2 d-flex justify-content-center align-items-center" href="https://www.facebook.com/officialsmvitm" style="background-color: #4267b2; border-color: #4267b2">
<i class="fab fa-facebook-f fw-normal text-white"></i>
</a>
<a target="_blank" class="btn btn-primary btn-lg me-2 btn-sm btn-light btn-sm-square rounded-circle me-2 d-flex justify-content-center align-items-center" href="https://www.linkedin.com/company/shri-madhwa-vadiraja-institute-of-technology-and-management/" style="background-color: #0077b5; border-color: #0077b5">
<i class="fab fa-linkedin-in fw-normal text-white"></i>
</a>
<a target="_blank" class="btn btn-primary btn-lg me-2 btn-sm btn-light btn-sm-square rounded-circle me-2 d-flex justify-content-center align-items-center" href="https://www.instagram.com/smvitm.sode/" style="background-color: #e4405f; border-color: #e4405f">
<i class="fab fa-instagram fw-normal text-white"></i>
</a>
<a target="_blank" class="btn btn-primary btn-lg me-2 btn-sm btn-light btn-sm-square rounded-circle d-flex justify-content-center align-items-center" href="https://www.youtube.com/SMVITMBANTAKAL" style="background-color: #ff0000; border-color: #ff0000">
<i class="fab fa-youtube fw-normal text-white"></i>
</a>
</div>
</div>
</div>
</section>
<!--=============== HEADER ===============-->
<section id="header">
<header class="header container-fluid">
<div class="nav container-fluid d-flex align-items-center justify-content-between">
<!-- Main Logo -->
<a href="index.html" class="header-container logo d-flex align-items-center">
<div class="d-flex justify-content-center align-items-center">
<img src="assets/images/logo/CISC-2024.png" alt="CISC-2024 logo" class="img-fluid main-logo" />
</div>
</a>
<!-- Navbar Links -->
<div class="non navbar-nav py-0 d-flex flex-row gap-3">
<a href="#home" class="nav-item nav-link">Home</a>
<a href="#about" class="nav-item nav-link">About</a>
<a href="#committee" class="nav-item nav-link">Committee</a>
<a href="#call_for_papers" class="nav-item nav-link">Call for Papers</a>
<a href="#schedule" class="nav-item nav-link">Schedule</a>
<a href="#submission" class="nav-item nav-link">Submit Paper</a>
<a href="#registration" class="nav-item nav-link">Registration</a>
<a href="#downloads" class="nav-item nav-link">Download</a>
<a href="#contact" class="nav-item nav-link">Contact</a>
</div>
<!-- Navigation Icon -->
<div class="nav-icons d-flex align-items-center justify-content-center">
<span class="icon2">
<i class="fa fa-bars menuBtn"></i>
</span>
</div>
</div>
</header>
<!-- Menu -->
<div id="menu" class="menu container-fluid">
<nav class="nav-container">
<div>
<br />
<div class="nav-list">
<div class="nav-items">
<h3 class="nav-subtitle">Quick links</h3>
<a href="#home" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-home nav-icon"></i>
<span class="nav-name">Home</span>
</a>
<a href="#about" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-book nav-icon"></i>
<span class="nav-name">About</span>
</a>
<a href="#committee" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-users nav-icon"></i>
<span class="nav-name">Committee</span>
</a>
<a href="#call_for_papers" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-file-alt nav-icon"></i>
<span class="nav-name">Call for Papers</span>
</a>
<a href="#schedule" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-calendar-alt nav-icon"></i>
<span class="nav-name">Schedule</span>
</a>
<a href="#submission" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-upload nav-icon"></i>
<span class="nav-name">Submit Paper</span>
</a>
<a href="#registration" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-clipboard-list nav-icon"></i>
<span class="nav-name">Registration</span>
</a>
<a href="#downloads" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-download nav-icon"></i>
<span class="nav-name">Download</span>
</a>
<a href="#contact" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-envelope nav-icon"></i>
<span class="nav-name">Contact</span>
</a>
</div>
</div>
<br />
<div class="nav-list">
<div class="nav-items">
<h3 class="nav-subtitle">Policies</h3>
<a target="_blank" href="pages/terms-and-conditions.html" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-file-contract nav-icon"></i>
<span class="nav-name">Terms and Conditions</span>
</a>
<a target="_blank" href="pages/Privacy-Policy.html" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-user-shield nav-icon"></i>
<span class="nav-name">Privacy Policy</span>
</a>
<a target="_blank" href="pages/sitemap.html" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-sitemap nav-icon"></i>
<span class="nav-name">Sitemap</span>
</a>
</div>
</div>
<br />
<div class="nav-list">
<div class="nav-items">
<h3 class="nav-subtitle">Contact</h3>
<a href="tel:+919611615001" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-phone-alt nav-icon"></i>
<span class="nav-name">Mob: +91 96116 15001</span>
</a>
<a href="mailto:[email protected]" class="nav-link navlink d-flex align-items-center">
<i class="fa fa-envelope-open nav-icon"></i>
<span class="nav-name">[email protected]</span>
</a>
</div>
</div>
</div>
</nav>
</div>
<!-- Overlay -->
<div id="overlay" class="overlay container-fluid"></div>
</section>
<!--=============== BANNER ===============-->
<section class="slider-banner" id="home">
<div class="swiper slider mySwiper">
<div class="swiper-wrapper">
<!-- Slide 1 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-1.jpg" />
</div>
<!-- Slide 2 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-2.jpg" />
</div>
<!-- Slide 3 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-3.jpg" />
</div>
<!-- Slide 4 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-4.jpg" />
</div>
<!-- Slide 5 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-5.jpg" />
</div>
<!-- Slide 6 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-6.jpg" />
</div>
<!-- Slide 7 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-7.jpg" />
</div>
<!-- Slide 7 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-7.jpg" />
</div>
<!-- Slide 8 -->
<div class="swiper-slide slider-blank">
<img src="assets/images/home/smvitm-8.jpg" />
</div>
</div>
<!-- Carousel Caption -->
<div class="carousel-caption">
<div style="margin-top: 80px;" class="p-33">
<img src="assets/images/logo/sponsor-2.jpg" width="70" height="60" style="margin-bottom: 30px; margin-right: 20px;">
<img src="assets/images/logo/college-logo.png" width="60" height="60" style="margin-bottom: 30px;">
<h4 class="text-uppercase mb-3">
Computational Intelligence and Smart Communication
</h4>
<h1 class="display-1 mb-md-4">CISC-2024</h1>
<h2 class="mb-3">20th and 21st December 2024</h2>
<a href="#call_for_papers" class="btn btn-primary py-md-3 px-md-5" id="callForPapersLink" style="margin: 10px">Call for papers</a>
<a target="_blank" href="https://cmt3.research.microsoft.com/CISC2024." class="btn btn-outline-light py-md-3 px-md-5">Submit Papers</a>
</div>
</div>
</div>
</section>
<!--==================== ABOUT ====================-->
<section class="container-fluid py-5 about" id="about">
<div class="container py-5">
<div class="section-title text-center position-relative pb-3 mb-5 mx-auto" style="max-width: 800px">
<h1 class="fw-bold text-primary text-uppercase">About Us</h1>
<h4 class="mb-0">Computational Intelligence and Smart Communication - 2024</h4>
<h6 class="mb-0">
"Trends and Developments in Soft Computation, Intelligent Systems
and Smart Communication: Pathways to Future"
</h6>
</div>
<div class="container-fluid" style="background-size: cover; background-position: center; background-color: #ffffff; max-width: 1300px; border-radius: 10px; padding: 20px;">
<!-- container 1 -->
<div class="container py-5">
<div class="row align-items-center g-5">
<div class="col-lg-7 p-lg-4 about-text text-center">
<h1 class="mb-3"><b>ABOUT SMVITM</b></h1>
<p class="mb-4" style="text-align: justify; line-height: 1.6">
Established in the year 2010, under the aegis of Shri Sode
Vadiraja Mutt Education Trust, Udupi, Shri Madhwa Vadiraja
Institute of Technology & Management (SMVITM) has emerged
as a promising institution in the region. With its highly motivated
and qualified faculty, excellent infrastructure and distinctive
learner-centric facilities, the institute has become the most
sought after engineering institute in the region. Adding a
feather to its cap, SMVITM, was accredited by NAAC with A-grade.
<br /><br />
Admiring the objective of providing valued-added and holistic
engineering education to the needy students of rural belt at
affordable cost, former President Dr. APJ Abdul Kalam made a
prestigious visit to the college in 2014, and interacted with the
students. Many other eminent personalities too have visited the
college and appreciated its dedication towards education and
research.
</p>
</div>
<div class="col-lg-5 about-image text-center d-none d-lg-block">
<div class="polaroid polaroid-left">
<img class="polaroid-image" src="assets/images/about/about-1.jpg" alt="About SMVITM" />
<div class="caption">SMVITM Campus</div>
</div>
</div>
</div>
</div>
<!-- container 2 -->
<div class="container py-5">
<div class="row align-items-center g-5">
<!-- For larger devices (lg, xl), show the image -->
<div class="col-lg-5 d-flex justify-content-center about-image text-center d-none d-lg-block">
<div class="polaroid">
<img class="polaroid-image" src="assets/images/about/about-2.jpg" alt="CISC 2024" />
<div class="caption">CISC 2024 Conference</div>
</div>
</div>
<!-- For all devices, including smaller ones, show the text -->
<div class="col-lg-7 about-text text-center p-lg-4">
<div class="row g-5">
<div class="col-lg-12 text-center">
<h1 class="mb-2"><b>ABOUT CISC-2024</b></h1>
</div>
</div>
<p class="mb-4" style="text-align: justify; line-height: 1.6">
CISC-2024 is the inaugural event in an annual series of
International Conferences on Computational Intelligence and
Smart Communication, organized by Shri Madhwa Vadiraja
Institute of Technology and Management (SMVITM), Bantakal,
Udupi, Karnataka, India. CISC-2024 aims to bring together
researchers, academicians, engineers, and industry
professionals to share their experiences and exchange ideas on
the latest developments in the fields of soft computation,
artificial intelligence systems, and smart communication.
<br /><br />
The digital revolution has profoundly impacted how people
live, work, and communicate. The purpose of CISC-2024 is to
discuss the role of computational intelligence in growth and
the shaping of society. This international conference offers a
unique opportunity to gain insights into the architecture and
applications of futuristic technology across multidisciplinary
areas and promote scientific growth.
</p>
</div>
</div>
</div>
<!-- container 3 -->
<div class="container py-5">
<div class="row align-items-center g-5">
<!-- Text Section -->
<div class="col-lg-7 p-lg-4 about-text">
<h1 class="mb-3 text-center"><b>ABOUT SYMPOSIUM</b></h1>
<p style="text-align: justify; line-height: 1.8;">
A student symposium, held as part of an CISC, offers a unique platform
for young scholars to showcase their research, exchange ideas, and
engage with experts in their fields. Such events foster intellectual
growth, promote interdisciplinary collaboration, and provide networking
opportunities with peers and professionals. Participants present
papers, posters, and innovative projects, receiving valuable feedback
to refine their work. These symposia also encourage critical thinking,
public speaking skills, and exposure to global academic trends. By
engaging in discussions and workshops, students gain insights into
emerging challenges and advancements, enriching their academic journey
and preparing them for future career endeavors.
</p>
<!-- Button Section -->
<div class="d-flex justify-content-start">
<a href="https://sode-edu.in/student_symposium/" class="btn btn-outline-dark py-2 px-4" style="border-radius: 20px; font-weight: bold;">
Student Symposium
</a>
</div>
</div>
<!-- Image Section -->
<div class="col-lg-5 about-image text-center d-none d-lg-block">
<div class="polaroid polaroid-left">
<img class="polaroid-image img-fluid rounded" src="assets/images/about/about-3.jpg" alt="About SMVITM" />
<div class="caption text-center mt-2">ABOUT SYMPOSIUM</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==================== COMMITTEE ====================-->
<section class="container-fluid py-5" id="committee">
<div class="container py-5">
<div class="section-title text-center position-relative pb-3 mb-5 mx-auto" style="max-width: 800px">
<h1 class="fw-bold text-primary text-uppercase">
Organizing Committee
</h1>
<h4 class="mb-0"></h4>
</div>
<!-- card container -->
<div class="row committee-container">
<!-- card 1 -->
<div class="col-md-4 committee-item top-anim">
<div class="service-icon">
<i class="fa fa-shield-alt text-blue"></i>
</div>
<h4 class="mb-3">Chief Patrons</h4>
<ul class="a">
<li><b>• His Holiness Shri Shri Vishwavallabha Theertha Swamiji</b></li>
<li>President, SSVMET, Udupi and Chairman Governing Council SMVITMT</li>
<li><b>• Shri. P. Srinivas Thantry</b></li>
<li>Vice President, SSVMET, Udupi</li>
<li><b>• Shri. Rathnakumar</b></li>
<li>Secretary, SSVMET, Udupi</li>
</ul>
</div>
<!-- card 2 -->
<div class="col-md-4 committee-item top-anim">
<div class="service-icon">
<i class="fa fa-shield-alt text-blue"></i>
</div>
<h4 class="mb-3">Patrons</h4>
<ul class="a">
<li><b>• Dr. Thirumaleshwara Bhat</b></li>
<li>Principal, SMVITM</li>
<li><b>• Dr. Ganesh Aithal</b></li>
<li>Vice Principal, SMVITM</li>
</ul>
</div>
<!-- card 3 -->
<div class="col-md-4 committee-item top-anim">
<div class="service-icon">
<i class="fa fa-shield-alt text-blue"></i>
</div>
<h4 class="mb-3">General Chairs</h4>
<ul class="a">
<li><b>• Dr. Nagaraj Bhat</b></li>
<li>Dean (Academics), SMVITM</li>
<li><b>• Dr. Soumya J. Bhat</b></li>
<li>HoD, Dept. of CSE, SMVITM</li>
<li><b>• Prof. Arun Upadhyaya</b></li>
<li>HoD, Dept. of ECE, SMVITM</li>
<li><b>• Ms. Rekha P.</b></li>
<li>Senior Virtualization Engineer, ANZ bank New Zealand</li>
</ul>
</div>
<!-- card 4 -->
<div class="col-md-4 committee-item top-anim">
<div class="service-icon">
<i class="fa fa-shield-alt text-blue"></i>
</div>
<h4 class="mb-3">National Advisory Committee</h4>
<ul class="a">
<li><b>• Dr. Mohit P. Tahiliani</b></li>
<li>NITK, IEEE Mangalore Subsection</li>
<li><b>• Dr. B. R. Shankar</b></li>
<li>NITK, Surathkal</li>
<li><b>• Dr. Ram Mohan Reddy</b></li>
<li>NITK, Surathkal</li>
<li><b>• Dr. Karunakar A. Kotegar</b></li>
<li>MIT, Manipal</li>
<li><b>• Dr. Sathish Kumar</b></li>
<li>MIT, Manipal</li>
<li><b>• Dr. D.V. Kamath</b></li>
<li>MIT, Manipal</li>
<li><b>• Dr. Ananthkrishna</b></li>
<li>MIT, Manipal</li>
<li><b>• Dr. Indira K. P.</b></li>
<li>MIT, Manipal</li>
<li><b>• Dr. Nagaraj N. Katagi</b></li>
<li>MIT, Manipal</li>
<li><b>• Prof. Vijander Singh</b></li>
<li>NSUT, Delhi</li>
<li><b>• Prof. Shyama Kant Jha</b></li>
<li>NSUT, Delhi</li>
<li><b>• Dr. Vishal Goar</b></li>
<li>Govt. Engineering College, Bikaner</li>
<li><b>• Dr. Siddhartha S. Satapathy</b></li>
<li>Tezpur University, Assam</li>
<li><b>• Dr. Roop Pahuja</b></li>
<li>NIT, Jalandhar</li>
<li><b>• Dr. Renu Dhir</b></li>
<li>NIT, Jalandhar</li>
<li><b>• Prof. Parvez Alvi</b></li>
<li>BVP, New Delhi</li>
<li><b>• Prof. G. Hemantha Kumar</b></li>
<li>University of Mysore</li>
</ul>
</div>
<!-- card 5 -->
<div class="col-md-4 committee-item top-anim">
<div class="service-icon">
<i class="fa fa-shield-alt text-blue"></i>
</div>
<h4 class="mb-3">Publication Chairs</h4>
<ul class="a">
<li><b>• Dr. Lolita Priya Castelino</b></li>
<li>Associate Professor, Dept. of Mathematics, SMVITM</li>
<li><b>• Dr. Sadananda L.</b></li>
<li>Associate Professor, Dept. of CSE, SMVITM</li>
<li><b>• Mr. Nagaraja Rao</b></li>
<li>Associate Professor, Dept. of ECE, SMVITM</li>
<li><b>• Dr. Vijay Mohan</b></li>
<li>MIT Manipal</li>
</ul>
</div>
<!-- card 6 -->
<div class="col-md-4 committee-item top-anim">
<div class="service-icon">
<i class="fa fa-shield-alt text-blue"></i>
</div>
<h4 class="mb-3">International Advisory Committee</h4>
<ul class="a">
<li><b>• Dr. Kaustubh Salvi</b></li>
<li>University of Alabama, USA</li>
<li><b>• Dr. Avinash Aithal</b></li>
<li>UKRI Science Engineering And Technology</li>
<li><b>• Dr. Shekhar Saxena</b></li>
<li>NTNU, Norway</li>
<li><b>• Mr. Jagadish Nayak</b></li>
<li>BITS, Dubai Campus</li>
<li><b>• Dr. Nilesh Goel</b></li>
<li>BITS, Dubai Campus</li>
<li><b>• Dr. Sazia Hasan</b></li>
<li>BITS, Dubai Campus</li>
<li><b>• Dr. Kassem Saleh</b></li>
<li>Kuwait University, Kuwait</li>
<li><b>• Dr. Ankit Nayak</b></li>
<li>University of Hong Kong</li>
<li><b>• Dr. John Adeoye</b></li>
<li>University of Hong Kong</li>
<li><b>• Dr. Kirti Seth</b></li>
<li>INHA University, Tashkent, Uzbekistan</li>
</ul>
</div>
<!-- card 7 -->
<div class="col-md-4 committee-item top-anim">
<div class="service-icon">
<i class="fa fa-shield-alt text-blue"></i>
</div>
<h4 class="mb-3">Technical Program Chairs</h4>
<ul class="a">
<li><b>• Dr. Bharti Panjwani</b></li>