-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3624 lines (3235 loc) · 199 KB
/
Copy pathindex.html
File metadata and controls
3624 lines (3235 loc) · 199 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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RCSC'25</title>
<link rel="icon" href="img/event_logo.png">
<link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<link href="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.js"></script>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script type="text/javascript" src="https://cdn.emailjs.com/sdk/3.6.2/email.min.js"></script>
<script type="text/javascript">
(function () {
emailjs.init("YOUR_USER_ID");
})();
</script>
<script>
document.getElementById('contactForm').addEventListener('submit', function (event) {
event.preventDefault();
emailjs.sendForm('YOUR_SERVICE_ID', 'YOUR_TEMPLATE_ID', this)
.then(function () {
alert('Message sent successfully!');
}, function (error) {
alert('Failed to send message. Error: ' + JSON.stringify(error));
});
});
</script>
<script>
document.getElementById('readMoreBtn').addEventListener('click', function() {
const moreRows = document.querySelectorAll('.more-rows');
moreRows.forEach(row => {
row.classList.remove('hidden');
});
this.style.display = 'none';
});
</script>
<script>
module.exports = {
theme: {
extend: {
animation: {
'loop-scroll': 'loop-scroll 50s linear infinite',
'running-code': 'running-code 20s linear infinite',
},
keyframes: {
'loop-scroll': {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(-100%)' },
},
'running-code': {
'0%': { transform: 'translateY(0)' },
'100%': { transform: 'translateY(-100%)' },
},
},
colors: {
futuristic: {
primary: '#00FFFF',
secondary: '#0F0F0F',
accent: '#FF00FF',
},
},
fontSize: {
'xxs': '0.625rem',
'3xl': '1.75rem',
},
fontWeight: {
hairline: '100',
extrabold: '800',
},
},
},
plugins: [],
};
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
body {
font-family: "Zilla Slab", serif;
color: black;
}
body::-webkit-scrollbar {
display: none;
}
.carousel {
width: 100%;
height: 300px;
background-color: #000;
margin-top: 20px;
}
.text-light {
font-weight: lighter;
}
.expand-transition {
transition: max-height 0.5s ease-out;
overflow: hidden;
}
.expand-transition.collapsed {
max-height: 0;
}
.expand-transition.expanded {
max-height: 1000px;
/* Adjust based on content height */
}
@keyframes soft-blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.6; }
}
.animate-soft-blink {
animation: soft-blink 1.5s infinite;
}
.background-grid {
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
background-size: 50px 50px;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -0.5;
animation: grid-fade 10s ease-in-out infinite;
}
.code-animation {
font-family: 'Courier New', Courier, monospace;
white-space: pre;
overflow: hidden;
height: 100%;
color: rgba(255, 255, 255, 0.8);
animation: running-code 20s linear infinite;
display: flex;
flex-direction: column;
gap: 0;
padding-right: 20px;
box-sizing: border-box;
}
@keyframes scroll {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-80%);
}
}
.animate-scroll {
display: flex;
animation: scroll 12s linear infinite;
}
a {
pointer-events: auto;
}
header {
background: linear-gradient(to right, lightblue, white, lightblue);
}
header div {
white-space: nowrap;
}
@keyframes running-code {
0% {
transform: translateY(0);
}
100% {
transform: translateY(calc(-100% + 1em));
}
}
.custom-blur {
filter: blur(1.5px);
}
.overlay-image {
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 25%;
background: url('img/overlay.png') no-repeat center center;
background-size: cover;
opacity: 0.2;
pointer-events: none;
}
#dropdownNavbar {
z-index: 1000;
/* Ensure it is on top */
}
#dropdownNavbar {
pointer-events: auto;
/* Ensure pointer events are enabled */
}
.carousel {
width: 100%;
height: 300px;
background-color: black;
margin-top: 20px;
}
.text-light {
font-weight: lighter;
}
.animate-loop-scroll {
animation: loop-scroll 20s linear infinite;
}
@keyframes loop-scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
@keyframes blink {
50% {
opacity: 0;
}
}
.animate-blink {
animation: blink 1s infinite;
}
</style>
<script type="module">
import preline from 'https://cdn.jsdelivr.net/npm/preline@2.3/+esm'
</script>
<script>
function toggleContent(expandedId, button) {
const expandedContent = document.getElementById(expandedId);
if (expandedContent.classList.contains('hidden')) {
expandedContent.classList.remove('hidden');
button.textContent = "Read Less";
} else {
expandedContent.classList.add('hidden');
button.textContent = "Read More";
}
}
</script>
<script>
AOS.init({
duration: 1500,
easing: 'ease-out-cubic'
});
</script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
</head>
<body>
<!-- Registration -->
<div id="default-modal" tabindex="-1" aria-hidden="true"
class="hidden overflow-y-auto overflow-x-hidden fixed top-0 right-0 left-0 z-50 justify-center items-center w-full md:inset-0 h-[calc(100%-1rem)] max-h-full">
<div class="relative p-4 w-full max-w-2xl max-h-full">
<!-- Modal content -->
<div class="relative bg-white rounded-lg shadow">
<!-- Modal header -->
<div class="flex items-center justify-between p-4 md:p-5 border-b rounded-t">
<h3 class="text-xl font-semibold text-gray-900">
Registration
</h3>
<button type="button"
class="text-gray-400 bg-transparent hover:bg-gray-200 hover:text-gray-900 rounded-lg text-sm w-8 h-8 ms-auto inline-flex justify-center items-center"
data-modal-hide="default-modal">
<svg class="w-3 h-3" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 14 14">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m1 1 6 6m0 0 6 6M7 7l6-6M7 7l-6 6" />
</svg>
<span class="sr-only">Close modal</span>
</button>
</div>
<!-- Modal body -->
<div class="p-4 md:p-5 space-y-4">
<div>
<h5 class="font-bold text-lg mb-2">Registration Fees:</h5>
<table class="table-auto text-sm border-collapse border border-gray-500 w-full">
<thead class="text-center text-base">
<tr>
<th class="border-2 border-gray-500 py-4">Category</th>
<th class="border-2 border-gray-500 py-4">Indian delegates<br>(in Rupees)</th>
<th class="border-2 border-gray-500 py-4">Foreign delegates<br>(in USD)</th>
</tr>
</thead>
<tbody>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Attendees</td>
<td class="border-2 border-gray-500 text-center">Rs. 3500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$80</td>
</tr>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Student/Research Scholars</td>
<td class="border-2 border-gray-500 text-center">Rs. 7500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$200</td>
</tr>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Faculty</td>
<td class="border-2 border-gray-500 text-center">Rs. 8500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$250</td>
</tr>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Author from Industry</td>
<td class="border-2 border-gray-500 text-center">Rs. 9500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$300</td>
</tr>
</tbody>
</table>
</div>
<div>
<h5 class="font-bold text-lg mb-2">Note:</h5>
<p class="text-sm text-gray-700 mb-2">The page limit for a full-length paper is 10 pages, with an extra page charge of Rs. 500 from the 11th page onwards.</p>
</div>
<div>
<h5 class="font-bold text-lg mb-2">Mode of Payment:</h5>
<p class="text-sm text-gray-700 mb-2">All payments should be made through online electronic
transfer in the account of conference with following detail:</p>
<div class="flex justify-center">
<table class="table-auto text-sm">
<tbody>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">Account Holder's Name
</td>
<td class="border-b-2 border-gray-300 py-1">DIRECTOR NIT SIKKIM</td>
</tr>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">Account No</td>
<td class="border-b-2 border-gray-300 py-1">31996269106</td>
</tr>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">Branch</td>
<td class="border-b-2 border-gray-300 py-1">State Bank of India & Ravangla</td>
</tr>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">IFSC Code</td>
<td class="border-b-2 border-gray-300 py-1">SBIN0007218</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="flex items-center p-4 md:p-5 border-t border-gray-200 rounded-b dark:border-gray-600">
<a href="https://forms.gle/xy415makx6ebf1Dq5" target="_blank" rel="noopener noreferrer"
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
Register
</a>
</div>
</div>
</div>
</div>
<!-- Header -->
<nav class="bg-white border-gray-200">
<div class="flex flex-wrap items-center justify-between mx-11 p-4">
<a href="#" class="flex items-center space-x-8 rtl:space-x-reverse">
<img src="img/event_logo.png" width="100" height="100" alt="Event Logo" />
<img src="img/college-logo.png" alt="College Logo" width="65" height="65">
</a>
<div class="hidden w-full md:block md:w-auto" id="navbar-multi-level">
<ul
class="flex flex-col font-medium p-4 md:p-0 mt-4 border border-gray-100 rounded-lg bg-gray-50 md:space-x-8 rtl:space-x-reverse md:flex-row md:mt-0 md:border-0 md:bg-white">
<li>
<a href="#" class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700"
aria-current="page">Home</a>
</li>
<li>
<a href="#aboutus"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">About</a>
</li>
<li>
<a href="#committees"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">Committees</a>
</li>
<li>
<a href="#speakers"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">Speakers</a>
</li>
<li>
<a href="#callforsponser"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">Sponsorships</a>
</li>
<li>
<button id="dropdownNavbarLink1" data-dropdown-toggle="dropdownNavbar"
class="flex items-center justify-between w-full py-4 px-1 text-gray-500 hover:bg-transparent border-0 hover:text-blue-700">Program
<svg class="w-2.5 h-2.5 ms-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 10 6">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="m1 1 4 4 4-4" />
</svg>
</button>
<!-- Dropdown menu -->
<div id="dropdownNavbar"
class="z-10 hidden font-normal bg-white divide-y divide-gray-100 rounded-lg shadow w-64">
<ul class="py-2 text-sm text-gray-700 space-y-1">
<li><a href="Files/RCSC Program Schedule.pdf" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">RCSC'2025 Program Schedule</a></li>
<li><a href="#indicators-carousel"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Call
for Papers</a></li>
<li><a href="./Files/Poster.pptx"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Call
for Poster</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSf9_ZGWvDPY5czm_0tbTbUC8PejVLDpMo3HIFH62x6RbrVTSQ/viewform"
target="_blank"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
Call for Reviewer
</a></li>
<li><a href="#callforsponser"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Call
for Sponsorship</a></li>
<li><a href="guidlines.html"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Guidelines
for Authors</a></li>
<li><a href="#imp_dates"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Important
Dates</a></li>
</ul>
</div>
<li class="relative">
<a href="sessions.html"
class="block py-4 pr-16 pl-3 text-gray-500 hover:bg-transparent hover:text-blue-700">
Special Sessions
</a>
<span
class="absolute top-[40%] right-2 transform -translate-y-1/2 text-blue-600 text-sm font-bold animate-blink">
Update!!!
</span>
</li>
</li>
<li>
<button id="dropdownNavbarLink2" data-dropdown-toggle="dropdownNavbar2"
class="flex items-center justify-between w-full py-4 px-1 text-gray-500 hover:bg-transparent border-0 hover:text-blue-700">Contact
<svg class="w-2.5 h-2.5 ms-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 10 6">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="m1 1 4 4 4-4" />
</svg>
</button>
<!-- Dropdown menu -->
<div id="dropdownNavbar2"
class="z-10 hidden font-normal bg-white divide-y divide-gray-100 rounded-lg shadow w-64">
<ul class="py-2 text-sm text-gray-700 space-y-1">
<li>
<a href="#howtoreach"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
Contact Us
</a>
</li>
<li>
<a href="#howtoreach"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
How to Reach Us
</a>
</li>
</ul>
</div>
</li>
<li>
<button id="dropdownNavbarLink3" data-dropdown-toggle="dropdownNavbar3"
class="flex items-center justify-between w-full py-4 px-1 text-gray-500 hover:bg-transparent border-0 hover:text-blue-700">Downloads
<svg class="w-2.5 h-2.5 ms-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 10 6">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="m1 1 4 4 4-4" />
</svg>
</button>
<!-- Dropdown menu -->
<div id="dropdownNavbar3"
class="z-10 hidden font-normal bg-white divide-y divide-gray-100 rounded-lg shadow w-64">
<ul class="py-2 text-sm text-gray-700 space-y-1" aria-labelledby="dropdownLargeButton">
<li>
<a href="Files/Brochure_RCSC_2025.pdf" target="_blank"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
RCSC'2025 Brochure
</a>
</li>
</ul>
</div>
</li>
<li>
<button data-modal-target="default-modal" data-modal-toggle="default-modal"
class="block py-2 px-3 text-gray-900 font-bold rounded-full border-4 border-blue-500 hover:bg-blue-500 hover:text-white transition ease-in-out delay-150">Registration</button>
</li>
</ul>
</div>
</div>
</nav>
<marquee class="py-4 bg-gray-400 text-xl text-white">
Conference Dates: 1st-3rd May, 2025
<a href="Files/RCSC Program Schedule.pdf" target="_blank" class="px-3 py-1 text-white font-semibold hover:text-yellow-300 transition animate-soft-blink">
RCSC'2025 Program Schedule
</a>
</marquee>
<!-- Hero Section -->
<section class="overflow-hidden -translate-y-2">
<div class="relative h-[600px]">
<img class="object-cover h-[600px] w-full" src="img/hero.jpg" alt="Hero Image">
<div class="absolute inset-0 bg-gray-700 opacity-60"></div>
<div class="absolute inset-0 flex flex-col items-center justify-center">
<p class="text-white font-bold text-3xl text-center mb-4">
International Conference on Robotics, Communication and Soft Computing
</p>
<img class="mb-4" width="200px" height="200px" src="img/college-logo.png" alt="College Logo">
<p class="text-white font-black text-4xl">RCSC' 2025</p>
<p class="text-white text-lg mb-2 font-medium">(Hybrid)</p>
<p class="text-white text-lg mb-4 font-medium">1st-3rd May, 2025</p>
<p class="text-white text-sm mb-4 font-bold">Organized By</p>
<p class="text-white text-xl font-extrabold">National Institute of Technology Sikkim</p>
<p class="text-white text-lg font-bold">Ravangla, Sikkim - 737139, India</p>
</div>
<div class="absolute left-0 top-0 h-screen w-1/4 custom-blur">
<div class="code-animation p-4">
<code>
import numpy as np;<br>
import pandas as pd;<br>
import tensorflow as tf;<br>
from sklearn.model_selection import train_test_split;<br>
from sklearn.metrics import accuracy_score;<br>
from tensorflow.keras.models import Sequential;<br>
from tensorflow.keras.layers import Dense, Dropout;<br>
from tensorflow.keras.utils import to_categorical;<br><br>
// Load and preprocess dataset<br>
data = pd.read_csv('data/ai_conference_data.csv');<br>
X = data.drop('label', axis=1).values;<br>
y = data['label'].values;<br>
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42);<br>
y_train = to_categorical(y_train);<br>
y_test = to_categorical(y_test);<br><br>
// Build the neural network model<br>
model = Sequential();<br>
model.add(Dense(64, activation='relu', input_shape=(X_train.shape[1],)));<br>
model.add(Dropout(0.5));<br>
model.add(Dense(32, activation='relu'));<br>
model.add(Dropout(0.5));<br>
model.add(Dense(y_train.shape[1], activation='softmax'));<br>
model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']);<br><br>
// Train the model<br>
history = model.fit(X_train, y_train, epochs=50, batch_size=32, validation_data=(X_test, y_test));<br><br>
// Evaluate the model<br>
y_pred = model.predict(X_test);<br>
y_pred_labels = np.argmax(y_pred, axis=1);<br>
y_true_labels = np.argmax(y_test, axis=1);<br>
accuracy = accuracy_score(y_true_labels, y_pred_labels);<br>
console.log(`Model accuracy: ${accuracy * 100:.2f}%`);<br><br>
// Function to make predictions<br>
function makePrediction(inputData) {<br>
inputData = np.array(inputData).reshape(1, -1);<br>
const prediction = model.predict(inputData);<br>
const predictedClass = np.argmax(prediction, axis=1);<br>
return predictedClass;<br>
}<br><br>
// Evaluate the model<br>
y_pred = model.predict(X_test);<br>
y_pred_labels = np.argmax(y_pred, axis=1);<br>
y_true_labels = np.argmax(y_test, axis=1);<br>
accuracy = accuracy_score(y_true_labels, y_pred_labels);<br>
console.log(`Model accuracy: ${accuracy * 100:.2f}%`);<br><br>
// Example prediction<br>
const sampleData = X_test[0];<br>
const prediction = makePrediction(sampleData);<br>
console.log(`Predicted class for sample data: ${prediction[0]}`);<br>
// More AI and ML code snippets can be added here<br>
</code>
</div>
</div>
</section>
<!-- About Us -->
<section class="mt-10" id="aboutus">
<div class="flex mx-auto max-w-7xl gap-8">
<!-- About Event -->
<div class="container mx-auto border-2 border-gray-300 rounded-3xl p-10 shadow-2xl">
<h2 class="font-medium text-5xl text-center mb-8 border-b-1 border-gray-100">About Us</h2>
<img src="img/about-us-image.jpg" alt="About Us Image" class="mb-5 w-full h-auto" />
<!-- About Us Content -->
<div class="flex gap-14">
<div class="flex flex-col items-start gap-2">
<p id="aboutUsContent" class="text-gray-700 text-justify text-lg ">
The objective of Robotics, Communication and Soft Computing is to provide a common platform
to researchers, academicians, scientists and industrialists who are working in the area of
Robotics and Automation, System Control, Information and Communication, Image Processing,
Artificial Intelligence/ Computational Intelligence, etc.
</p>
<div id="expandedContent" class="hidden">
<p class="text-gray-700 text-justify text-lg">
The aim of the conference is to highlight the most recent advances, problems and
challenges as well as to present the latest outcomes in related fields with a connection
to scientific research and its practical applications. The main purpose of RCSC 2025 is
to bring together experts, leading researchers and developers to share knowledge,
exchange their views and ideas in the fields of above-mentioned areas. This conference
especially encourages participation from the young researchers and invite them to
present their work on this platform.
</p>
</div>
<button
class="px-3 py-2 rounded text-white border-4 border-blue-400 shadow-blue-400/50 transition-all duration-700 bg-blue-400 hover:text-blue-500 hover:bg-transparent hover:border-blue-500"
onclick="toggleContent('expandedContent', this)">Read More</button>
</div>
</div>
</div>
<!-- Sponsor, Dates, Registration -->
<div class="container mx-auto border-2 border-gray-300 rounded-3xl p-10 shadow-2xl max-w-md">
<!-- Sponsor -->
<div class="mb-10">
<h2 class="font-medium text-4xl border-b-1 border-gray-100">Sponsors</h2>
<div class="bg-[#921b1f] h-1 max-w-[50%] mb-6"></div>
<div class="flex flex-wrap justify-center gap-3 mb-8">
<div class="w-36 h-26 flex items-center justify-center rounded-lg ">
<img src="img/nhpc_1.png" alt="NHPC Logo" class="max-h-full max-w-full object-contain">
</div>
<div class="w-40 h-32 flex items-center justify-center rounded-lg ">
<img src="img/nhpc.jpg" alt="SJVN Logo" class="max-h-full max-w-full object-contain">
</div>
</div>
<div class="flex flex-wrap justify-center gap-8 mb-8">
<div class="w-36 h-27 flex items-center justify-center rounded-lg ">
<img src="img/gentech_logo.png" alt="GENTECH Logo" class="max-h-full max-w-full object-contain">
</div>
<div class="w-36 h-26 flex items-center justify-center rounded-lg ">
<img src="img/sarovar.jpg" alt="Sikkim Sarovar Logo" class="max-h-full max-w-full object-contain">
</div>
</div>
</div>
<!-- Dates -->
<h2 class="font-medium text-4xl border-b-1 border-gray-100" id="imp_dates">Important Dates</h2>
<div class="bg-[#921b1f] h-1 max-w-[75%] mb-6"></div>
<ol class="relative border-s border-gray-200 translate-x-6">
<li class="mb-10 ms-6">
<span
class="absolute flex items-center justify-center w-6 h-6 bg-blue-900 rounded-full -start-3 ring-8 ring-[#f5f5f5]">
<svg class="w-2.5 h-2.5 text-blue-300" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="currentColor" viewBox="0 0 20 20">
<path
d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z" />
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-900">Submission Deadline</h3>
<p class="mb-4 text-base font-normal text-gray-500 dark:text-gray-400">8th January, 2025</p>
<h4 class="mb-1 text-md font-semibold italic text-gray-900">For Special Session</h4>
<p class="text-base font-normal text-gray-500 dark:text-gray-400">20th January, 2025</p>
</li>
<li class="mb-10 ms-6">
<span
class="absolute flex items-center justify-center w-6 h-6 bg-blue-900 rounded-full -start-3 ring-8 ring-[#f5f5f5]">
<svg class="w-2.5 h-2.5 text-blue-300" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="currentColor" viewBox="0 0 20 20">
<path
d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z" />
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-900">Submission Deadline (Extended)</h3>
<p class="mb-4 text-base font-normal text-gray-500 dark:text-gray-400">28th February, 2025</p>
<h4 class="mb-1 text-md font-semibold italic text-gray-900">For Special Session (Extended)</h4>
<p class="text-base font-normal text-gray-500 dark:text-gray-400">20th March, 2025</p>
</li>
<li class="mb-10 ms-6">
<span
class="absolute flex items-center justify-center w-6 h-6 bg-blue-900 rounded-full -start-3 ring-8 ring-[#f5f5f5]">
<svg class="w-2.5 h-2.5 text-blue-300" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="currentColor" viewBox="0 0 20 20">
<path
d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z" />
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-900">Acceptance Date</h3>
<p class="mb-4 text-base font-normal text-gray-500 dark:text-gray-400">20th March, 2025</p>
<h4 class="mb-1 text-md font-semibold italic text-gray-900">For Special Session</h4>
<p class="text-base font-normal text-gray-500 dark:text-gray-400">25th March, 2025</p>
</li>
<li class="ms-6 mb-10">
<span
class="absolute flex items-center justify-center w-6 h-6 bg-blue-900 rounded-full -start-3 ring-8 ring-[#f5f5f5]">
<svg class="w-2.5 h-2.5 text-blue-300" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="currentColor" viewBox="0 0 20 20">
<path
d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z" />
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-900">Registration Deadline</h3>
<p class="text-base font-normal text-gray-500 dark:text-gray-400">14th April, 2025</p>
</li>
<li class="ms-6 mb-10">
<span
class="absolute flex items-center justify-center w-6 h-6 bg-blue-900 rounded-full -start-3 ring-8 ring-[#f5f5f5]">
<svg class="w-2.5 h-2.5 text-blue-300" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="currentColor" viewBox="0 0 20 20">
<path
d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z" />
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-900">Camera Ready Paper Submission</h3>
<p class="text-base font-normal text-gray-500 dark:text-gray-400">15th April, 2025</p>
</li>
<li class="ms-6">
<span
class="absolute flex items-center justify-center w-6 h-6 bg-blue-900 rounded-full -start-3 ring-8 ring-[#f5f5f5]">
<svg class="w-2.5 h-2.5 text-blue-300" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="currentColor" viewBox="0 0 20 20">
<path
d="M20 4a2 2 0 0 0-2-2h-2V1a1 1 0 0 0-2 0v1h-3V1a1 1 0 0 0-2 0v1H6V1a1 1 0 0 0-2 0v1H2a2 2 0 0 0-2 2v2h20V4ZM0 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8H0v10Zm5-8h10a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z" />
</svg>
</span>
<h3 class="mb-1 text-lg font-semibold text-gray-900">Conference Dates</h3>
<p class="text-base font-normal text-gray-500 dark:text-gray-400">1st - 3rd May, 2025</p>
</li>
</ol>
<div class="mt-8">
<h2 class="font-medium text-4xl border-b-1 border-gray-100">Publication</h2>
<div class="bg-[#921b1f] h-1 max-w-[50%] mb-6"></div>
<p class="text-center font-semibold text-lg mt-2">Springer book series CCIS</p>
<p class="text-center font-semibold text-lg mt-2">(Confirmation Awaited)</p>
<img src="img/springer.jpeg" alt="Sponsor" class=" ml-16 h-40">
</div>
</div>
</div>
<!-- About Sikkim and College -->
<div class="flex flex-col max-w-7xl mx-auto gap-16">
<!-- About Sikkim Section -->
<div class="mx-auto mt-10 border border-gray-300 rounded-3xl p-8 shadow-lg max-w-7xl">
<h2 class="font-semibold text-4xl text-center mb-6 border-b pb-4 border-gray-200">About Sikkim</h2>
<img src="img/images.jpg" alt="About Sikkim" class="h-[500px] w-full object-cover rounded-2xl mb-6">
<div class="flex flex-col gap-6">
<p class="text-gray-700 text-justify text-lg leading-relaxed">
Discover the natural beauty and cultural richness of Sikkim. Nestled in the Himalayas, Sikkim
offers breathtaking landscapes, vibrant festivals, and warm hospitality. Explore its serene
monasteries, lush valleys, and adventure trails that make it a paradise for travelers and nature
enthusiasts. Ravangla, a picturesque town in southern Sikkim, is one of the most serene and
beautiful destinations in the state. Perched at an altitude of 7,000 feet, Ravangla offers
stunning views of the snow-capped peaks of the Eastern Himalayas, including Kanchenjunga,
Pandim, and Siniolchu.
</p>
<div id="aboutSikkimContent" class="hidden">
<p class="text-gray-700 text-justify text-lg leading-relaxed">
The town is a gateway to some of the most scenic treks in Sikkim and is surrounded by dense
forests, verdant tea gardens, and quaint villages. One of the major attractions in Ravangla
is the Buddha Park (Tathagata Tsal), which features a magnificent 130-foot statue of Lord
Buddha. The park is a peaceful place, perfect for meditation and reflection, with
beautifully landscaped gardens and panoramic views of the mountains. The area around
Ravangla is also rich in biodiversity, making it a great spot for birdwatching, especially
in places like the Maenam Wildlife Sanctuary.
</p>
</div>
<button
class="px-4 py-2 rounded-full text-white bg-green-500 hover:bg-green-600 transition duration-300"
onclick="toggleContent('aboutSikkimContent', this)">Read More</button>
</div>
</div>
<!-- About College Section -->
<div class="mx-auto mt-16 border border-gray-300 rounded-3xl p-8 shadow-lg max-w-7xl">
<h2 class="font-semibold text-4xl text-center mb-6 border-b pb-4 border-gray-200">About The Institute</h2>
<div id="aboutInstituteCarousel" class="relative w-full mb-6" data-carousel="slide">
<!-- Carousel wrapper -->
<div class="relative h-[600px] overflow-hidden rounded-2xl">
<!-- Slide 1 -->
<div class="hidden duration-700 ease-in-out" data-carousel-item="active">
<img src="img/nitsikkim2.jpg" class="absolute block w-full h-full object-cover" alt="NIT Sikkim Main Campus">
</div>
<!-- Slide 2 -->
<div class="hidden duration-700 ease-in-out" data-carousel-item>
<img src="img/nitsikkim.jpg" class="absolute block w-full h-full object-cover" alt="NIT Sikkim New View">
</div>
</div>
<!-- Slider controls -->
<button type="button" class="absolute top-1/2 left-0 z-30 px-4 py-2 text-white bg-black/50 hover:bg-black/70 rounded-full"
data-carousel-prev>
‹
</button>
<button type="button" class="absolute top-1/2 right-0 z-30 px-4 py-2 text-white bg-black/50 hover:bg-black/70 rounded-full"
data-carousel-next>
›
</button>
</div>
<div class="flex flex-col gap-6">
<p class="text-gray-700 text-justify text-lg leading-relaxed">
NIT Sikkim is a public engineering and research institution near the city of Ravangla, Sikkim,
India. It is one of the 31 NITs in India and has been declared as an Institute of National
Importance by the Government of India. It is an autonomous institute functioning under the aegis
of the Ministry of Education, Government of India. NIT Sikkim is one among the ten newly
sanctioned National Institutes of Technology by the Government of India under the 11th Five-year
Plan, 2009.
</p>
<div id="aboutCollegeContent" class="hidden">
<p class="text-gray-700 text-justify text-lg leading-relaxed">
NIT Sikkim started functioning in August 2010. Currently, it is being operated from a
temporary campus at the Barfung Block, Ravangla Sub-Division of Namchi district. Ravangla
campus is surrounded by great scenic beauty. It is likely to continue its activities at
Ravangla campus until its permanent campus comes up at Khamdong, Sikkim. All courses and
examinations are conducted in the English language as the only mode of instruction. NIT
Sikkim offers a 4-year Bachelor of Technology (B.Tech.) programme in various engineering
fields, as well as a 2-year Master of Technology (M.Tech.), Master of Science (M.Sc.) and
Ph.D. Programmes. Admissions to undergraduate programmes are taken through IIT-JEE (Mains).
Admission to the postgraduate courses is through the GATE/JAM.
</p>
</div>
<button
class="px-4 py-2 rounded-full text-white bg-purple-500 hover:bg-purple-600 transition duration-300"
onclick="toggleContent('aboutCollegeContent', this)">Read More</button>
</div>
</div>
</div>
<!--About the departments-->
<div class="mx-auto mt-16 border border-gray-300 rounded-3xl p-8 shadow-lg max-w-7xl">
<h2 class="font-semibold text-4xl text-center mb-6 border-b pb-4 border-gray-200">About The Departments</h2>
<!--ECE-->
<h1 class="text-center text-lg font-bold text-red-700 mb-2">Department of Electronics and Communication Engineering</h1>
<p class="text-center text-lg italic text-gray-600 mb-6">
"The five essential entrepreneurial skills for success are concentration, discrimination, organization, innovation and communication" – Michael Faraday
</p>
<div id="ece-carousel" class="relative mx-auto w-3/4 rounded-2xl overflow-hidden shadow-lg" data-carousel="slide">
<div class="relative h-[300px] overflow-hidden rounded-2xl">
<div class="hidden duration-700 ease-in-out" data-carousel-item="active">
<img src="img/ece1.png" class="absolute w-full h-full object-cover" alt="ECE Image 1">
</div>
<div class="hidden duration-700 ease-in-out" data-carousel-item>
<img src="img/ece2.png" class="absolute w-full h-full object-cover" alt="ECE Image 2">
</div>
</div>
<button type="button" class="absolute top-1/2 left-4 z-30 px-2 py-1 text-white bg-black/50 hover:bg-black/80 rounded-full" data-carousel-prev>‹</button>
<button type="button" class="absolute top-1/2 right-4 z-30 px-2 py-1 text-white bg-black/50 hover:bg-black/80 rounded-full" data-carousel-next>›</button>
<div class="flex justify-center mt-4 space-x-2">
<button type="button" class="w-3 h-3 rounded-full bg-gray-400" data-carousel-slide-to="0"></button>
<button type="button" class="w-3 h-3 rounded-full bg-gray-300" data-carousel-slide-to="1"></button>
</div>
</div>
<div class="mt-10 mb-20">
<p class="text-justify text-lg text-gray-800 leading-relaxed mb-4">
The Department of Electronics and Communication Engineering, also founded in 2010, aims to empower students with industry-relevant knowledge in key domains like VLSI Design, Communication Engineering, Signal Processing, and Microwave Engineering. It offers B.Tech., M.Tech., and Ph.D. programs, structured to provide balanced theoretical and hands-on experience.
</p>
<p id="aboutDepartmentContent" class="text-justify text-lg text-gray-800 leading-relaxed mb-6 hidden">
The Department's research spans areas such as ASIC Design, Antenna & Microwave Engineering, Wireless Communication, and Solar Cell Technology. With active student-faculty interaction, regular industrial collaborations, and technical events through its club <b>Anuvrat</b>, the Department ensures a holistic academic and professional development.
</p>
</div>
<button
class="w-full mb-20 mx-auto px-4 py-2 rounded-full text-white bg-red-400 hover:bg-red-500 transition duration-300"
onclick="toggleContent('aboutDepartmentContent', this)">
Read More
</button>
<!--CSE-->
<hr/>
<h1 class="mt-20 text-center text-lg font-bold text-red-700 mb-2">Department of Computer Science and Engineering</h1>
<p class="text-center text-lg italic text-gray-600 mb-6">
“A computer would deserve to be called intelligent if it could deceive a human into believing that it was human.” - Alan Turing
</p>
<div id="ece-carousel" class="relative mx-auto w-3/4 rounded-2xl overflow-hidden shadow-lg" data-carousel="slide">
<div class="relative h-[300px] overflow-hidden rounded-2xl">
<div class="hidden duration-700 ease-in-out" data-carousel-item="active">
<img src="img/cse1.png" class="absolute w-full h-full object-cover" alt="ECE Image 1">
</div>
<div class="hidden duration-700 ease-in-out" data-carousel-item>
<img src="img/cse2.png" class="absolute w-full h-full object-cover" alt="ECE Image 2">
</div>
</div>
<button type="button" class="absolute top-1/2 left-4 z-30 px-2 py-1 text-white bg-black/50 hover:bg-black/80 rounded-full" data-carousel-prev>‹</button>
<button type="button" class="absolute top-1/2 right-4 z-30 px-2 py-1 text-white bg-black/50 hover:bg-black/80 rounded-full" data-carousel-next>›</button>
<div class="flex justify-center mt-4 space-x-2">
<button type="button" class="w-3 h-3 rounded-full bg-gray-400" data-carousel-slide-to="0"></button>
<button type="button" class="w-3 h-3 rounded-full bg-gray-300" data-carousel-slide-to="1"></button>
</div>
</div>
<div class="mt-10 mb-30">
<p class="text-justify text-lg text-gray-800 leading-relaxed mb-4">
The Department of Computer Science and Engineering (CSE) at National Institute of Technology Sikkim has been functioning since the inception of the Institute in the year 2010. The Department provides an outstanding teaching environment complemented by excellence in research.
</p>
<p id="aboutCSEDepartmentContent" class="text-justify text-lg text-gray-800 leading-relaxed mb-6 hidden">
The Department offers four years B. Tech. degrees in CSE and AI & ML, two years M.Tech. degree in AI & ML and Ph.D. in Computer Science and Engineering. The Department has a comprehensive curriculum on topics related to all aspects of Computer Science with special emphasis on applicability that is provided using latest techniques of engineering. The course structure is up-to-date and includes courses on state-of-the-art curriculum to equip the students and teachers with the latest developments in the field. The Department aspires to develop interdisciplinary and multidisciplinary projects based on the expertise of faculty members.
</p>
</div>
<button
class="w-full mx-auto px-4 py-2 rounded-full text-white bg-red-400 hover:bg-red-500 transition duration-300"
onclick="toggleContent('aboutCSEDepartmentContent', this)">
Read More
</button>
</div>
</div>
</section>
<!-- Topics -->
<section class="pt-12">
<div class="container mx-auto border-2 border-gray-300 rounded-3xl p-10 shadow-2xl max-w-7xl bg-white">
<div id="indicators-carousel" class="relative w-full" data-carousel="static">
<!-- Carousel wrapper -->
<div class="relative h-96 overflow-hidden rounded-lg">