-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
735 lines (635 loc) · 35.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Sohit Nayak's Portfolio</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/sohitnayak.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.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: Personal - v4.10.0
* Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header">
<div class="container">
<h1><a href="index.html">Sohit Nayak</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="mr-auto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a> -->
<strong><h2>Contemplative <span>Coder and Analyst</span>. <font color="C8F372">Inspired by tough problems</font>.</h2></strong>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link active" href="#header">Home</a></li>
<li><a class="nav-link" href="#about">About</a></li>
<li><a class="nav-link" href="#resume">Resume</a></li>
<li><a class="nav-link" href="#services">Extra-Curriculars</a></li>
<li><a class="nav-link" href="#portfolio">Portfolio</a></li>
<li><a class="nav-link" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<div class="social-links">
<a href="https://www.linkedin.com/in/sohit-nayak/" class="linkedin" title="LinkedIn Profile" target="_blank"><i class="bi bi-linkedin"></i></a>
<a href="https://github.com/sohit-nayak" class="github"><i class="bx bxl-github" title="Github Profile" target="_blank"></i></a>
<!--<a href="https://public.tableau.com/app/profile/ghoshtrina/" class="tableau"><i class="bx bx-line-chart" title="Tableau Profile" target="_blank"></i></a>-->
<a href="https://link.springer.com/chapter/10.1007/978-981-13-1498-8_69" class="publications" title="Publications" target="_blank"><i class="bx bxs-award"></i></a>
</div>
</div>
</header><!-- End Header -->
<!-- ======= About Section ======= -->
<section id="about" class="about">
<!-- ======= About Me ======= -->
<div class="about-me container">
<div class="section-title">
<h2>About</h2>
<p>Learn more about me</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/me.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Grad Student at UW Madison</h3>
<p class="fst-italic">
Hi, I am Sohit Nayak and I am currently pursuing my Master's from University of Wisconsin - Madison majoring in Busines Analytics.
I hold a Bachelor of Technology degree from Indian Institute of Technology, Kharagpur.
</p>
<div class="row">
<div class="col-lg-5">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>LinkedIn:</strong> <span><a href="https://www.linkedin.com/in/sohit-nayak/" class="linkedin" title="LinkedIn Profile" target="_blank"><i class="bi bi-linkedin"></i></a></span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Github:</strong> <span><a href="https://github.com/sohit-nayak" class="github" title="Github Profile" target="_blank"><i class="bx bxl-github"></i></a></span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Tableau:</strong> <span><a href="https://public.tableau.com/app/profile/ghoshtrina/" class="tableau" title="Tableau Profile" target="_blank"><i class="bx bx-line-chart"></i></a></span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Publications:</strong> <span><a href="https://link.springer.com/chapter/10.1007/978-981-13-1498-8_69" class="publications" title="Publications" target="_blank"><i class="bx bxs-award"></i></a></span></li>
</ul>
</div>
<div class="col-lg-7">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Email:</strong> <span><a href="mailto:snayak@wisc.edu" target="_blank">snayak9@wisc.edu</a></span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Alt Email:</strong> <span><a href="mailto:sohit.nayak@gmail.com" target="_blank">sohit.nayak@gmail.com</a></span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Highest Degree:</strong> <span>Master of Science</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>City:</strong> <span>Madison, USA</span></li>
</ul>
</div>
<!-- <div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Age:</strong> <span>30</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Degree:</strong> <span>Master</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>PhEmailone:</strong> <span>email@example.com</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Freelance:</strong> <span>Available</span></li>
</ul>
</div> -->
</div>
<p>
Machine learning practitioner with goal to employ skills gained through projects and field experience to solve real-world business problems through effective decision-making.
Collaborative team player and influential relationship builder with aptitude for quickly developing competence in new software, systems, and concepts.
Seeking opportunities with ample growth and ownership in high-quality and high- velocity professional environment.
</p>
</div>
</div>
</div><!-- End About Me -->
<!-- ======= Counts ======= -->
<!-- <div class="counts container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="bi bi-emoji-smile"></i>
<span data-purecounter-start="0" data-purecounter-end="232" data-purecounter-duration="1" class="purecounter"></span>
<p>Happy Clients</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="bi bi-journal-richtext"></i>
<span data-purecounter-start="0" data-purecounter-end="521" data-purecounter-duration="1" class="purecounter"></span>
<p>Projects</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-headset"></i>
<span data-purecounter-start="0" data-purecounter-end="1463" data-purecounter-duration="1" class="purecounter"></span>
<p>Hours Of Support</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-award"></i>
<span data-purecounter-start="0" data-purecounter-end="24" data-purecounter-duration="1" class="purecounter"></span>
<p>Awards</p>
</div>
</div>
</div>
</div>End Counts -->
<!-- ======= Skills ======= -->
<div class="skills container">
<div class="section-title">
<h2>Skills</h2>
</div>
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill">PYTHON | NUMPY, PANDAS, SCIPY, SCIKIT-LEARN, MATPLOTLIB <i class="val">100%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">MS EXCEL | ADVANCED MODELLING, PIVOT CHARTS, MACROS, LOOKUPS <i class="val">100%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">TABLEAU | DASHBOARDS, STORY <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">SQL | T-SQL, SQL SERVER, MS ACCESS <i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">R | DPLYR, GGPLOT, CARET, SHINY <i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">AWS | BIGQUERY, FIVETRAN, DBT, ETL & DATA WAREHOUSING <i class="val">65%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div><!-- End Skills -->
<!-- ======= Interests ======= -->
<div class="interests container">
<div class="section-title">
<h2>Certifications</h2>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 mt-4">
<div class="icon-box">
<img src="assets/img/cred.png" class="testimonial-img" alt="" width="100" height="100" hspace="10">
<h3><a href="https://www.coursera.org/account/accomplishments/verify/QJPP39PA2ZPW" target="_blank"> Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization</a>
<br>
<br>
Obtained on May, 2018
</h3>
<a href="assets/img/deepai.png" data-gall="portfolioGallery" class="venobox vbox-item" title="Click to view certificate">
<span style="float:right;"><i class="bx bx-plus"></i></span></a>
</div>
</div>
<div class="col-lg-6 col-md-6 mt-4">
<div class="icon-box">
<img src="assets/img/cred.png" class="testimonial-img" alt="" width="100" height="100" hspace="10">
<h3><a href="https://www.coursera.org/account/accomplishments/verify/ELNSTZW7F9WB" target="_blank"> Neural Networks and Deep Learning</a>
<br>
<br>
Obtained on April, 2018
</h3>
<a href="assets/img/nn.png" data-gall="portfolioGallery" class="venobox vbox-item" title="Click to view certificate">
<span style="float:right;"><i class="bx bx-plus"></i></span></a>
</div>
</div>
</div>
</div><!-- End Interests -->
<!-- ======= Testimonials ======= -->
<div class="testimonials container">
<div class="section-title">
<h2>Testimonials</h2>
</div>
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Sohit reported to me when I was Consultant CTO at Finlabs India Ltd. He works with minimal guidance in several occassions.
He is persistent, dedicated and works with high quality in allotted time. I saw his initiative also when I saw that he participated in competition involving creating AI algorithms for stock market.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-1.png" class="testimonial-img" alt="">
<h3>Angshuman Chakraborty</h3>
<h4>Founding Director, Relaso Enterprise Software Pvt. Ltd.</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Sohit was recruited to work under my colleague and myself on the project “Data-driven Decision Support System for Prediction of Occupational Accidents”.
During his work on this project, he demonstrated his in-depth understanding of various complex areas such as computer vision, and Python programming along with his skills in using Kivy, to incorporate predictive models inside a GUI in the project along with the addition of his novel ideas.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-2.png" class="testimonial-img" alt="">
<h3>Sobhan Sarkar</h3>
<h4>Assistant Professor, Indian Institute of Management, Ranchi</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Sohit has showcased exceptional dilligence and smart efforts in projects in Safety Analytics under my supervision during his undergraduate tenure here in Indian Institute of Technology, Kharagpur. He is a quick learner and very adaptive to new technology not mentioning his ability to use existing knowledge to come up with innovative solutions.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-3.png" class="testimonial-img" alt="">
<h3>Jhareshwar Maiti</h3>
<h4>Head of Department, Industrials= and Systems Department, IIT KGP</h4>
</div>
</div>
<!-- <div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Fugiat enim eram quae cillum dolore dolor amet nulla culpa multos export minim fugiat minim velit minim dolor enim duis veniam ipsum anim magna sunt elit fore quem dolore labore illum veniam.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="">
<h3>Matt Brandon</h3>
<h4>Freelancer</h4>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Quis quorum aliqua sint quem legam fore sunt eram irure aliqua veniam tempor noster veniam enim culpa labore duis sunt culpa nulla illum cillum fugiat legam esse veniam culpa fore nisi cillum quid.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="">
<h3>John Larson</h3>
<h4>Entrepreneur</h4>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div> -->
<div class="owl-carousel testimonials-carousel">
</div>
</div><
</section><!-- End About Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container">
<div class="section-title">
<h2>Resume</h2>
</div>
<div class="row">
<div class="col-lg-6">
<h3 class="resume-title">Sumary</h3>
<div class="resume-item pb-0">
<h4>Sohit Nayak</h4>
<p><em>A machine learning practitioner with projects and experience in the field with a goal to employ these skills to solve real-world business problems through effective decision-making.</em></p>
<p>
<ul>
<li>Madison, WI</li>
<!-- <li>(123) 456-7891</li> -->
<li>snayak@wisc.edu</li>
<li>sohit.nayak@gmail.com</li>
</ul>
</p>
</div>
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h4>Master of Science in Business Analytics </h4>
<h5>Aug 2022 - Present</h5>
<p><em>University of Wisconsin - Madison, WI</em></p>
<p>Majoring in Business Analytics <br> GPA: 3.96 / 4.00</p>
</div>
<div class="resume-item">
<h4>Bachelor of Technology</h4>
<h5>Jun 2015 - Aug 2019</h5>
<p><em>Indian Institute of Technology, Kharagpur, India</em></p>
<p>Majored in Metallurgical and Materials Engineering with a minor in Mathematics and Computing
<br> GPA: 8.3 / 10.0
</p>
</div>
</div>
<div class="col-lg-6">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item">
<h4>Senior Business Analyst</h4>
<h5>Aug 2019 - Jul 2022</h5>
<p><em>TATA AIG, Mumbai, India </em></p>
<p>
<ul>
<li>Designed and created a streamlined workflow for Point of Sale booking for two insurance products <strong> manual labor to 10%</strong></li>
<li>Utilized project management skills to propel the project from ideation to implementation phase</li>
<li>Realized <strong>100% top-line growth as compared to prior FY</strong> as a result of enhancing customer satisfaction and ease of operation</li>
<li>Drove adoption and consumption of the products by taking cross-functional training sessions pan India</li>
<li>Closely monitored and analyzed geographic activity and usage of the products post-release</li>
</ul>
</p>
</div>
<div class="resume-item">
<h4>Machine Learning Intern</h4>
<h5>Jun 2017 - Sept 2017</h5>
<p><em>Finlabs India Private Limited, Kolkata, India</em></p>
<p>
<ul>
<li><strong>Summarized long financial news articles</strong> scraped from popular news websites using data-scraping techniques in Python</li>
<li>Abstractive Summarization was attempted via <strong>bi-directional RNNs with Attention Mechanism</strong></li>
<li><strong>Sentiment analysis</strong> was then carried out on the summarized news articles using predictive modelling.</li>
</ul>
</p>
</div>
</div>
</div>
</div>
</section><!-- End Resume Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>Extra-Curriculars</h2>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0">
<div class="icon-box">
<div class="icon"><i class="bx bxs-business"></i></div>
<h4><a>Executive Head</a></h4>
<h3><strong>COMPOSIT</strong></h3>
<p>Headed team of 30 which successfully and smoothly conducted the 25th
edition of the largest annual Metallurgical fest of India.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0">
<div class="icon-box">
<div class="icon"><i class="bx bxs-music"></i></div>
<h4><a>Lead Drummer</a></h4>
<h3><strong>Western Group Band</strong></h3>
<p>Part of the Western vocals Inter-Hall team of the Patel Hall of Residence representing the team as the lead drummer</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0">
<div class="icon-box">
<div class="icon"><i class="bx bxs-book-open"></i></div>
<h4><a>Student Coordinator</a></h4>
<h3><strong>Society of Metallurgical Engineers</strong></h3>
<p>Elected among 60 others for the academic session
of 2017-2018. Instrumental in initiating annual interaction sessions to assist juniors gain help about academic and non-
academic issues with seniors and professors.</p>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="section-title">
<h2>Portfolio</h2>
<p>My Works</p>
</div>
<p>Below are some of the projects I have completed as an independent learning experience or via academic coursework.</p>
<div class="row">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-ml">Machine Learning</li>
<li data-filter=".filter-analytics">Analytics</li>
<li data-filter=".filter-opt">Optimization</li>
<li data-filter=".filter-tab">Tableau</li>
</ul>
</div>
</div>
<div class="row portfolio-container">
<div class="col-lg-4 col-md-6 portfolio-item filter-ml">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-1.jpeg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Dengue Cases Prediction</h4>
<p>Machine Learning</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-1.jpeg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Dengue Cases Prediction"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-ml">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.jpeg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Recommendation Model for Fashion Clothing website ASOS</h4>
<p>Machine Learning</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.jpeg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Machine Learning"><i class="bx bx-plus"></i></a>
<a href="portfolio-details1.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-opt">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.jpeg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Optimizing EV Charging ecosystem in the state of WA</h4>
<p>Optimization and Modelling</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.jpeg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Optimization of EV Charging Stations Ecosystem"><i class="bx bx-plus"></i></a>
<a href="portfolio-details2.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-ml">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>MNIST Digit Prediction</h4>
<p>MNIST Digit Prediction</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Machine Learning"><i class="bx bx-plus"></i></a>
<a href="portfolio-details3.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-analytics">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.jpeg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Analysis of Yelp review count with number of COVID-19 cases</h4>
<p>Data Analysis</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.jpeg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Data Analysis"><i class="bx bx-plus"></i></a>
<a href="portfolio-details4.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-ml">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Image Prediction using Tensorflow</h4>
<p>Machine Learning</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.png" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Image prediction using Convolutional Neural Network"><i class="bx bx-plus"></i></a>
<a href="portfolio-details5.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<!-- <div class="col-lg-4 col-md-6 portfolio-item filter-analytics">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 1</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-7.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-analytics">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-8.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 3</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-8.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-tab">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-9.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-9.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div> -->
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<h2>Contact</h2>
<p>Contact Me</p>
</div>
<div class="row mt-2">
<div class="col-md-6 d-flex align-items-stretch">
<div class="info-box">
<i class="bx bx-map"></i>
<h3>My Address</h3>
<p>Madison, WI</p>
</div>
</div>
<div class="col-md-6 mt-4 mt-md-0 d-flex align-items-stretch">
<div class="info-box">
<i class="bx bx-share-alt"></i>
<h3>Online Profiles</h3>
<div class="social-links">
<!-- <a href="#" class="twitter"><i class="bi bi-twitter"></i></a>
<a href="#" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="#" class="instagram"><i class="bi bi-instagram"></i></a> -->
<a href="https://link.springer.com/chapter/10.1007/978-981-13-1498-8_69" target="_blank" class="publications"><i class="bx bxs-award"></i></a>
<a href="https://www.linkedin.com/in/sohit-nayak/" class="linkedin" target="_blank"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-md-6 mt-4 d-flex align-items-stretch">
<div class="info-box">
<i class="bx bx-envelope"></i>
<h3>Email Me</h3>
<p>snayak9@wisc.edu<br>sohit.nayak@gmail.com</p>
</div>
</div>
<div class="col-md-6 mt-4 d-flex align-items-stretch">
<div class="info-box">
<i class="bx bx-phone-call"></i>
<h3>My Portfolios</h3>
<div class="social-links">
<!-- <a href="#" class="twitter"><i class="bi bi-twitter"></i></a>
<a href="#" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="#" class="instagram"><i class="bi bi-instagram"></i></a> -->
<a href="https://github.com/sohit-nayak" class="github" target="_blank"><i class="bx bxl-github"></i></a>
<a href="https://public.tableau.com/app/profile/ghoshtrina/" class="tableau" target="_blank"><i class="bx bx-line-chart"></i></a>
</div>
</div>
</div>
</div>
<!-- <form action="forms/contact.php" method="post" role="form" class="php-email-form mt-4">
<div class="row">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="col-md-6 form-group mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" required>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message" required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your message has been sent. Thank you!</div>
</div>
<div class="text-center"><button type="submit">Send Message</button></div>
</form> -->
</div>
</section><!-- End Contact Section -->
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/personal-free-resume-bootstrap-template/ -->
<!-- Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a> -->
</div>
<!-- Vendor JS Files -->
<script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/waypoints/noframework.waypoints.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>