-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
951 lines (821 loc) · 56.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tushar Budhwani | Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/fontawesome.min.css"
integrity="sha512-cHxvm20nkjOUySu7jdwiUxgGy11vuVPE9YeK89geLMLMMEOcKFyS2i+8wo0FOwyQO/bL8Bvq1KMsqK4bbOsPnA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,300&display=swap" rel="stylesheet">
<link rel="icon" href="assets/img/tb_logo_no_bg_cropped.png" type="image/icon type">
</head>
<body>
<button id="modeToggle" class="mode-toggle">
<i class="fas fa-moon"></i>
</button>
<a onclick="topFunction()" id="myBtn" title="Go to top" class="bg-dark"><i class="fa-solid fa-angles-up"></i></a>
<div class="entire-page overflow-hidden">
<!-- <nav class="navbar nav-top text-white"
style="padding: 0%; margin: 0%;">
<div class="container-fluid justify-content-end">
<a class="navbar-brand"> <img src="assets/img/tb_logo_no_bg.png" height="80" alt="tb_logo"></a>
<div class="collapse navbar-collapse justify-content-end" id="navbarNavAltMarkup">
</div>
</div>
</nav> -->
<!-- Me -->
<div class="below-navbar-body pt-5" style="margin-top: 10px;">
<div id="me" class="below-navbar-body pt-5">
<div class="my-content p-2">
<div class="row pt-5 w-100">
<div class="col-md-5 col-12 text-center">
<img class="profile-image" src="assets/img/tushar.jpeg" alt="Tushar image">
</div>
<div class="col-md-7 col-12 pt-5 text-center text-md-end">
<h1 class="name">Tushar Budhwani</h1>
<p class="tagline">Harmonizing code and creativity, I'm a Computer Science student
orchestrating a symphony in the realms of Data Science and Software Engineering.</p>
<div class="contact-links">
<a href="RESUME_TUSHAR_BUDHWANI.pdf" class="btn btn-primary">
<i class="fa-solid fa-download"></i> Resume
</a>
<a href="tel:+14134661132" class="btn btn-success">
<i class="fa-solid fa-phone"></i>
</a>
<a href="mailto:[email protected]" class="btn btn-warning">
<i class="fa-solid fa-envelope"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Education -->
<div class="below-navbar-body pb-5">
<div class="profile" id="education">
<div class="my-content">
<div class="w-100 p-1 shadow card-bg">
<div class="card-body">
<p class="h1 text-center">EDUCATION</p>
<div class="container w-100 mb-2 mt-4">
<div class="d-flex flex-row flex-wrap justify-content-between mt-2">
<p class="h5 m-0">
University of Massachusetts Amherst | Master of Science in Computer Science |
GPA - 3.93 / 4.0
</p>
<p class="text-end"> Sep 2023 - May 2025</p>
<ul>
<li>
Teaching Assistant for 'Algorithms for Data Science' under Prof. Andrew McGregor for Spring 2025.
</li>
<li>Courses Taken: Algorithms for Data Science, Machine Learning, Intelligent
Visual
Computing, Information Retrieval, Software Engineering, Computer & Network
Security, Business Intelligence and Analytics, Data Science Fundamentals,
Internet Law and Policy</li>
</ul>
</div>
<hr>
<div class="d-flex flex-row flex-wrap justify-content-between mt-4">
<p class="h5 m-0">
University of Mumbai | Bachelor of Engineering in Computer Engineering | GPA -
9.15 / 10.0
</p>
<p class="text-end">Aug 2019 - May 2023</p>
<ul>
<li>
Courses Taken: Machine Learning, Artificial Intelligence, Data Warehousing & Mining, Database Management
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CORE PROFICIENCIES AND INTERESTS -->
<div class="below-navbar-body mt-5">
<div class="profile" id="proficiencies">
<div class="my-content">
<div class="pt-5 pb-5">
<div class="card-body">
<p class="h1 text-center">CORE PROFICIENCIES AND INTERESTS</p>
<div class="container w-100 mb-2 mt-4">
<div class="d-flex flex-row flex-wrap justify-content-between mt-2">
<table style="width: 100%;">
<ul>
<li>Machine Learning</li>
<li>Natural Language Processing</li>
<li>Information Retrieval</li>
</ul>
<ul>
<li>Quantitative Analytics & Predictive Modelling</li>
<li>Data Engineering</li>
<li>Data Visualization and Reporting</li>
</ul>
<ul>
<li>Full Stack Development</li>
<li>Project Management</li>
<li>Cloud Computing</li>
</ul>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- TECHNICAL SKILLS -->
<div class="below-navbar-body mt-5">
<div class="profile" id="skills">
<div class="my-content">
<div class="p-1 shadow card-bg">
<div class="card-body">
<p class="h1 text-center">TECHNICAL SKILLS</p>
<div class="container w-100 mb-2 mt-4">
<div class="d-flex flex-row flex-wrap justify-content-between mt-2">
<table style="width: 100%;">
<tr>
<td><b>Programming Languages & others: </b> Python, Java, C, C++, SQL,
JavaScript, R, Git, GitHub </td>
</tr>
<tr>
<td><b>Databases & Visualization Tools: </b> MySQL, PostgreSQL, Snowflake,
Redshift, MongoDB, PowerBI, Tableau, Looker </td>
</tr>
<tr>
<td><b>Full Stack Development: </b> Node.js, HTML/CSS, AJAX, Bootstrap,
MySQL, JQuery, PHP, Laravel, Django, Flask </td>
</tr>
<tr>
<td><b>Python Libraries: </b>NumPy, Pandas, Scikit-learn, NLTK, Matplotlib,
TensorFlow, Keras, PyTorch, Seaborn
</td>
</tr>
<tr>
<td><b>Cloud Platforms & DevOps: </b> AWS (SageMaker, EC2, S3, Lambda,
Redshift, RDS, EKS), GCP (BigQuery, Vertex AI, Dataflow,
Cloud Functions), Docker, Kubernetes</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- PROFESSIONAL EXPERIENCE -->
<div class="below-navbar-body mt-5">
<div class="profile" id="experience">
<div class="my-content">
<div class="pt-5 pb-5">
<div class="card-body">
<p class="h1 text-center">PROFESSIONAL EXPERIENCE</p>
<div class="container w-100 mb-2 mt-4">
<div class="d-flex flex-row flex-wrap justify-content-between mt-2"
style="width: 100%;">
<p class="h6">
Graduate Student Researcher - GenAI | Adobe Inc. (with University of Massachusetts Amherst)
</p>
<p class="text-end"> Feb 2025 - Present</p>
<ul class="">
<li>Designing and implementing LLM calibration methods to create domain-specific AI judges, reducing reliance on human feedback.
</li>
<li>Developing novel estimators for assessing new GenAI models using historical feedback, revolutionizing AI evaluation processes.</li>
</ul>
</div>
<div class="">
Technology:
<span class="badge text-bg-warning">Python</span>
<span class="badge text-bg-warning">NLP</span>
<span class="badge text-bg-warning">LLM</span>
<span class="badge text-bg-warning">Model Evaluation</span>
<span class="badge text-bg-warning">GenAI</span>
</div>
</div>
<hr>
<div class="container w-100 mb-2 mt-4">
<div class="d-flex flex-row flex-wrap justify-content-between mt-2"
style="width: 100%;">
<p class="h6">
Full Stack Development Intern | Infovue Solutions Inc.
</p>
<p class="text-end"> Aug 2021 - Jan 2022</p>
<ul class="">
<li>Integrated RESTful APIs with external payroll services and benefits
providers as part of an HR automation project, significantly
improving data synchronization and reducing manual administrative tasks.
</li>
<li>Led development of a MERN based internal employee portal to create a dynamic
dashboard for HR and payroll data visualization.</li>
<li> Assisted in the migration of a legacy monolithic system to a containerized
microservices architecture using Docker and Kubernetes,
ensuring scalability for 2x projected traffic growth.</li>
<li>Implemented horizontal scaling via AWS ECS by configuring auto-scaling
policies and optimizing load balancing strategies,
enabling the platform to efficiently handle up to 1500 concurrent users with
minimal latency and high availability.</li>
<li>Architected an advanced permission and role-based access control (RBAC)
module, ensuring secure handling of sensitive employee
data and maintaining regulatory compliance.</li>
<li>Lowered cloud infrastructure costs by 20% through resource utilization
analysis, right-sizing EC2 instances, and configuring
auto-scaling policies, reducing wasteful AWS spending.</li>
</ul>
</div>
<div class="">
Technology:
<span class="badge text-bg-warning">MongoDB</span>
<span class="badge text-bg-warning">Express.js</span>
<span class="badge text-bg-warning">React.js</span>
<span class="badge text-bg-warning">Node.js</span>
<span class="badge text-bg-warning">CRUD</span>
<span class="badge text-bg-warning">Databases</span>
<span class="badge text-bg-warning">SQL</span>
<span class="badge text-bg-warning">PHP</span>
<span class="badge text-bg-warning">Git</span>
<span class="badge text-bg-warning">GitHub</span>
<span class="badge text-bg-warning">Redux</span>
<span class="badge text-bg-warning">HTML/CSS</span>
<span class="badge text-bg-warning">JavaScript</span>
<span class="badge text-bg-warning">Bootstrap</span>
<span class="badge text-bg-warning">FTP Server</span>
<span class="badge text-bg-warning">Wordpress</span>
<span class="badge text-bg-warning">UI/UX</span>
<span class="badge text-bg-warning">JQuery</span>
<span class="badge text-bg-warning">DataTables</span>
<span class="badge text-bg-warning">Ajax</span>
<span class="badge text-bg-warning">AWS</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- PROJECTS -->
<div class="below-navbar-body mt-5">
<div class="profile" id="projects">
<div class="my-content">
<div class="p-1 shadow card-bg">
<div class="card-body">
<p class="h1 text-center">PROJECTS</p>
<div class="container w-100 mb-2 mt-4">
<div class="d-flex flex-row flex-wrap justify-content-between mt-2"
style="width: 100%;">
<p class="h6">
<a href="https://github.com/tusharbudhwani/ML-project/">Optimizing Self-written
Machine Learning Algorithms for Real-World Data Applications</a>
</p>
<p class="text-end"> May 2024</p>
<ul class="">
<li>Conducted a comparative analysis of self-written models (Neural Networks,
Random Forests, and KNN) on 4 diverse datasets.</li>
<li>Designed and implemented multi-layer architectures with custom back
propagation, activation functions (ReLU, Sigmoid), and
weight initialization, achieving up to 98.14% test accuracy on the
Handwritten Digits dataset.</li>
<li>Executed comprehensive k-fold cross-validation on all models, ensuring
robust generalization, reduced overfitting, and consistently
high accuracy and F1 scores.
</li>
</ul>
</div>
<div class="">
Technology:
<span class="badge text-bg-warning">Python</span>
<span class="badge text-bg-warning">ML</span>
<span class="badge text-bg-warning">Neural Networks</span>
<span class="badge text-bg-warning">KNN</span>
<span class="badge text-bg-warning">Decision Trees</span>
<span class="badge text-bg-warning">Random Forests</span>
</div>
<hr>
<div class="d-flex flex-row flex-wrap justify-content-between mt-2"
style="width: 100%;">
<p class="h6">
<a
href="https://drive.google.com/drive/folders/1Q8DHDj4rQxuuR2A4scv5xRPf1nnNQ-eb">Generative
3D Reconstruction from Single Image Analysis</a>
</p>
<p class="text-end"> Apr 2024</p>
<ul class="">
<li>Crafted a 3D reconstruction pipeline that generates high-fidelity 3D models
from 2D images using depth estimation and OpenAI’s
CLIP (Contrastive Language-Image Pre-training) for semantic consistency.
</li>
<li>Fine-tuned the model by freezing encoder layers and optimizing decoder
layers, significantly improving visual quality of the 3D
reconstructions with efficient resource utilization.</li>
<li> Enhanced texture quality using multi-resolution triplane sampling, boosting
performance with no extra computational cost.
</li>
<li>Decreased computation time and enhanced training efficiency by replacing the
original L2 loss with a combination of L1 smooth
and cosine loss.</li>
</ul>
</div>
<div class="">
Technology:
<span class="badge text-bg-warning">Deep Learning</span>
<span class="badge text-bg-warning">Python</span>
<span class="badge text-bg-warning">Fine-tuning</span>
<span class="badge text-bg-warning">CLIP</span>
<span class="badge text-bg-warning">FID Score</span>
<span class="badge text-bg-warning">Inception Score</span>
<span class="badge text-bg-warning"></span>
</div>
<hr>
<div class="d-flex flex-row flex-wrap justify-content-between mt-2"
style="width: 100%;">
<p class="h6">
<a href="https://github.com/tusharbudhwani/Personalizing-LLMs">Personalizing
LLMs (Large Language Models) based on User Profile</a>
</p>
<p class="text-end"> Dec 2023</p>
<ul class="">
<li>Fine-tuned Google's FLAN T5-base model using user profile data and devised a
pipeline to generate personalized prompts.</li>
<li>Formulated a query generation function using Lexical Augmentation, elevating
accuracy by 44.7% with a 120% F1-score increase.</li>
<li>Optimized retrieval with a top-k article extraction method using BM25
retriever.
</li>
</ul>
</div>
<div class="">
Technology:
<span class="badge text-bg-warning">Python</span>
<span class="badge text-bg-warning">Deep Learning</span>
<span class="badge text-bg-warning">LLM</span>
<span class="badge text-bg-warning">BM25</span>
<span class="badge text-bg-warning">Flan-T5</span>
<span class="badge text-bg-warning">NLP</span>
<span class="badge text-bg-warning">NLTK</span>
<span class="badge text-bg-warning">PyTorch</span>
<span class="badge text-bg-warning">Transformers</span>
<span class="badge text-bg-warning">Query Generation</span>
<span class="badge text-bg-warning">Prompt Engineering</span>
<span class="badge text-bg-warning">Fine-tuning</span>
</div>
<hr>
<div class="d-flex flex-row flex-wrap justify-content-between mt-2"
style="width: 100%;">
<p class="h6">
<a href="https://github.com/tusharbudhwani/BE-Project">ML-Based Web Platform for
Early Detection of Fatal Diseases</a>
</p>
<p class="text-end"> Feb 2023</p>
<ul class="">
<li>Developed and evaluated multiple ML models (SVM, Random Forest, XGBoost,
AdaBoost), using hyperparameter tuning and
k-fold cross-validation to identify the best-performing model for each
disease.</li>
<li>Implemented preprocessing techniques such as feature engineering, SMOTE, and
standardization, improving robustness and
boosting prediction accuracy of the models by up to 4%.</li>
<li>Constructed a Stacking Ensemble model (Logistic Regression, KNN, Decision
Trees) with a leading 91.3% accuracy in heart disease
prediction among seven ML models.
</li>
<li>Assembled a Stacking Ensemble model combining Logistic Regression, KNN, and
Decision Trees, attaining 91.3% accuracy for
heart disease detection, outperforming individual models.</li>
</ul>
</div>
<div class="">
Technology:
<span class="badge text-bg-warning">Python</span>
<span class="badge text-bg-warning">Machine Learning</span>
<span class="badge text-bg-warning">Predictive Modeling</span>
<span class="badge text-bg-warning">Supervised Learning</span>
<span class="badge text-bg-warning">sklearn</span>
<span class="badge text-bg-warning">Pandas</span>
<span class="badge text-bg-warning">numpy</span>
<span class="badge text-bg-warning">streamlit</span>
<span class="badge text-bg-warning">SVM</span>
<span class="badge text-bg-warning">Random Forest</span>
<span class="badge text-bg-warning">XGBoost</span>
<span class="badge text-bg-warning">ADABoost</span>
<span class="badge text-bg-warning">Logistic Regression</span>
<span class="badge text-bg-warning">Feature Engineering</span>
<span class="badge text-bg-warning">SMOTE</span>
<span class="badge text-bg-warning">Evaluation Metrics</span>
<span class="badge text-bg-warning">AUC-ROC</span>
</div>
<hr>
<div class="d-flex flex-row flex-wrap justify-content-between mt-2"
style="width: 100%;">
<p class="h6">
<a href="https://github.com/tusharbudhwani/foodie">Intelligent Food Management
Application</a>
</p>
<p class="text-end"> Nov 2022</p>
<ul class="">
<li>Created an intelligent food management app, leveraging Laravel and
JavaScript, resulting in a 30% reduction in food waste.</li>
<li>Implemented an algorithm that calculated meal options from available
ingredients, leading to a 25% reduction in grocery spending.</li>
</ul>
</div>
<div class="">
Technology:
<span class="badge text-bg-warning">Laravel(PHP)</span>
<span class="badge text-bg-warning">HTML/CSS</span>
<span class="badge text-bg-warning">JavaScript</span>
<span class="badge text-bg-warning">Bootstrap</span>
<span class="badge text-bg-warning">MySQL</span>
<span class="badge text-bg-warning">Git</span>
<span class="badge text-bg-warning">GitHub</span>
<span class="badge text-bg-warning">REST API</span>
</div>
<hr>
<div class="d-flex flex-row flex-wrap justify-content-between mt-2"
style="width: 100%;">
<p class="h6">
<a href="https://github.com/avinashdengani/TSEC-Hacks-2022-SystemZombies">Social
Media platform for Researchers and Developers</a>
</p>
<p class="text-end"> Mar 2022</p>
<ul class="">
<li>Developed a web application for programmers and researchers to efficiently
collaborate and network.</li>
<li>Engineered a recommendation system connecting users with relevant projects
and peers, leveraging skillsets and coding styles.</li>
<li>Formulated a data-driven user matching algorithm using weighted scoring to
connect researchers and developers based on shared interests
and skills, enhancing user experience and interdisciplinary collaboration.
</li>
<li>
Enhanced database performance by optimizing SQL queries and introducing
indexed views in MySQL, which sped up data retrieval by 40% for complex
searches.
</li>
<li>Achieved <a href="assets/certificates/TSEC_HACKS_Top_10_Certificate.pdf">Top
10</a> ranking among 120+ competing teams in a Hackathon, showcasing
exceptional project execution and innovation.</li>
</ul>
</div>
<div class="">
Technology:
<span class="badge text-bg-warning">Laravel(PHP)</span>
<span class="badge text-bg-warning">HTML/CSS</span>
<span class="badge text-bg-warning">JavaScript</span>
<span class="badge text-bg-warning">Bootstrap</span>
<span class="badge text-bg-warning">MySQL</span>
<span class="badge text-bg-warning">Git</span>
<span class="badge text-bg-warning">GitHub</span>
<span class="badge text-bg-warning">GitHub API</span>
</div>
<hr>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- PUBLICATIONS -->
<div class="below-navbar-body mt-5">
<div class="profile" id="publications">
<div class="my-content">
<div class="pt-5 pb-5">
<div class="card-body">
<p class="h1 text-center">PUBLICATIONS</p>
<div class="container w-100 mb-2 mt-4">
<div class="d-flex flex-row flex-wrap justify-content-between mt-2"
style="width: 100%;">
<p class="h6">
Research Patent:
<a href="https://search.ipindia.gov.in/IPOJournal/Journal/Patent">Enhancement of
Advanced Encryption Standard Algorithm to secure IoT devices. </a>
</p>
<p class="text-end"> Aug 2022</p>
<ul class="">
<li> Indian Patent Application No. 202221045319 A, The Patent Office Journal No.
33/2022, Date of filing: Aug 8, 2022</li>
<li>Proposed a faster alternative to the AES algorithm for lower-powered IoT
devices and real-time secure communications</li>
</ul>
</div>
<div class="d-flex flex-row flex-wrap justify-content-between mt-2"
style="width: 100%;">
<p class="h6">
Research Project:
<a href="http://proceeding.conferenceworld.in/UCET-2022/39.pdf">Offensive Web
Application Security Framework </a> | ICETESM
</p>
<p class="text-end"> Feb 2022</p>
<ul class="">
<li>Assembled a sophisticated scanning engine to detect various web app
vulnerabilities, utilizing open-source tools for in-depth security analysis.
</li>
</ul>
</div>
<div class="d-flex flex-row flex-wrap justify-content-between mt-2"
style="width: 100%;">
<p class="h6">
Research Project:
<a
href="https://www.ijaresm.com/uploaded_files/document_file/Harshada_khamkarAt9n.pdf">Enhancing
Steering Accuracy in Self-Driving Cars Using Deep Learning </a> | IJARESM
</p>
<p class="text-end"> Feb 2022</p>
<ul class="">
<li>Preprocessed 10,000+ images and addressed dataset bias by eliminating 30% of
0-degree steering angles, improving training
efficiency by 15% and boosting performance on curves and complex road
structures by 20%.
</li>
<li>Devised a custom CNN with 5 convolutional, 4 dropout, and 4 dense layers,
achieving training loss of 0.0343 and validation loss of
0.0275, enabling accurate steering predictions and improved generalization.
</li>
<li>Minimized overfitting by applying 4 dropout layers in the CNN, reducing
validation error by 25% and enhancing generalization.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- LEADERSHIP / EXTRA-CURRICULAR ACTIVITIES -->
<div class="below-navbar-body mt-5">
<div class="profile" id="extra">
<div class="my-content">
<div class="p-1 shadow card-bg">
<div class="card-body">
<p class="h1 text-center">LEADERSHIP / EXTRA-CURRICULAR ACTIVITIES</p>
<div class="container w-100 mb-2 mt-4">
<div class="d-flex flex-row flex-wrap justify-content-between mt-2">
<p class="h6">
<a href="assets/certificates/NSS_Tushar_Budhwani.pdf">
Technical Head </a> at National Service Scheme (NSS) - TSEC, University
of Mumbai
</p>
<p class="text-end"> Sep 2021 - Jun 2022</p>
<p>
<i class="">- Organized over 80 community service events
including Blood Donation Drives, Cleanup Drives, etc.</i>
</p>
</div>
<div class="d-flex flex-row flex-wrap justify-content-between">
<p class="h6 m-0">
<a href="assets/certificates/Rotaract Club_81.pdf">General Body Member</a>
at Rotaract Club - TSEC, University of Mumbai
</p>
<p class="text-end">Aug 2021 - May 2022</p>
<p>
<i class="m-0 ">- Volunteered at various Medical camps,
Fundraising, and charity events.</i>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- AWARDS & ACHIEVEMENTS -->
<div class="below-navbar-body mt-5">
<div class="profile" id="awards">
<div class="my-content">
<div class="pt-5 pb-5">
<div class="card-body">
<p class="h1 text-center">AWARDS & ACHIEVEMENTS</p>
<div class="container w-100 mb-2 mt-4">
<div class="d-flex flex-row flex-wrap justify-content-between mt-2">
<p class="h6">
LEADERSHIP AWARD - TSEC, University of Mumbai
</p>
<p class="text-end"> Mar 2023</p>
</div>
<div class="d-flex flex-row flex-wrap justify-content-between">
<p class="h6 m-0">
Best Instrument Award
</p>
<p class="text-end">Dec 2020</p>
</div>
<div class="d-flex flex-row flex-wrap justify-content-between">
<p class="h6">
3rd Place in Solo Singing Award
</p>
<p class="text-end"> Dec 2020</p>
</div>
<div class="d-flex flex-row flex-wrap justify-content-between">
<p class="h6 m-0">
1st Place in Solo Singing Award
</p>
<p class="text-end">Dec 2017</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- My Music -->
<div class="below-navbar-body mt-5 mb-5">
<div class="profile" id="music">
<div class="my-content">
<div class="p-1 shadow card-bg">
<div class="card-body">
<p class="h1 text-center">MY MUSIC</p>
<div class="container w-100 mb-2 mt-4">
<div class="d-flex flex-row flex-wrap justify-content-between mt-2">
<div>
<p style="text-align: justify;">
When 'Rolling Stone' - the world's biggest music magazine <a
href="https://rollingstoneindia.com/rsdailymusic-heres-what-were-listening-to-today-197/">featured</a>
my song, it felt like a dream
came true. Eight years of creating music and using software applications for
music
production have
made me realize how evolving technology and Artificial Intelligence have
transformed the
way
creativity can be expressed.
</p>
</div>
<iframe style="border-radius:12px; margin: auto; margin-top: 40px;"
allow="autoplay *; encrypted-media *; fullscreen *; clipboard-write" width="390"
height="160" frameBorder="30"
sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-storage-access-by-user-activation allow-top-navigation-by-user-activation"
src="https://embed.music.apple.com/us/album/chaand-feat-tushar-budhwani/1743518327?i=1743518449"></iframe>
<iframe style="border-radius:12px; margin: auto; margin-top: 40px;"
src="https://open.spotify.com/embed/artist/1GvvykZX16pGkIZTomxkgq?utm_source=generator"
width="390" height="200" frameBorder="30" allowfullscreen=""
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"
loading="lazy"></iframe>
</div>
<div id="carouselExampleRide" class="carousel carousel-dark slide" data-bs-ride="true"
style="max-width: 600px; margin: auto;">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="0" class="active" aria-current="true"
aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="2" aria-label="Slide 3"></button>
<button type="button" data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="3" aria-label="Slide 4"></button>
<button type="button" data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="4" aria-label="Slide 5"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active" style="min-height: 440px;">
<iframe class="d-block w-100 mb-1 shadow"
style="margin: auto; min-height: 270px; border-radius: 22px;"
src="https://www.youtube.com/embed/Jw0jdND_NJw"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
<p style="text-align: center;">
'Chaand' 🌙✨, my debut song, crafted in harmony with the incredible <a
href="https://www.instagram.com/shravansridhar/">Shravan
Sridhar</a>.
</p>
<!-- <img src="..." class="d-block w-100 mb-1" alt="..."> -->
</div>
<div class="carousel-item" style="min-height: 440px;">
<iframe class="d-block w-100 mb-1 shadow"
style="margin: auto; min-height: 270px; width: 100%; border-radius: 22px;"
src="https://www.youtube.com/embed/hHog8GeF5Kw"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
<p style="text-align: center;">
Collaboration with one of the best violinists in India Mr. <a
href="https://www.instagram.com/shravansridhar/">Shravan
Sridhar</a>
It was fun to put through my Electronic music production skills in
making this track to hold such beautiful violins on top of it.
</p>
<!-- <img src="..." class="d-block w-100 mb-1" alt="..."> -->
</div>
<div class="carousel-item" style="min-height: 440px;">
<iframe class="d-block w-100 mb-1 shadow"
style="margin: auto; min-height: 270px; border-radius: 22px;"
src="https://www.youtube.com/embed/mrbwJcoJppA?si=kN3LHGegEPhJPavN"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen></iframe>
<p style="text-align: center; max-width: 560px;">
Created a cover of one of the most soulful bollywood songs 'Ranjha'
with
my brother <a href="https://www.youtube.com/@MohitBudhwani">Mohit
Budhwani</a> on my Music YouTube Channel with <a
href="https://www.instagram.com/ektapariani/">Ekta Pariani</a>.
</p>
</div>
<div class="carousel-item" style="min-height: 440px;">
<iframe class="d-block w-100 mb-1 shadow"
style="margin: auto; min-height: 270px; border-radius: 22px;"
src="https://www.youtube.com/embed/mJhqSAGVp0g"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
<p style="text-align: center;">
Created a cover of the song 'Kho Gaye Hum Kahaan' with my own
Cinematic
and Electronic twist to it.
</p>
</div>
<div class="carousel-item" style="min-height: 440px;">
<iframe class="d-block w-100 mb-1 shadow"
style="margin: auto; min-height: 270px; border-radius: 22px;"
src="https://www.youtube.com/embed/B5TSnXl7HaY"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
<p style="text-align: center;">
The time when my brother <a
href="https://www.youtube.com/@MohitBudhwani">Mohit
Budhwani</a>
invited me on stage during his Bachelor Year performance.
</p>
</div>
</div>
<button class="carousel-control-prev" style="margin-top: 380px;" type="button"
data-bs-target="#carouselExampleRide" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" style="margin-top: 380px;" type="button"
data-bs-target="#carouselExampleRide" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="bottombar">
<div class="container">
<div class="social-links" id="contact">
<a href="https://github.com/tusharbudhwani"><i class="fab fa-github"></i></a>
<a href="https://open.spotify.com/artist/1GvvykZX16pGkIZTomxkgq?si=EyG28drESvmP0wGdxLrmpQ"><i
class="fab fa-spotify"></i></a>
<a href="https://www.linkedin.com/in/tusharbudhwani/"><i class="fab fa-linkedin-in"></i></a>
<a href="https://www.youtube.com/@entmusic_"><i class="fab fa-youtube"></i></a>
<a href="https://www.instagram.com/tusharbudhwani/"><i class="fab fa-instagram"></i></a>
<a href="https://music.apple.com/in/artist/tushar-budhwani/1743518448"><i class="fab fa-apple"></i></a>
<a href="https://g.co/kgs/Rm9FQ4J"><i class="fab fa-google"></i></a>
</div>
</div>
</footer>
</div>
</div>
<script>
const modeToggle = document.getElementById('modeToggle');
const body = document.body;
const icon = modeToggle.querySelector('i');
modeToggle.addEventListener('click', () => {
body.classList.toggle('light-mode');
if (body.classList.contains('light-mode')) {
icon.classList.replace('fa-moon', 'fa-sun');
} else {
icon.classList.replace('fa-sun', 'fa-moon');
}
});
// Smooth transition for scroll-to-top button
let mybutton = document.getElementById("myBtn");
window.onscroll = function() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.opacity = "1";
mybutton.style.visibility = "visible";
} else {
mybutton.style.opacity = "0";
mybutton.style.visibility = "hidden";
}
};
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/js/all.min.js"
integrity="sha512-2bMhOkE/ACz21dJT8zBOMgMecNxx0d37NND803ExktKiKdSzdwn+L7i9fdccw/3V06gM/DBWKbYmQvKMdAA9Nw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>