-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1090 lines (1049 loc) · 51.3 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>Jyona Sinha Portfolio</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: DevFolio - v4.9.0
* Template URL: https://bootstrapmade.com/devfolio-bootstrap-portfolio-html-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo"><a href="index.html">Jyona Sinha</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#work">Work Experiences</a></li>
<li><a class="nav-link scrollto " href="#services">Awards</a></li>
<li><a class="nav-link scrollto " href="#projects">Projects</a></li>
<li><a class="nav-link scrollto " href="#leadership">Leadership</a></li>
<li><a class="nav-link scrollto " href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<div id="hero" class="hero route bg-image" style="background-image: url(assets/img/circuit.jpg)">
<div class="overlay-itro"></div>
<div class="hero-content display-table">
<div class="table-cell">
<div class="container">
<p class="display-6 color-d">Hello, world! I am</p>
<h1 class="hero-title mb-4">Jyona Sinha</h1>
<p class="hero-subtitle"><span class="typed" data-typed-items="Designer, Developer,ML Enthusiast"></span></p>
<!-- <p class="pt-3"><a class="btn btn-primary btn js-scroll px-4" href="#about" role="button">Learn More</a></p> -->
</div>
</div>
</div>
</div><!-- End Hero Section -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="box-shadow-full">
<div class="row">
<div class="col-md-6">
<div class="row">
<div class="col-sm-6 col-md-5">
<div class="about-img">
<img src="assets/img/me.jpeg" class="img-fluid rounded b-shadow-a" alt="">
</div>
</div>
<div class="col-sm-6 col-md-7">
<div class="about-info">
<p><span class="title-s">Name: </span> <span>Jyona Sinha</span></p>
<p><span class="title-s">Profile: </span> <span>Electrical and Electronic Engineer</span></p>
<p><span class="title-s">Email: </span> <span>[email protected]</span></p>
<p><span class="title-s">Phone: </span> <span>+65 9082 0884</span></p>
</div>
</div>
</div>
<div class="skill-mf">
<p class="title-s">Skills</p>
<span><b>Software Programming:</b> C Language, C++, Python and libraries, HTML, CSS, JavaScript, PHP, SQL, MATLAB,
LABVIEW, Batch Scripting, Mache Learning, Deep Learning, Power BI, VBA</span> <br>
<span><b>Hardware:</b> ELVIS, ADB, Arduino IDE</span>
<br>
<span><b>Software Applications:</b> LabVIEW, Microsoft Office 2022 (Excel, Access, PowerPoint, Word, Outlook)
</div>
</div>
<div class="col-md-6">
<div class="about-me pt-4 pt-md-0">
<div class="title-box-2">
<h5 class="title-left">
About me
</h5>
</div>
<p class="lead">
Final year student majoring in Electrical and Electronic Engineering with a minor in business
at Nanyang Technological University, Singapore. Passionate about software engineering
and Data Analytics and pursuing a specializing in Info-Communications (Computer Engineering).
</p>
<p class="lead">
Have hands-on experience with both hardware and software. Strive to be involved in a wide range of projects to
maximize my learning possibilities.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Counter Section ======= -->
<div class="section-counter paralax-mf bg-image" style="background-image: url(assets/img/counters-bg.jpg)">
<div class="overlay-mf"></div>
<div class="container position-relative">
<div class="row">
<div class="col-sm-3 col-lg-3">
<div class="counter-box counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="bi bi-check"></i></span>
</div>
<div class="counter-num">
<p data-purecounter-start="0" data-purecounter-end="3" data-purecounter-duration="1" class="counter purecounter"></p>
<span class="counter-text">INTERNSHIPS COMPLETED</span>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-3">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="bi bi-journal-richtext"></i></span>
</div>
<div class="counter-num">
<p data-purecounter-start="0" data-purecounter-end="18" data-purecounter-duration="1" class="counter purecounter"></p>
<span class="counter-text">MONTHS OF EXPERIENCE</span>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-3">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="bi bi-people"></i></span>
</div>
<div class="counter-num">
<p data-purecounter-start="0" data-purecounter-end="25" data-purecounter-duration="1" class="counter purecounter"></p>
<span class="counter-text">SKILLS ACQUIRED</span>
</div>
</div>
</div>
<div class="col-sm-3 col-lg-3">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="bi bi-award"></i></span>
</div>
<div class="counter-num">
<p data-purecounter-start="0" data-purecounter-end="6" data-purecounter-duration="1" class="counter purecounter"></p>
<span class="counter-text">AWARDS WON</span>
</div>
</div>
</div>
</div>
</div>
</div><!-- End Counter Section -->
<!-- ======= Portfolio Section (Work) ======= -->
<section id="work" class="portfolio-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
Work Experience
</h3>
<p class="subtitle-a">
My internships and projects at multiple companies have helped me get a better understanding of the
work environment and strengthen both my technical and soft skills.
</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<!--Thales-->
<div class="row">
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/LogoThales.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/LogoThales.jpg" alt="" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Thales Group</h2>
<div class="w-more">
<span class="w-ctegory">Embedded Algorithm Intern</span>
<br>
<div class="post-date">
<span class="bi bi-calendar-month"> August. 2021 - December. 2021 </span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<button type="button" class="btn btn-outline-primary extra-button" data-bs-toggle="modal" data-bs-target="#Thales">
Read More...
</button>
<div class="modal fade" id="Thales" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Internship Details</h5>
</div>
<div class="modal-body" style="font-size: 15px; color: black;">
<ul>
<li>Deployed Python Programming to develop Drone Classification Algorithms to discriminate drones from other radar targets.</li>
<li>Applied Python Programming with DSP to analyze micro-Doppler characteristics and kinematic behavior of different radar targets.</li>
<li>Successfully created two Deep Learning Models (i.e. YOLOv3, RCNN) for binary drone classification.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End of Thales-->
<!--PCI-->
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/PciLogo.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/PciLogo.png" alt="" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">PCI pvt. Ltd.</h2>
<div class="w-more">
<span class="w-ctegory">Test Development Engineering Intern</span>
<br>
<div class="post-date">
<span class="bi bi-calendar-month"> May. 2021 - July. 2021 </span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<button type="button" class="btn btn-outline-primary extra-button" data-bs-toggle="modal" data-bs-target="#PCI">
Read More...
</button>
<div class="modal fade" id="PCI" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Internship details</h5>
</div>
<div class="modal-body" style="font-size: 15px; color: black;">
<ul>
<li>Contributed to electronic engineering design verification tests on Telematics and Tablet products.</li>
<li>Applied three software programming (i.e. Operation System, Android Debug Bridge, Batch Scripting) to code and command for tablet testing.</li>
<li>Performed 4 system verification testing (i.e. LCD, ESD, thermal, Functional) on tablets.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End of PCI-->
<!--Toyota-->
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/toyota.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/toyota.jpg" alt="" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Toyota Motor Asia Pacific</h2>
<div class="w-more">
<span class="w-ctegory">Edge Project Consultant</span>
<br>
<div class="post-date">
<span class="bi bi-calendar-month"> July. 2022 - Nov. 2022 </span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<button type="button" class="btn btn-outline-primary extra-button" data-bs-toggle="modal" data-bs-target="#toyota">
Read More...
</button>
<div class="modal fade" id="toyota" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Internship details</h5>
</div>
<div class="modal-body" style="font-size: 15px; color: black;">
<ul>
<li>Collaborated with 3 team members to design and create a prototype dashboard with an analytics tool for updating, refreshing, and visualizing sales/profit data precisely. </li>
<li>Applied 3 software programming (i.e. Power BI, VBA, Macro) for data enhancement and automation. </li>
<li>Evaluate prototype performance with company “TMAP”.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End of Toyota-->
<!--Dyson-->
<div class="row">
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/dyson.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/dyson.png" alt="" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Dyson</h2>
<div class="w-more">
<span class="w-ctegory">Project Assistant</span>
<br>
<div class="post-date">
<span class="bi bi-calendar-month"> Aug. 2021 - Nov. 2021 </span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<button type="button" class="btn btn-outline-primary extra-button" data-bs-toggle="modal" data-bs-target="#Dyson">
Read More...
</button>
<div class="modal fade" id="Dyson" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Project Details</h5>
</div>
<div class="modal-body" style="font-size: 15px; color: black;">
<ul>
<li>Collaborated with a team of 6 people for Dyson and NTU’s Product Development challenge. Pitched an e-bike solution with an Android mobile application interface coded in Java.</li>
<li>Won Award for Best Innovator chosen by a panel of judges comprising Dyson’s R&D Director and NTU’s College of Engineering’s head.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End of Dyson-->
<!--Cleantech Group-->
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/Cleantech.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/Cleantech.png" alt="" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">Cleantech Group</h2>
<div class="w-more">
<span class="w-ctegory">Market Research Analyst Intern</span>
<br>
<div class="post-date">
<span class="bi bi-calendar-month"> Jan. 2022 - Mar. 2022 </span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<button type="button" class="btn btn-outline-primary extra-button" data-bs-toggle="modal" data-bs-target="#Cleantech">
Read More...
</button>
<div class="modal fade" id="Cleantech" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Attachment details</h5>
</div>
<div class="modal-body" style="font-size: 15px; color: black;">
<ul>
<li>Co-operated with Consulting Team to conceptualize cleantech innovation, financing and startups.</li>
<li>Analyzed data and conducted research on energy efficiency and circular economy (e.g. Smart Cities, Commercial & Industrial Buildings).</li>
<li>Consulted with International Team in USA and helped in monitoring and updating Company Dashboard i3.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End of Cleantech Group-->
<!--NTU ROSE-->
<div class="col-md-4">
<div class="work-box">
<a href="assets/img/ntu.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<div class="work-img">
<img src="assets/img/ntu.png" alt="" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-8">
<h2 class="w-title">NTU Rapid-Rich Object Search Lab </h2>
<div class="w-more">
<span class="w-ctegory">Student Researcher</span>
<br>
<div class="post-date">
<span class="bi bi-calendar-month"> May. 2022 - July. 2022 </span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="w-like">
<button type="button" class="btn btn-outline-primary extra-button" data-bs-toggle="modal" data-bs-target="#NTU">
Read More...
</button>
<div class="modal fade" id="NTU" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Research details</h5>
</div>
<div class="modal-body" style="font-size: 15px; color: black;">
<ul>
<li>Automatic detection using pytorch based on UNet++ and reduction of facial skin feature such as acne and pigmentation for multiple skin tones.</li>
<li>Implemented concepts of computer vision such as image segmentation, simulation and differentiation.</li>
<li>Developed an end to end system which could locate skin features and reduce the size using image inpainting.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End of NTU-->
</section><!-- End Portfolio Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services-mf pt-5 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
Awards
</h3>
<p class="subtitle-a">
Over the course of my undergraduate studies, I have been honoured to be the recipient of several awards from hackathons and innovation challenges.
</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-briefcase"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">ASEAN Climate Hackathon - SAP First Place</h2>
<p class="s-description text-center">
Won First Place with cash prize worth 2500 SGD at Climate Hack, organised by Code for Asia along with SAP. Won among seventy-five participating teams
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-card-checklist"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Dyson Award for Best Innovator</h2>
<p class="s-description text-center">
Won Award for Best Innovator chosen by a panel of judges comprising Dyson’s R&D Director and NTU’s College of Engineering’s head.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-bar-chart"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Xilinx All-Women’s IOT Hackathon 2021 - Third Place</h2>
<p class="s-description text-center">
Won 2nd runner-up with a cash prize worth 500 SGD at Xillinx All-Women's IOT Hackathon
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-calendar4-week"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">Grab Hack4Good Hackathon Top 6</h2>
<p class="s-description text-center">
Won Top 6 Award at Grab's annual hackathon devising a solution utilising Grab APIs.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-bar-chart"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">MIT 15K Hackathon - Finalist</h2>
<p class="s-description text-center">
Currently in the top 2 of 15K competition - NTU Semi-Finals. Won a cash prize worth of 2000 SGD. Competition still in progress.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-briefcase"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">AI Research Student Conference 2021</h2>
<p class="s-description text-center">
Finalist in the AI Research Student conference 2021 poster competition organized by MLDA@EEE.
</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Project Section ======= -->
<section id="projects" class="blog-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a">
Projects
</h3>
<p class="subtitle-a">
These are some of the projects I'm most proud of and passionate about!
</p>
<div class="line-mf"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/pg.png" alt="" class="img-fluid"></a>
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category"> Machine Learning </h6>
</div>
</div>
<h3 class="card-title">Procter & Gamble (Industry Sponsored Final Year Project)</h3>
<p class="card-description">
<b>Title: Dense Facial Landmark Mesh for Facial Skin MovementUnderstanding </b><br>
Expected to apply Python Programming and libraries with Machine Learning tools (i.e. Neural Networks) to develop facial skin surface analyses (i.e. facial wrinkles, texture, pores) techniques from high quality facial motion video datasets.
Recognize as pioneering work that integrates facial skin biology, computer vision and AI techniques.
Utilize Deep Learning and image processing to model facial skin movements and changes in elasticity as we age.
</p>
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-9">
</div>
<div class="col-md-3" style="align-self: center;">
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/finrl.jpg" alt="" class="img-fluid">
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Reinforcement Learning</h6>
</div>
</div>
<h3 class="card-title">Deep Reinforcement Learning in Financial Markets</h3>
<p class="card-description">
Developed end-to-end system trading system utilizing the FinRL framework to investigate the feasibility of using Deep Reinforcement Learning algorithm in predicting the stock movement of various SGX stocks. Successfully trained 2 models (i.e. DDPG, A2C) to perform better than STI benchmark.
</p>
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-9">
</div>
<div class="col-md-3" style="align-self: center;">
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/mimo.png" alt="" class="img-fluid">
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Research</h6>
</div>
</div>
<h3 class="card-title">Application of Deep Learning in Massive MIMO Systems</h3>
<p class="card-description">
Applied MATLAB Programming to compare traditional methods with Deep Learning Methods (e.g. RNN, CNN) to search channel estimation of Massive MIMO systems. Examined previously researched data related to MIMO & SISO Technology in Communication Industry.
</p>
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-9">
</div>
<div class="col-md-3" style="align-self: center;">
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/web.png" alt="" class="img-fluid">
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Web Development</h6>
</div>
</div>
<h3 class="card-title">Web Application Design</h3>
<p class="card-description">
Developing an e-commerce website which sells sustainable fashion. Used figma to make the wireframe
and concepts of HTML, CSS, PHP, JavaScript, SQL to make a client-server working website.
</p>
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-9">
</div>
<div class="col-md-3" style="align-self: center;">
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/dsai.png" alt="" class="img-fluid">
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Data Analytics</h6>
</div>
</div>
<h3 class="card-title">DSAI Project</h3>
<p class="card-description">
<b>Analysis on Happiness Index Dataset</b> <br>
Applied Python Programming with 6 Machine Learning Models (i.e. Linear Regression, Random Forest, Decision Tree, K-means Clustering, K-Nearest Neighbour, Naïve Bayes Classifier) to clean and train Kaggle
Dataset (i.e. World Happiness Report 2016 – 2020) to predict country’s happiness index accurately.
Tackled the problem to find strongest correlation factor using machine learning techniques.
Predicted future values for world happiness index for countries using time series analysis and ARIMA.
</p>
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-9">
</div>
<div class="col-md-3" style="align-self: center;">
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/robo.jpeg" alt="" class="img-fluid">
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">IOT</h6>
</div>
</div>
<h3 class="card-title">Designing and Programming Line-Following Robot using Xilinx PYNQ Board</h3>
<p class="card-description">
Applied Python Programming with Microprocessors to build robot that navigated obstacle-filled map based
on inputs from integrated hardware sensors on circuit board. Enabled robot to accomplish route within 21 seconds.
Integrated a Bluetooth Module into board and created mobile app for connecting robot and display IOT functions.
</p>
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-9">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/cv.jpeg" alt="" class="img-fluid">
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Computer Vision</h6>
</div>
</div>
<h3 class="card-title">Binary Classification</h3>
<p class="card-description">
TBD
</p>
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-9">
</div>
<div class="col-md-3" style="align-self: center;">
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/sm.jpg" alt="" class="img-fluid">
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Embedded Software Development</h6>
</div>
</div>
<h3 class="card-title">NutrIoTion</h3>
<p class="card-description">
Creating an IoT-based sensor solution that aims at effectively determining the spoilage level of fresh produce using gas sensors along with camera-based sensors. Visit us here: https://www.nutriotion.org
Responsible for creating the ML model that classified fresh and rotten produce along with a dashboard using Python’s Streamlit that displays results from our analysis to inventory managers.
</p>
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-9">
</div>
<div class="col-md-3" style="align-self: center;">
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card card-blog">
<div class="card-img">
<img src="assets/img/speaker.png" alt="" class="img-fluid">
</div>
<div class="card-body">
<div class="card-category-box">
<div class="card-category">
<h6 class="category">Hardware</h6>
</div>
</div>
<h3 class="card-title">Automatic Volume Control for Audio Amplifier System</h3>
<p class="card-description">
Integration of hardware & software subsystem modules to form a complete Automatic Volume Control for
Audio Amplifier system using LABVIEW and ELVIS.
</p>
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-9">
</div>
<div class="col-md-3" style="align-self: center;">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Project Section -->
<!-- ======= Leadership Section ======= -->
<div id="leadership" class="section-counter paralax-mf bg-image" style="background-image: url(assets/img/overlay-bg.jpg)">
<div class="overlay-mf"></div>
<div class="container position-relative">
<section id="leadership" class="services-mf pt-5 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="title-a" style="color: white;">
Leadership
</h3>
<p class="subtitle-a" style="color: white;">
Along with developing my technical skills at university,
I was keen on honing my leadership and interpersonal skills.
Each of the below roles provided me a unique experience and a unique set of skills!
</p>
<div class="line-mf" style="background-color: white;"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-laptop"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">ICUR-URECA Student Director</h2>
<p class="s-description text-center">
Collaborate with ICUR student directors from overseas institutions in Australia, Singapore, Japan, United Kingdom and United States to organise
the international student event for undergraduate researchers in 2021.
<br><br>
<br>
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-bank"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">NTU NAE - Honorary General Secretary</h2>
<p class="s-description text-center">
NTU NAE is a club of art and craft enthusiasts, sharing our love for art with the wider community. As an HGS, I handled all of the club's administrative
duties and assisted in the organization of 10 workshops over the course of the Academic Year 2021-2022.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-bar-chart"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">NTU CAC CenterStage Publicity and Publication Officer </h2>
<p class="s-description text-center">
CenterStage is an annual non-profit all-inclusive NTU talent search competition.
As a publicity officer, I used Canva and Photoshop to create various posters and media to raise club awareness and involvement.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-list-check"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">NTU TEDx Operations Team </h2>
<p class="s-description text-center">
TEDxNTU is an independently organized TED-like event under direct license from TED.
As a member of the TEDxNTU 2020 operations team, I assisted in the organization of the event, which attracted over 1600 attendees.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-people"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">NTU MLDA@EEE CLUB (Publicity) Sub-Committee </h2>
<p class="s-description text-center">
MLDA@EEE aims to equip NTU students in all aspects of Machine Learning, Data Analytics and AI activities in the school.
As part of the team, I assisted in the organization of AI conferences and Deep Learning Weeks, while also learning about these topics.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="service-box">
<div class="service-ico">
<span class="ico-circle"><i class="bi bi-building"></i></span>
</div>
<div class="service-content">
<h2 class="s-title">President Student Council (High School)</h2>
<p class="s-description text-center">
Supervised the functioning of the elected student body members.
Developed the agenda for and presided over the meetings of Student Council. Hosted and supervised Interschool IT fests and Competition with over 30 schools participating.
</p>