-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
908 lines (876 loc) · 49.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="images/favicon.png">
<meta name="description" content="Data science portfolio, Personal Website and Resume Sagar Kar">
<meta name="keywords" content="sagarkar10 data science resume website sagar kar">
<meta name="author" content="Sagar Kar">
<title>sagarkar10</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Icons -->
<link href="fonts/material-design-iconic-font/css/material-design-iconic-font.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Ionicons -->
<link href="fonts/ionicons/css/ionicons.min.css" rel="stylesheet">
<!-- Owl Carousel -->
<link href="css/owl.carousel.css" rel="stylesheet">
<link href="css/owl.theme.default.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Special+Elite&display=swap" rel="stylesheet">
<link rel="stylesheet" title="deep_purple" type="text/css" data-color="#673AB7" href="color/deep_purple.css" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Search -->
<div class="search-overlay"></div>
<div class="search">
<a href="#" class="search-close"><i class="md md-close"></i></a>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<h4>Just Start Typing Text and Press Enter</h4>
<form class="search-form">
<input type="text" id="search" name="search" class="text-center" />
</form>
<!-- end .search-form -->
</div>
<!-- end .col-sm-6 -->
</div>
<!-- end .row -->
</div>
<!-- end .row -->
<!-- Slide Out -->
<div class="slide-out-overlay"></div>
<div class="slide-out">
<header class="slide-out-header clearfix">
<div class="clearfix">
<a href="#" class="slide-out-close pull-left"><i class="md md-close"></i></a>
<a href="#" class="open-search pull-right"><i class="md md-search"></i></a>
<a href="#" class="slide-out-share pull-right"><i class="md md-more-vert"></i></a>
</div>
<!-- end .clearfix -->
<div class="image"><img src="images/front.png" style="padding-top: 30px" alt="alt text"
class="img-responsive">
</div>
<div class="content">
<h5>Sagar Kar</h5>
<span>Machine Learning Engineer</span>
</div>
<!-- end .content -->
<div class="text-right">
<a href="/cv/MyResume.pdf" class="button link-button white icon-left"><i
class="md md-file-download"></i>Download Resume</a>
</div>
<!-- end .text-right -->
</header>
<!-- end .slide-out-header -->
<div class="slide-out-widgets">
<div class="slide-out-widget">
<h4>Drink A Coffee With Me Today</h4>
<h9>Not Sure Who Is Going To Pay :p</h9>
<form action="https://formspree.io/xvorlvdo" method="post" class="form-horizontal contact-form">
<div class="form-group">
<label class="col-sm-3 control-label">Name</label>
<div class="col-sm-9">
<input type="text" class="contact-name" name="contact-name" />
</div>
<!-- end .col-sm-9 -->
</div>
<!-- end .form-group -->
<div class="form-group">
<label class="col-sm-3 control-label">Email</label>
<div class="col-sm-9">
<input type="email" class="contact-email" name="contact-email" />
</div>
<!-- end .col-sm-9 -->
</div>
<!-- end .form-group -->
<div class="form-group">
<label class="col-sm-3 control-label">Message</label>
<div class="col-sm-9">
<textarea name="contact-message" class="contact-message" rows="3"></textarea>
</div>
<!-- end .col-sm-9 -->
</div>
<!-- end .form-group -->
<div class="form-group">
<div class="col-sm-9 col-sm-offset-3">
<button type="submit" class="button solid-button purple">Send Message</button>
</div>
<!-- end .col-sm-9 -->
</div>
<!-- end .form-group -->
<div class="contact-loading alert alert-info form-alert">
<span class="message">Loading...</span>
<button type="button" class="close" data-hide="alert" aria-label="Close"><i
class="fa fa-times"></i>
</button>
</div>
<div class="contact-success alert alert-success form-alert">
<span class="message">Success!</span>
<button type="button" class="close" data-hide="alert" aria-label="Close"><i
class="fa fa-times"></i>
</button>
</div>
<div class="contact-error alert alert-danger form-alert">
<span class="message">Error!</span>
<button type="button" class="close" data-hide="alert" aria-label="Close"><i
class="fa fa-times"></i>
</button>
</div>
</form>
<!-- end contact-form -->
</div>
</div>
<!-- end .slide-out-widgets -->
</div>
<!-- end .slide-out -->
<!-- Header -->
<header class="header">
<div class="top clearfix">
<a href="#section6" class="available" style="display:none"><i
class="ion-ios-email-outline"></i><span>Available For Freelancing</span></a>
<div class="right-icons">
<a href="#" style="display:none" class="open-search header-open-search"><i class="md md-search"></i></a>
<a href="/cv/MyResume.pdf" style="display:none" class="download"><i class="md md-file-download"></i></a>
</div>
<!-- end .right-icons -->
</div>
<!-- end .top -->
<div class="bottom clearfix">
<!-- Something might go here as tittle-->
<div class="title" style="font-family:Special Elite, georgia,garamond,serif;">sagarkar10<a href="#"></a>
</div>
<div class="header-action-button-wrapper">
<a href="#" class="header-action-button action-button"><i class="md md-add"></i></a>
</div>
<!-- end .header-action-button-wrapper -->
<a href="#" class="responsive-menu-open">Menu <i class="fa fa-bars"></i></a>
<nav class="main-nav">
<ul class="list-unstyled">
<li class="active"><a href="#section1">Home</a>
</li>
<li><a href="#section2">About</a>
</li>
<li><a href="#section3">Skill</a>
</li>
<li><a href="#section4">Experience</a>
</li>
<li><a href="#section5">Education</a>
</li>
<!--
<li><a href="#section6######changed">Work</a>
</li>
<li><a href="#section7######changed">Blog</a>
</li>
-->
<li><a href="#section6">Contact</a>
</li>
</ul>
</nav>
<!-- end .main-nav -->
</div>
<!-- end .bottom -->
</header>
<!-- end .header -->
<div class="responsive-menu">
<a href="#" class="responsive-menu-close">Close <i class="ion-android-close"></i></a>
<nav class="responsive-nav"></nav>
<!-- end .responsive-nav -->
</div>
<!-- end .responsive-menu -->
<!-- Section Navigation -->
<div class="section-nav">
<nav class="section1">
<a href="#section2" class="forward"><i class="md md-chevron-right"></i></a>
<a href="#section1" class="backward"><i class="md md-chevron-left"></i></a>
</nav>
</div>
<!-- end .section-nav -->
<!-- Sections -->
<div class="sections">
<div class="sections-wrapper clearfix">
<!-- Home -->
<section id="section1" class="no-padding-bottom active">
<div class="container">
<div class="row">
<div class="col-sm-7 vertical-center padding-fix">
<h1 style="font-family:Special Elite, georgia,garamond,serif;">Dream<sup>+</sup>
Develop<sup>+</sup> Code<sup>+</sup> Contribute<sup>+</sup></h1>
<div style="height:300px">
<p id="typed-string"
style="display:inline; font-family:Special Elite, georgia,garamond,serif;font-size:22px; line-height:1.2;">
</p>
<br>
<p id="typed-string2"
style="display:inline; font-family:Special Elite, georgia,garamond,serif;font-size:22px; line-height:2;">
</p>
</div>
<p class="button-row">
<a href="/cv/MyResume.pdf" class="button solid-button purple" target="_blank">Download
CV</a>
<a href="https://medium.com/@sagarkar10" class="button solid-button white"
target="_blank">View Blog</a>
</p>
</div>
<!-- end .col-sm-7 -->
<div class="col-sm-5 vertical-center">
<!-- <img src="images/front.png" alt="man" class="img-responsive section-img">-->
</div>
<!-- end .col-sm-5 -->
</div>
<!-- end .row -->
</div>
<!-- end .container -->
</section>
<!-- end #section1 -->
<!-- About -->
<section id="section2">
<div class="container">
<h2>About Me</h2>
<div class="row">
<div class="col-sm-3">
<!-- sagarkar image goes here -->
<img src="images/front.png" style="border-radius: 50%;" alt="man"
class="img-responsive section-img">
</div>
<!-- end .col-sm-3 -->
<div class="col-sm-9">
<h3 class="small-margin-bottom">Sagar Kar</h3>
<h5>Geek | No-Geek</h5>
<p
style="font-family: Special Elite, georgia, garamond,serif; font-size:20px; line-height: 1.2;">
I Love to spend my time finding more about the things I know and a sometime about things
I don't.
If you like to create and kill 'BUGS', Party Hard, Dream Big or a noob Philospher like
me, you will feel right at home with me.
<br>I am more of a laid-back ambitious coder who is worried about not putting my skills
to proper use.
My interests include Automation, Machine Learning, Mathematics, Analytics. I have more
than 4 years of developing and programming experience,
with two plus years of professional experience in Data Science domain.
I like to share what I know and would like to learn more about what I dont.
If you feel I can help you or better if you can help me in any way please ping me.
</p>
<!-- <div class="signature"><img src="images/signature.png" alt="signature" class="img-responsive">
</div> -->
<ul class="changed_to_no_style">
<li><b>Date Of Birth:</b> 10 SEP 1995</li>
<li><b>Phone:</b> 7002086905</li>
<li><b>Email:</b> [email protected]</li>
<li><b>Address:</b> Indiranagar, Bangalore, Karnataka, India</li>
<li><b>Website:</b> sagarkar10.github.io</li>
</ul>
<!-- end .list-unstyled -->
<div class="spacer"></div>
<h3>What I Do</h3>
<div class="row">
<div class="col-sm-2 col-sm-offset-1 col-xs-6">
<div class="icon-box">
<div class="icon"><i class="ion-ios-analytics"></i>
</div>
<h6>Data Science</h6>
</div>
<!-- end .service -->
</div>
<!-- end .col-sm-4 -->
<div class="col-sm-2 col-xs-6">
<div class="icon-box">
<div class="icon"><i class="ion-monitor"></i>
</div>
<h6>AI/ML</h6>
</div>
<!-- end .service -->
</div>
<!-- end .col-sm-4 -->
<div class="col-sm-2 col-xs-6">
<div class="icon-box">
<div class="icon"><i class="ion-code-working"></i>
</div>
<h6>Development</h6>
</div>
<!-- end .service -->
</div>
<!-- end .col-sm-4 -->
</div>
<div class="spacer" style="height:10px;"></div>
<h3>Hobbies & Interest</h3>
<div class="row">
<div class="col-sm-2 col-sm-offset-1 col-xs-6">
<div class="icon-box">
<div class="icon"><i class="ion-easel"></i>
</div>
<h6>Web Research</h6>
</div>
<!-- end .icon-box -->
</div>
<!-- end .col-sm-2 -->
<div class="col-sm-2 col-xs-6">
<div class="icon-box">
<div class="icon"><i class="ion-ios-camera-outline"></i>
</div>
<h6>Photography</h6>
</div>
<!-- end .icon-box -->
</div>
<!-- end .col-sm-2 -->
<div class="col-sm-2 col-xs-6">
<div class="icon-box">
<div class="icon"><i class="ion-plane"></i>
</div>
<h6>Travelling</h6>
</div>
<!-- end .icon-box -->
</div>
<!-- end .col-sm-2 -->
<div class="col-sm-2 col-xs-6">
<div class="icon-box">
<div class="icon"><i class="ion-ios-bookmarks-outline"></i>
</div>
<h6>Cardistry</h6>
</div>
<!-- end .icon-box -->
</div>
<!-- end .col-sm-2 -->
<div class="col-sm-2 col-xs-6">
<div class="icon-box">
<div class="icon"><i class="ion-ios-musical-notes"></i>
</div>
<h6>Music</h6>
</div>
<!-- end .icon-box -->
</div>
<!-- end .col-sm-2 -->
</div>
<!-- end .row -->
</div>
<!-- end .col-sm-9 -->
</div>
<!-- end .row -->
</div>
<!-- end .container -->
</section>
<!-- end #section1 -->
<!-- Skills -->
<section id="section3">
<div class="container">
<h2>Professional Skills</h2>
<div class="row">
<div class="col-sm-6">
<h4>Certifications and Courses</h4>
<label class="progress-bar-label">Machine Learning by Stanford University <a
href="https://coursera.org/share/a9cebfd9920a2174566a289e0318dd90"
rel="noreferrer">(View)</a></label>
<!-- <div class="progress">-->
<!-- <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">-->
<!-- <span>100%</span>-->
<!-- </div>-->
<!-- <!– end .progress-bar –>-->
<!-- </div>-->
<!-- end .progress -->
<label class="progress-bar-label">Neural Networks and Deep Learning by deeplearning.ai <a
href="https://coursera.org/share/65260245e4470c28b7a653a29a13e3fb"
rel="noreferrer">(View)</a></label>
<!-- <div class="progress">-->
<!-- <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">-->
<!-- <span>100%</span>-->
<!-- </div>-->
<!-- end .progress-bar -->
<!-- </div>-->
<!-- end .progress -->
<label class="progress-bar-label">Machine Learning Foundations: University of Washington <a
href="https://coursera.org/share/76bef49f24830997e22aa055fc6485ca"
rel="noreferrer">(View)</a></label>
<!-- <div class="progress">-->
<!-- <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">-->
<!-- <span>100%</span>-->
<!-- </div>-->
<!-- end .progress-bar -->
<!-- </div>-->
<!-- end .progress -->
<label class="progress-bar-label">Intro to Machine Learning : Google</label>
<!-- <div class="progress">-->
<!-- <div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100">-->
<!-- <span>80%</span>-->
<!-- </div>-->
<!-- end .progress-bar -->
<!-- </div>-->
<!-- end .progress -->
<label class="progress-bar-label">NLP with Deep Learning</label>
<!-- <div class="progress">-->
<!-- <div class="progress-bar" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100">-->
<!-- <span>40%</span>-->
<!-- </div>-->
<!-- end .progress-bar -->
<!-- </div>-->
</div>
<!-- end .col-sm-6 -->
<div class="col-sm-6">
<h4>Knowledge</h4>
<div class="row">
<div class="col-sm-6">
<ul class="list-icons purple bold-list">
<li><i class="md-arrow-forward"></i>Machine Learning</li>
<li><i class="md-arrow-forward"></i>Data Analysis</li>
<li><i class="md-arrow-forward"></i>Design & Analysis Of Algorithms</li>
<li><i class="md-arrow-forward"></i>Competitive Programming</li>
<li><i class="md-arrow-forward"></i>Open Source Contribution</li>
<li><i class="md-arrow-forward"></i>Data Structures</li>
<li><i class="md-arrow-forward"></i>Object Oriented Design</li>
</ul>
</div>
<!-- end .col-sm-6 -->
<div class="col-sm-6">
<ul class="list-icons purple bold-list">
<li><i class="md-arrow-forward"></i>Software Development</li>
<li><i class="md-arrow-forward"></i>Web Development</li>
<li><i class="md-arrow-forward"></i>Docker Architecture</li>
<li><i class="md-arrow-forward"></i>Data Scrapping and Parsing</li>
<li><i class="md-arrow-forward"></i>Version Control System</li>
<li><i class="md-arrow-forward"></i>Unix Tools and Scripting</li>
<li><i class="md-arrow-forward"></i>Testing and Troubleshooting</li>
<li><i class="md-arrow-forward"></i>Development-Operations</li>
</ul>
</div>
<!-- end .col-sm-6 -->
</div>
<!-- end .row -->
</div>
<!-- end .col-sm-6 -->
</div>
<!-- end .row -->
<div class="spacer"></div>
<div id="plot-skills" class="row" style="overflow: auto"></div>
<p>*Self Recognized</p>
<!-- end .row -->
</div>
<!-- end .container -->
</section>
<!-- end #section1 -->
<!-- Experience -->
<section id="section4">
<div class="container">
<h2>Experience Timeline</h2>
<div class="experience-timeline">
<div class="experience-block clearfix">
<div class="meta">
<span class="year">December 2021 - Present</span>
<span class="company">Sense </span>
</div>
<!-- end .meta -->
<div class="content">
<h5>Senior Machine Learning Engineer</h5>
<p>
</br> Building pipelines used by ML backend for recruitment Chatbot, used by different staffing agencies.
</br> Advancing legacy platform towards a microservice based architecture while being more ML friendly for quick cycles of modeling and development in general.
</p>
</div>
<!-- end .content -->
<div class="icon">
<i class="ion-easel"></i>
</div>
<!-- end .icon -->
<div class="line"></div>
</div>
<div class="experience-block clearfix">
<div class="meta">
<span class="year">August 2020 - December 2021</span>
<span class="company">Unbxd </span>
</div>
<!-- end .meta -->
<div class="content">
<h5>Machine Learning Engineer</h5>
<p>
</br> Learning To Rank: Modelling Ranking systems to score based on LambdaRank and
LambdaMart using behavour specific and clickstream data.
</br> Data Pipelines: Creating reusable and robbust data and process pipelines to be
used as kubeflow spark components
</p>
</div>
<!-- end .content -->
<div class="icon">
<i class="ion-easel"></i>
</div>
<!-- end .icon -->
<div class="line"></div>
</div>
<div class="experience-block clearfix">
<div class="meta">
<span class="year">April 2019 - August 2020</span>
<span class="company">Insider.in </span>
</div>
<!-- end .meta -->
<div class="content">
<h5>Machine Learning Specialist</h5>
<p>
</br>Dynamic Pricing statistical model to Predict and affect event ticket pricing
based on live demand and previous trends.
</br>Recommendation System for event space having highly volatile items.
</br>Worked with Named Entity Recognition using NLTK and RNN to extract event
details from event banner and posters.
</p>
</div>
<!-- end .content -->
<div class="icon">
<i class="ion-easel"></i>
</div>
<!-- end .icon -->
<div class="line"></div>
</div>
<div class="experience-block clearfix">
<div class="meta">
<span class="year">June 2018 - April 2019</span>
<span class="company">SigTuple </span>
</div>
<!-- end .meta -->
<div class="content">
<h5>AI Engineer</h5>
<p>
</br>Worked in Machine Learning and Data Science with Medical Data to provide
Cognitive and Data-Driven Intelligence in the field of healthcare and medical
screening autonation.
</br>Microscopic Video analysis and modeling for particle detection and cell
tracking using Deep-CNN to report and classify disease with Human level accuracy.
</br>ELT, EDA, and visualization of various medical data forfor R&D to recognize,
analyse and solve domain-specific or hardware-specific challenges.
</br>Implementation of multiple research works in AI/ML for applied and business
use-cases with modification to adapt data, product and hardware constraints.
</p>
</div>
<!-- end .content -->
<div class="icon">
<i class="ion-easel"></i>
</div>
<!-- end .icon -->
<div class="line"></div>
</div>
<div class="experience-block clearfix">
<div class="meta">
<span class="year">May - July 2017</span>
<span class="company">NotionInk (Inkers) </span>
</div>
<!-- end .meta -->
<div class="content">
<h5>DNN and AI Intern</h5>
<p>
</br>Worked in Computer Vision developing state-of-art object recognition model for
the ARM-architecture
</br>Trained and tested model for low processing CPU's to replicate the bench-marked
results and achieved almost 10 percent more efficiency
</br>Implemented Darknet's YOLO for ARM (aarch_64_v8.2), debugged the cross platform
application
</br>Got working experience with remote GDB in cross compilation on X15 and
Raspberry Pi
</br>Used Arm-Compute Library, Intel-MKL library for accelerating the computing
efficiency on the ARM-architecture, Intel
</p>
</div>
<!-- end .content -->
<div class="icon">
<i class="ion-easel"></i>
</div>
<!-- end .icon -->
<div class="line"></div>
</div>
<div class="experience-block clearfix">
<div class="meta">
<span class="year">May - July 2016</span>
<span class="company">Priceboard.in</span>
</div>
<!-- end .meta -->
<div class="content">
<h5>Data Science and DevOps Intern</h5>
<p>Contributed and monitored the open source project <a
href="https://github.com/PriceBoardIn/aws-elk-billing"><i>AWS-ELK-BILLING</i></a>,
and was able to get over 100 stars in github in less than 2 months.<br>Used Docker
architecture to construct the entire stack for the project.<br>Worked on
elsaticsearch to increase the product search accuracy and also implemented Machine
Learning to make email-recommending system.<br>Parsed and Scrapped data for Analysis
and Machine Learning from various e-commerce websites like flipkart, amazon,
snapdeal.<br>Got familiar with test driven development and also applied continuous
intigration using TravisCI which improved the development time and accuracy</p>
</div>
<!-- end .content -->
<div class="icon">
<i class="ion-easel"></i>
</div>
<!-- end .icon -->
<div class="line"></div>
</div>
<!-- end .experience-block -->
<div class="experience-block clearfix">
<div class="meta">
<span class="year">Aug 2015 – May 2018</span>
<span class="company">CSS,NITS</span>
</div>
<!-- end .meta -->
<div class="content">
<h5>TEACHING ASSISTANT</h5>
<p>Supported fellow juniors with C/C++ programming language under the direction and
guidance of teachers, using lectures and assignments.<br>Tutored over 50 students in
a large group setting to help them master assignments and reinforce concepts.</p>
</div>
<!-- end .content -->
<div class="icon">
<i class="ion-images"></i>
</div>
<!-- end .icon -->
<div class="line"></div>
</div>
<!-- end .experience-block -->
<div class="experience-block clearfix">
<div class="meta">
<span class="year">May 2015 – May 2018</span>
<span class="company">HACKERRANK & HACKEREARTH </span>
</div>
<!-- end .meta -->
<div class="content">
<h5>CAMPUS AMBASSADOR</h5>
<p>Participated actively in these websites for Coding Competitions and other programming
events to gain experience and sharpen my skills.<br>Managed official pages for both
the organisations for publicity, development and co-ordinations among other
Campus-Ambassadors.</p>
</div>
<!-- end .content -->
<div class="icon">
<i class="ion-card"></i>
</div>
<!-- end .icon -->
</div>
<!-- end .experience-block -->
</div>
<!-- end .experience-timeline -->
</div>
<!-- end .container -->
</section>
<!-- end #section1 -->
<!-- Education -->
<section id="section5">
<div class="container">
<h2>Educational Timeline</h2>
<div class="education clearfix">
<div class="item">
<div class="marker"></div>
<div class="content">
<span>S.P.E.M.H. SCHOOL, DHUBRI</span>
<h4>Schooling</h4>
</div>
<div class="year">2000 - 2012</div>
</div>
<!-- end item -->
<div class="item">
<div class="marker"></div>
<div class="content">
<span>SSA, GUWAHATI</span>
<h4>HIGHER SECONDARY</h4>
</div>
<div class="year">2012 - 2014</div>
</div>
<!-- end item -->
<div class="item">
<div class="marker"></div>
<div class="content">
<span>NIT, SILCHAR</span>
<h4>B.TECH, CSE</h4>
</div>
<div class="year">2014 - 2018</div>
</div>
<!-- end item -->
<div class="item">
<div class="marker"></div>
<div class="content">
<span>Everywhere</span>
<h4>Learning Whatever I Want</h4>
</div>
<div class="year">2018 - Present</div>
</div>
<!-- end item -->
<div class="line"></div>
</div>
<!-- end .education -->
</div>
<!-- end .container -->
</section>
<!-- end #section1 -->
<!-- Contact -->
<section id="section6">
<div class="container">
<h2>Get In Touch With Me</h2>
<div class="row">
<div class="col-sm-5">
<h5>Contact Address</h5>
<ul class="list-icons list-unstyled">
<li><i class="ion-ios-location-outline"></i>Indiranagar, Bangalore,
<br />Karnataka, India.
</li>
<li><i class="ion-iphone"></i>Phone: +91 7002086905</li>
<li><i class="ion-ios-email-outline"></i>Email: <a
href="mailto:[email protected]">[email protected]</a>
</li>
<li><i class="ion-ios-home-outline"></i>Website: <a
href="sagarkar10.github.io">sagarkar10.github.io</a>
</li>
</ul>
<div class="spacer"></div>
<div class="social-icons">
<!-- <a href="https://facebook.com/sagarkar10" class="social-icon"><i class="fa fa-facebook"></i></a>-->
<a href="https://linkedin.com/in/sagarkar10" class="social-icon"><i
class="fa fa-linkedin"></i></a>
<a href="https://github.com/sagarkar10" class="social-icon"><i
class="fa fa-github"></i></a>
<a href="https://twitter.com/sagarkar10" class="social-icon"><i
class="fa fa-twitter"></i></a>
<a href="https://medium.com/@sagarkar10" class="social-icon"><i
class="fa fa-medium"></i></a>
</div>
<!-- end .social-icons -->
<div class="spacer"></div>
</div>
<div class="col-sm-7">
<h5>Contact Form</h5>
<form action="https://formspree.io/xvorlvdo" method="post"
class="form-horizontal contact-form">
<div class="form-group">
<label class="col-sm-2 control-label">Name</label>
<div class="col-sm-10">
<input type="text" class="contact-name" name="contact-name" />
</div>
<!-- end .col-sm-10 -->
</div>
<!-- end .form-group -->
<div class="form-group">
<label class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="contact-email" name="contact-email" />
</div>
<!-- end .col-sm-10 -->
</div>
<!-- end .form-group -->
<div class="form-group">
<label class="col-sm-2 control-label">Message</label>
<div class="col-sm-10">
<textarea name="contact-message" class="contact-message" rows="3"></textarea>
</div>
<!-- end .col-sm-10 -->
</div>
<!-- end .form-group -->
<div class="form-group">
<div class="col-sm-10 col-sm-offset-2">
<button type="submit" class="button solid-button purple">Send Message</button>
</div>
<!-- end .col-sm-10 -->
</div>
<!-- end .form-group -->
<div class="contact-loading alert alert-info form-alert">
<span class="message">Loading...</span>
<button type="button" class="close" data-hide="alert" aria-label="Close"><i
class="fa fa-times"></i>
</button>
</div>
<div class="contact-success alert alert-success form-alert">
<span class="message">Success!</span>
<button type="button" class="close" data-hide="alert" aria-label="Close"><i
class="fa fa-times"></i>
</button>
</div>
<div class="contact-error alert alert-danger form-alert">
<span class="message">Error!</span>
<button type="button" class="close" data-hide="alert" aria-label="Close"><i
class="fa fa-times"></i>
</button>
</div>
</form>
<!-- end contact-form -->
</div>
</div>
<div class="map" id="map" style="height: auto"></div>
</div>
<!-- end .container -->
</section>
<!-- end #section1 -->
</div>
<!-- end .sections-wrapper -->
</div>
<!-- end .sections -->
<!-- Footer -->
<footer class="footer">
<div class="top">
<div class="container">
<div class="row">
<div class="col-sm-4">
<h4>Address</h4>
<p>Indiranagar, Bangalore,
<br />Karnataka, India.
</p>
</div>
<!-- end .col-sm-4 -->
<div class="col-sm-4">
<h4>Connect</h4>
<div class="social-icons">
<!-- <a href="https://facebook.com/sagarkar10" class="social-icon"><i class="fa fa-facebook"></i></a>-->
<a href="https://linkedin.com/in/sagarkar10" class="social-icon"><i
class="fa fa-linkedin"></i></a>
<a href="https://github.com/sagarkar10" class="social-icon"><i class="fa fa-github"></i></a>
<a href="https://twitter.com/sagarkar10" class="social-icon"><i
class="fa fa-twitter"></i></a>
<a href="https://medium.com/@sagarkar10" class="social-icon"><i
class="fa fa-medium"></i></a>
</div>
<!-- end .social-icons -->
</div>
<!-- end .col-sm-4 -->
<div class="col-sm-4">
<h4>Contact</h4>
<p>Tel: +91 7002086905
<br />Mail: [email protected]
</p>
</div>
<!-- end .col-sm-4 -->
</div>
<!-- end .row -->
</div>
<!-- end .container -->
</div>
<!-- end .footer -->
<div class="bottom">Copyright © sagarkar10. All Rights Reserved.</div>
<!-- end .bottom -->
</footer>
<!-- end .footer -->
<!-- jQuery -->
<script src="js/jquery-1.11.2.min.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Inview -->
<script src="js/jquery.inview.min.js"></script>
<!-- SmoothScroll -->
<script src="js/smoothscroll.js"></script>
<!-- jQuery Knob -->
<script src="js/jquery.knob.min.js"></script>
<!-- Owl Carousel -->
<script src="js/owl.carousel.min.js"></script>
<!-- Isotope -->
<script src="js/isotope.pkgd.min.js"></script>
<!-- Images Loaded -->
<script src="js/imagesloaded.pkgd.min.js"></script>
<!-- google maps
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
-->
<!-- Scripts.js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/typewriter.js"></script>
<script src="js/plotly.js"></script>
<!-- uncommnet to chose cholor scheme
<script src="js/picker.js"></script>
-->
</body>
</html>