-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
844 lines (721 loc) · 39.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
<!DOCTYPE html>
<!--[if gt IE 8]><!--><html lang="en" class="no-js"><!--<![endif]-->
<head>
<!-- meta charec set -->
<meta charset="utf-8">
<title>Yash Pareek</title>
<link rel="apple-touch-icon" sizes="120x120" href="img/fav/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/fav/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/fav/favicon-16x16.png">
<link rel="manifest" href="img/fav/site.webmanifest">
<link rel="mask-icon" href="img/fav/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/elastislide.css" />
<link rel="stylesheet" type="text/css" href="css/custom.css" />
<script src="js/modernizr.custom.17475.js"></script>
<link rel="stylesheet" href="https://davidstutz.github.io/bootstrap-multiselect/dist/css/bootstrap-multiselect.css" type="text/css"/>
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://d396qusza40orc.cloudfront.net/phoenixassets/web-frameworks/bootstrap-social.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/skills.css">
<link rel="stylesheet" href="main2.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
</style>
</head>
<body >
<header id="navigation" class="navbar-fixed-top navbar ">
<div class="navbar-header">
<!-- responsive nav button -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<i class="fa fa-bars fa-2x"></i>
</button>
<!-- /responsive nav button -->
<!-- logo -->
<!-- /logo -->
<a class="navbar-brand" href="#bgg" style="padding-left: 30px;" id="brandd">Yash Pareek</a>
</div>
<!-- main nav -->
<nav class="collapse navbar-collapse" role="navigation">
<ul id="nav" class="nav navbar-nav" style="padding-left:2%;">
<li><a href="#work"><i class="fa fa-suitcase" aria-hidden="true"></i> Work Experience</a></li>
<li><a href="#projj"><i class="fa fa-folder" aria-hidden="true"></i> Projects</a></li>
<li><a href="#skilll"><i class="fa fa-wrench" aria-hidden="true"></i> Skillset</a></li>
<li>
<a href="https://github.com/pareek-yash" target='_blank'>
<i class='fa fa-github'></i>
Github
</a>
</li>
<li>
<a href="https://in.linkedin.com/in/Pareek-yash" target='_blank'>
<i class='fa fa-linkedin'></i>
LinkedIn
</a>
</li>
</ul>
<ul class='nav navbar-nav navbar-right' style="padding-right: 20px; ">
<li class=""><a href="Yash_Pareek_CV.pdf" target='_blank'><i class="fa fa-address-card-o"></i> Résumé</a></li>
<li class=""><a href="#contactt"><i class="fa fa-envelope-o"></i> Contact Me</a></li>
</ul>
</nav>
<!-- /main nav -->
</header>
<div>
<section class='page1 cd-fixed-bg cd-bg-1' id="bgg">
<br><br><br><br><br>
<br>
<div class='container-fluid'>
<br>
<div class='row'>
<div class='col-sm-12'>
<div class='name'>
<span class='fname'>YASH </span>
<span id='lname' style="font-family: 'Josefin Sans', sans-serif; font-weight: 10; font-size: 80px;">Pareek</span>
</div>
</div>
</div>
<div class='row'>
<div class='col-sm-1'></div>
<div class='col-sm-10'>
<br>
<div class='intro-text'>
<strong>
<span style='font-size:24px;'>
Namaste, and Welcome!
</span>
</strong>
<br>
<div class="container-fluid studio" id="aboutus">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="">
Here's something to know about me : I am a learner and long to stay one as far as I go in life. Learning what I like the most and other new things makes me feel empowered and so I'm motivated to harness my skillset in
<br>
<span id="typed-strings">
<span>Artificial Intelligence</span>
<span>Machine Learning</span>
<span>Data Science</span>
<span>and more..</span><br>
</span>
<span id="typed" style="white-space:pre;color: #3aacc7;"></span>
<br><br> I believe in building with quality instead of building in quantity. Every project I take up involves days of research that's why I take pride in calling it MY OWN WORK :)
<br><br> <span style="color:#1b6d85; font-weight: 800">Hardwork</span> is the motto I abide by EVERY SINGLE DAY.
</div>
</div>
</div>
</div>
<div class='col-sm-1'></div>
</div>
<br><br><br>
</div>
</section>
</div>
<section class='page3' id="work">
<br>
<br>
<br>
<div class='headings2'>
Previous Experiences With
</div>
<br>
<div class='container-fluid' align="center">
<div class="row">
<div class="col-md-12">
<div class="cern-intern-box wow fadeInDown">
<div class="row">
<div class="col-sm-4">
<div class='intern-panel-image'>
<img src="img/ML-removebg-preview.png" alt='HPCS' class='intern-img img-responsive' style="height: 142px; width: 282px; margin-top: 10px; padding-left: 15px;">
</div>
</div>
<div class="col-sm-8" align="left">
<div class="intern-panel-body">
<div class="intern-box-heading" align="center">
<span style="font-size: 24px; padding-top: 10px; padding-bottom: 10px; display: block;"><strong>I am passionate about learning the theory that is pushing the cutting edge of ML.</strong></a></span>
<br>
<div class="col-sm-12 intern-post"><strong></strong></div>
</div>
<br><br>
<ul>
<li>Developed <a href="https://github.com/Pareekyash/HPCS-HR-Panel"><span style="color: #00A8EF">Image Recognition - Computer Vision Web App</span></a>.</li>
<li>Measured and inferred healthy and pertinent relationships among data.</li>
<li>Integrated smart Machine Learning algorithms for <a href="https://github.com/Pareekyash/HPCS-HR-Panel"><span style="color: #00A8EF">Stock Prediction</span></a></li>
<li>Devised inventory Optimization algorithm for a private firm.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-6">
<div class="intern-box wow fadeInLeft">
<div class="row">
<div class="col-sm-5">
<div class='intern-panel-image'>
<img src="img/NLP-removebg-preview.png" alt='Ace Finity' class='intern-img' style="height: 150px; width: 280px">
</div>
</div>
<div class="col-sm-6" align="left">
<div class="intern-panel-body">
<div class="intern-box-heading" align="center">
<span style="font-size: 24px; padding-top: 10px; padding-bottom: 10px; display: block;"><strong>I apply text analytics to some of the hardest questions in business.</strong></span>
<br>
<div class="col-sm-12 intern-post"><strong></strong></div>
</div>
<br>
<ul>
<li>Developed <a href="https://github.com/Pareekyash/HPCS-HR-Panel"><span style="color: #00A8EF">Sentiment Analysis of tweets</span></a>.</li>
<li>Learned the fundamentals of Machine Learning and realized my inclination towards this field.</li>
<li>Produced quality web-pages with mobile-responsive capability.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="intern-box wow fadeInLeft">
<div class="row">
<div class="col-sm-5">
<div class='intern-panel-image'>
<img src="img/CLoud-removebg-preview.png" alt='Ace Finity' class='intern-img' style="height: 150px; width: 280px">
</div>
</div>
<div class="col-sm-6" align="left">
<div class="intern-panel-body">
<div class="intern-box-heading" align="center">
<span style="font-size: 24px; padding-top: 10px; padding-bottom: 10px; display: block;"><strong>I utilize APIs to productionize machine learning systems.</strong></span>
<br>
<div class="col-sm-12 intern-post"><strong></strong></div>
</div>
<br>
<ul>
<li>Developed <a href="https://github.com/Pareekyash/HPCS-HR-Panel"><span style="color: #00A8EF">Azure Based Object Recognition</span></a>.</li>
<li>Learned the fundamentals of Machine Learning and realized my inclination towards this field.</li>
<li>Produced quality web-pages with mobile-responsive capability.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="intern-box wow fadeInRight">
<div class="row">
<div class="col-sm-5">
<div class='intern-panel-image'>
<img src="img/dataanalytis-removebg-preview.png" alt='Ace Finity' class='intern-img' style="height: 150px; width: 280px">
</div>
</div>
<div class="col-sm-6" align="left">
<div class="intern-panel-body">
<div class="intern-box-heading" align="center">
<span style="font-size: 24px; padding-top: 10px; padding-bottom: 10px; display: block;"><strong>I love telling a story; Making people understand data through Visualization.</strong></span>
<br>
<div class="col-sm-12 intern-post"><strong></strong></div>
</div>
<br>
<ul>
<li>Exploratory Data Analysis <a href="https://github.com/Pareekyash/HPCS-HR-Panel"><span style="color: #00A8EF">Air Pollution Level in India</span></a>.</li>
<li>Visualization of data using Matplotlib and Seaborn.</li>
<li>Sales Forecast Analysis Dashboard usin Tableau.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="intern-box wow fadeInRight">
<div class="row">
<div class="col-sm-5">
<div class='intern-panel-image'>
<img src="img/c-vis-removebg-preview.png" alt='Ace Finity' class='intern-img' style="height: 132px; width: 230px">
</div>
</div>
<div class="col-sm-6" align="left">
<div class="intern-panel-body">
<div class="intern-box-heading" align="center">
<span style="font-size: 24px; padding-top: 10px; padding-bottom: 10px; display: block;"><strong>I apply computer vision techniques for Object Recognition and image generation.</strong></span>
<br>
<div class="col-sm-12 intern-post"><strong></strong></div>
</div>
<br>
<ul>
<li>Developed <a href="https://github.com/Pareekyash/HPCS-HR-Panel"><span style="color: #00A8EF">Optical Character Recognition System</span></a>.</li>
<li>Used DCGANs for Facial Recognition.</li>
<li>Built <a href="https://github.com/Pareekyash/HPCS-HR-Panel"><span style="color: #00A8EF">MNIST generator using Autoencoders</span></a> .</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br><br><br><br>
</section>
<section class="page2" id="projj">
<div class="container-fluid">
<br><br><br>
<div class="row reponsive">
<div class='col-sm-12'>
<div class='headings'>
My Project Portfolio
</div>
</div>
</div>
<br>
<div class='proj-text'>
<div class='row'>
<div class='col-sm-4 wow fadeInLeft' align="center">
<img src="img/projects/Sentiment Analysis.png" alt='The Creative Key' class='thumbnail proj-img' style="height: 150% !important;width: 70% !important;">
<div class='proj-panel'>
<div class='panel-heading'>
<div class='proj-panel-heading'>
<strong>
Multi Entity Extraction
</strong>
</div>
</div>
<div class='panel-body'>
A shift from traditional Algorithms to newer RNNs. This project makes use of LSTMs for better processing.<br><br>
<strong><a href="https://github.com/Pareek-Yash/Sentiment-Analysis-using-Twitter-Dataset" class="hub" target='_blank'>Github</a>
</div>
<div class='panel-footer'>
Python, Jupyter, Tensorflow, Word2Vec, Pandas, NumPy
</div>
</div>
</div>
<div class='col-sm-4 wow fadeInLeft' align="center">
<img src="img/projects/Sentiment Analysis.png" alt='The Creative Key' class='thumbnail proj-img' style="height: 150% !important;width: 70% !important;">
<div class='proj-panel'>
<div class='panel-heading'>
<div class='proj-panel-heading'>
<strong>
Text Summarisation Web App
</strong>
</div>
</div>
<div class='panel-body'>
A shift from traditional Algorithms to newer RNNs. This project makes use of LSTMs for better processing.<br><br>
<strong><a href="https://github.com/Pareek-Yash/Sentiment-Analysis-using-Twitter-Dataset" class="hub" target='_blank'>Github</a>
</div>
<div class='panel-footer'>
Python, Jupyter, Tensorflow, Word2Vec, Pandas, NumPy
</div>
</div>
</div>
<div class='col-sm-4 wow fadeInUp' align="center">
<img src="img/projects/Image Gen.jpeg" alt='Princeton' class='thumbnail' style="height: 150% !important;width: 70% !important;">
<div class='proj-panel'>
<div class='panel-heading'>
<div class='proj-panel-heading'>
<strong>
Second Brain AI Bot
</strong>
</div>
</div>
<div class='panel-body'>
This System is intended to generate faces by learning from other faces(quite simple definition:). The descriminator and generator models are in place to generate image and discard outlier images. <br><br>
<strong><a href="https://github.com/Pareek-Yash/ImageGeneration_with_DCGAN" class="hub" target='_blank'>Github</a>
</strong>
</div>
<div class='panel-footer'>
Python, Jupyter, Tensorflow, Pandas, NumPy
</div>
</div>
</div>
</div>
</div>
<br><br><br><br>
<div class='proj-text'>
<div class='row'>
<div class='col-sm-4 wow fadeInRight' align="center">
<img src="img/projects/MNIST.png" alt='HPCS HR Panel' class='thumbnail' style="height: 150% !important;width: 70% !important;">
<div class='proj-panel'>
<div class='panel-heading'>
<div class='proj-panel-heading'>
<strong>
Generating MNIST Images
</strong>
</div>
</div>
<div class='panel-body'>
A small pre-DCGAN project to generate numbers using the popular MNIST dataset.<br><br>
<strong><a href="https://github.com/Pareek-Yash" class="hub" target='_blank'>Github</a>
</strong>
<strong> |
<a href="" class="hub" target='_blank'>Demo</a></strong>
</div>
<div class='panel-footer'>
Python, Pandas, NumPy
</div>
</div>
</div>
<div class='col-sm-4 wow fadeInLeft' align="center">
<img src="img/projects/Sentiment Analysis.png" alt='The Creative Key' class='thumbnail proj-img' style="height: 150% !important;width: 70% !important;">
<div class='proj-panel'>
<div class='panel-heading'>
<div class='proj-panel-heading'>
<strong>
Sentiment Analysis using LSTM
</strong>
</div>
</div>
<div class='panel-body'>
A shift from traditional Algorithms to newer RNNs. This project makes use of LSTMs for better processing.<br><br>
<strong><a href="https://github.com/Pareek-Yash/Sentiment-Analysis-using-Twitter-Dataset" class="hub" target='_blank'>Github</a>
</div>
<div class='panel-footer'>
Python, Jupyter, Tensorflow, Word2Vec, Pandas, NumPy
</div>
</div>
</div>
<div class='col-sm-4 wow fadeInUp' align="center">
<img src="img/projects/Image Gen.jpeg" alt='Princeton' class='thumbnail' style="height: 150% !important;width: 70% !important;">
<div class='proj-panel'>
<div class='panel-heading'>
<div class='proj-panel-heading'>
<strong>
Face Generation with DCGAN
</strong>
</div>
</div>
<div class='panel-body'>
This System is intended to generate faces by learning from other faces(quite simple definition:). The descriminator and generator models are in place to generate image and discard outlier images. <br><br>
<strong><a href="https://github.com/Pareek-Yash/ImageGeneration_with_DCGAN" class="hub" target='_blank'>Github</a>
</strong>
</div>
<div class='panel-footer'>
Python, Jupyter, Tensorflow, Pandas, NumPy
</div>
</div>
</div>
</div>
</div>
<br><br><br><br>
<div class='proj-text'>
<div class='row'>
<div class='col-sm-4 wow fadeInLeft' align="center">
<img src="img/projects/Air pollution eda.png" alt='Air Pollution EDA Project' class='thumbnail' style="height: 150% !important;width: 70% !important;">
<div class='proj-panel'>
<div class='panel-heading'>
<div class='proj-panel-heading'>
<strong>
Air Pollution Levels - Exploratory Data Analysis
</strong>
</div>
</div>
<div class='panel-body'>
A research project which attempts to explore the various levels of air pollution across the years 2017-2021 India. Complete with hypothesis and inferences.
<br><br>
<strong><a href="https://github.com/Pareek-yash/Air-Pollution-Levels-Exploratory-Data-Analysis" class="hub" target='_blank'>Github</a>
</strong>
</div>
<div class='panel-footer'>
Python, Jupyter Notebooks, Pandas, Numpy, MatPlotLib
</div>
</div>
</div>
<!-- Project - Latest-->
<div class='col-sm-4 wow fadeInUp' align="center">
<img src="img/projects/OCR.png" alt='Firebase Integrated Restaurant' class='thumbnail' style="height: 150% !important;width: 70% !important;">
<div class='proj-panel'>
<div class='panel-heading'>
<div class='proj-panel-heading'>
<strong>
Optical Character Recognition
</strong>
</div>
</div>
<div class='panel-body'>
This OCR system is used to recognize numbers/digits making use of the popular MNIST dataset.<br><br>
<strong><a href="https://github.com/Pareek-Yash/Optical-Character-Recognition-MNIST" class="hub" target='_blank'>Github</a> |
<a href="https://firebase-restaurant.herokuapp.com/" class="hub" target="_blank">Demo</a>
</strong>
</div>
<div class='panel-footer'>
Tensorflow, Numpy, Python
</div>
</div>
</div>
<div class='col-sm-4 wow fadeInRight' align="center">
<img src="img/projects/ComputerVision.png" alt='Computer Vision Project' class='thumbnail proj-img' style="height: 150% !important; width: 74% !important; ">
<div class='proj-panel'>
<div class='panel-heading'>
<div class='proj-panel-heading'>
<strong>
Image Recognition - Computer Vision Web App
</strong>
</div>
</div>
<div class='panel-body'>
This elegant-looking website has the power to interpret complex objects that are present in the image. The engine provides a subtle description of the content present in the image with the confidence levels.<br><br>
<strong><a href="https://github.com/Pareek-yash/Image-Recognition-Website" class="hub" target='_blank'>Github</a></strong> |
<strong><a href="https://image-recognition-yash.herokuapp.com/" class="hub" target='_blank'>Demo</a></strong>
</div>
<div class='panel-footer'>
Microsoft API, HTML5, CSS3, BootStrap3, Javascript
</div>
</div>
</div>
</div>
</div>
<strong><a href="projects.html" class="hub" target='_blank' >And More...</a>
<br><br><br>
</section>
<section class='page3' id="skilll">
<div class="wrapper style1">
<article id="skills">
<div class="row reponsive">
<div class='col-sm-12'>
<div class='headings'><br>
Technologies I've Worked On
</div>
</div>
</div>
<br>
<div class="container">
<div class="row skillbar-wraps">
<div class="col-lg-4 skill-left">
<h4 class="text-center pt-50"> Devops </h4>
<div class="single-skill">
<p>
Databases (SQL)
</p>
<div class="skill" data-width="80"></div>
</div>
<div class="single-skill">
<p>
Servers (Linux / Bash) - 75
</p>
<div class="skill" data-width="80"></div>
</div>
<div class="single-skill">
<p>
Big Data (HIVE / Spark) - 60
</p>
<div class="skill" data-width="60"></div>
</div>
</div>
<div class="col-lg-4 skill-right">
<h4 class="text-center pt-50">Machine Learning</h4>
<div class="single-skill">
<p>
Python
</p>
<div class="skill" data-width="100"></div>
</div>
<div class="single-skill">
<p>
Computer Vision (TensorFlow)
</p>
<div class="skill" data-width="80"></div>
</div>
<div class="single-skill">
<p>
NLP (TensorFlow)
</p>
<div class="skill" data-width="80"></div>
</div>
</div>
<div class="col-lg-4 skill-right">
<h4 class="text-center pt-50"> Data Analytics </h4>
<div class="single-skill">
<p>
Visualization (Tableau)
</p>
<div class="skill" data-width="90"></div>
</div>
<div class="single-skill">
<p>
Statistical Methods
</p>
<div class="skill" data-width="80"></div>
</div>
<div class="single-skill">
<p>
Presenting
</p>
<div class="skill" data-width="50"></div>
</div>
</div>
</div>
</div>
<br>
<dl class="skills-diagram" style="padding-top: 40px;">
<dt class="skill-6">PyTorch</dt>
<dd>3</dd>
<dt class="skill-7">C++</dt>
<dd>8</dd>
<dd>6</dd>
<dt class="skill-9">Python</dt>
<dd>8</dd>
<dd>5</dd>
<dt class="skill-5">Java</dt>
<dd>7</dd>
<dt class="skill-6">Keras</dt>
<dd>4</dd>
<dt class="skill-8">Azure</dt>
<dd>7</dd>
<dt class="skill-4">JS</dt>
<dd>4</dd>
<dt class="skill-6">AWS</dt>
<dd>6</dd>
<dd>4</dd>
<dt class="skill-8">Tensorflow</dt>
<dd>3</dd>
<dt class="skill-7">Numpy</dt>
<dd>4</dd>
<dt class="skill-8">Pandas</dt>
<dd>6</dd>
<dd>3</dd>
<dt class="skill-6">SQL</dt>
<dd>5</dd>
<dt class="skill-5">Git</dt>
<dt class="skill-8">Firebase BaaS</dt>
<dd>5</dd>
<dt class="skill-8">Matplotlib</dt>
<dd>5</dd>
</dl>
</article>
</section>
<!-- Contact -->
<div class="wrapper style4 pt20" style="background-color: #303030 " id="contactt">
<article id="contact" class="container 75% pb50">
<header class="tech pt20">
<h2><b><center>Let's get in touch.</center></b></h2>
<h4 ><b><center>[email protected] </center></b></h4>
<h4 style="color: gray; "><b><center>I am the one who still reads emails :)</center></b></h4>
</header>
<div>
<!--<div class="row hidden">
<div class="typeform-widget" data-url="https://yash186.typeform.com/to/liFQx8" style="width: 100%; height: 500px;" >
</div> <script>
(function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm", b="https://embed.typeform.com/"; if(!gi.call(d,id)) { js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })()
</script>
</div>-->
</div>
</article>
<center>
<div class="row container" style="left: 20%">
<div class="12u">
<hr />
<h3 style=" color: gray !important;">Let's be Social ...</h3>
<ul class="social">
<li><a href="https://github.com/Pareek-yash" class="icon fa fa-github"><span class="label">Github</span></a></li>
<li><a href="https://in.linkedin.com/in/Pareek-yash" class="icon fa fa-linkedin"><span class="label">LinkedIn</span></a></li>
<li><a class=" fa fa-envelope-o" href="mailto:[email protected]"><span class="label">Mail</span></a></li>
</ul>
<hr />
</div>
</div>
</center>
</div>
</div>
<div class="footer-wrapper">
<footer class="site-footer">
<center><div>Copyrights © Yash Pareek 2023</div></center>
</footer><!-- .site-footer -->
</div>
<!-- <script src="js/bootstrap.js"></script>-->
<script src="js/jquery.min.js" type="text/javascript"></script>
<!--<script src="js/bootstrap.min.js" type="text/javascript"></script>-->
<!-- jquery easing -->
<script src="js/wow.min.js"></script>
<script src="js/custom.js"></script>
<script>
new WOW().init();
</script>
<script type="text/javascript">
$(document).ready(function() {
$('#month').multiselect();
});
</script>
<script>
$(function(){
$("#typed").typed({
// strings: ["Typed.js is a <strong>jQuery</strong> plugin.", "It <em>types</em> out sentences.", "And then deletes them.", "Try it out!"],
stringsElement: $('#typed-strings'),
typeSpeed: 0,
backDelay: 1500,
loop: true,
contentType: 'html', // or text
// defaults to false for infinite loop
loopCount: false,
callback: function(){ foo(); },
resetCallback: function() { newTyped(); }
});
$(".reset").click(function(){
$("#typed").typed('reset');
});
});
function newTyped(){ /* A new typed object */ }
function foo(){ console.log("Callback"); }
</script>
<script>
$(document).ready(function() {
$('#new-btn').on('click', function() {
$('#new-div').append($('.fileinputs').html());
});
$(document).on('fileselect', '.btn-file :file', function(event, numFiles, label) {
var input = $(this).closest('.input-group').find(':text'),
log = numFiles > 1 ? numFiles + ' files selected' : label;
if (input.length) {
input.val(log);
} else {
if (log) alert(log);
}
});
});
$(document).on('change', '.btn-file :file', function() {
var input = $(this),
numFiles = input.get(0).files ? input.get(0).files.length : 1,
label = input.val().replace(/\\/g, '/').replace(/.*\//, '');
input.trigger('fileselect', [numFiles, label]);
console.log('triggered');
});
</script>
<script type="text/javascript" src="https://davidstutz.github.io/bootstrap-multiselect/dist/js/bootstrap-multiselect.js"></script>
<script type="text/javascript" src="js/jquerypp.custom.js"></script>
<script type="text/javascript" src="js/jquery.elastislide.js"></script>
<script type="text/javascript">
$( '#carousel' ).elastislide( {
minItems : 1
} );
$( '#carousel1' ).elastislide( {
minItems : 1
} );
</script>
<script>
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.substr(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
});
});
</script>
<script src="js/typed.js"></script>
<script src="js/main.js"></script>
<script src="js/simple-skillbar.js"></script>
</body>
</html>