-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
869 lines (830 loc) · 47.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="styles/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
</head>
<body class="main-content">
<header class="section sec1 header active" id="home">
<div class="header-content">
<div class="left-header">
<div class="h-shape"></div>
<div class="image">
<img src="pic/prabhat_user_2.jpg" alt="">
</div>
</div>
<div class="right-header">
<h1 class="name">
Hi, I'm <span class="name">Prabhat Kumar.</span>
An AI/ML Enthusiast and Web Developer.
</h1>
<p><span class="intro_detail">
I am a passionate developer specializing in AI, Machine Learning (ML), Large Language Models (LLMs), Deep Learning, Natural Language Processing (NLP), and Data Analysis.
I excel in building responsive web applications using modern frameworks like HTML, CSS, JavaScript, and Python Flask, and in creating predictive models and NLP solutions to solve complex problems.
Continuously expanding my expertise, I aim to contribute to advancements in AI-driven solutions.
</span></p>
<div class="btn-con">
<a href="pic/PrabhatKumar-Resume2.pdf" class="main-btn" download>
<span class="btn-text">Download CV</span>
<span class="btn-icon"><i class="fa-solid fa-download"></i></span>
</a>
</div>
</div>
</div>
</header>
<main>
<section class="section sec2 " id="about">
<div class="main-title">
<h2>About <span>me</span><span class="bg-text">my stats</span></h2>
</div>
<div class="about-container">
<div class="left-about">
<h4>Information About Me</h4>
<p>
Prabhat Kumar is a passionate computer science professional with a Bachelor of Technology in Computer Science (Data Science) from RN Shetty Institute of Technology, Bengaluru.
With a solid CGPA of 9.4, he has developed a robust skill set in AI, machine learning, natural language processing, and data analytics.
Prabhat has worked on impactful projects, including *Vox-Pilot*, a personal virtual assistant leveraging advanced speech recognition and automation, and *OCR_Document_Reader*, a Python-based application for extracting text from printed and handwritten documents using cutting-edge OCR techniques.
He has also developed automation scripts with Selenium and Python and implemented shell scripting for game automation.
His expertise extends to building machine learning models, including salary prediction, and developing responsive web applications using technologies like Python Flask, React, and Node.js.
Prabhat has earned certifications from AWS, Infosys, Let’s Upgrade, Udemy, and Microsoft Azure Data Fundamentals, showcasing his dedication to continuous learning and staying at the forefront of technology.
</p>
<div class="btn-con">
<a href="pic/PrabhatKumar-Resume2.pdf" class="main-btn" download>
<span class="btn-text">Download CV</span>
<span class="btn-icon"><i class="fa-solid fa-download"></i></span>
</a>
</div>
</div>
<div class="right-about">
<div class="about-item">
<div class="abt-text">
<p class="large-text">20+</p>
<p class="small-text">PROJECTS <br /> COMPLETED</p>
</div>
</div>
<div class="about-item">
<div class="abt-text">
<p class="large-text">2+</p>
<p class="small-text">YEARS <br />OF Experience</p>
</div>
</div>
<div class="about-item">
<div class="abt-text">
<p class="large-text">10+</p>
<p class="small-text">HACKATHON <br /> PARTICIPANTS</p>
</div>
</div>
<div class="about-item">
<div class="abt-text">
<p class="large-text">20+</p>
<p class="small-text">EVENT <br /> ORGANISED</p>
</div>
</div>
</div>
</div>
<div class="about-stats">
<h4 class="stat-title">My Skills</h4>
<div class="progress-bars">
<div class="progress-bar">
<p class="prog-title">html5</p>
<div class="progress-con">
<p class="prog text">91%</p>
<div class="progress">
<span class="html"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">C++</p>
<div class="progress-con">
<p class="prog text">95%</p>
<div class="progress">
<span class="Cplus"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">DSA</p>
<div class="progress-con">
<p class="prog text">80%</p>
<div class="progress">
<span class="dsa"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">AI & ML</p>
<div class="progress-con">
<p class="prog text">90%</p>
<div class="progress">
<span class="ai-ml"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">PYTHON</p>
<div class="progress-con">
<p class="prog text">73%</p>
<div class="progress">
<span class="python"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">R</p>
<div class="progress-con">
<p class="prog text">96%</p>
<div class="progress">
<span class="r-lang"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">JavaScript</p>
<div class="progress-con">
<p class="prog text">60%</p>
<div class="progress">
<span class="javascript"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">Linux</p>
<div class="progress-con">
<p class="prog text">90%</p>
<div class="progress">
<span class="linux"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">Deep Learning</p>
<div class="progress-con">
<p class="prog text">90%</p>
<div class="progress">
<span class="linux"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">Docker & Kubernetes</p>
<div class="progress-con">
<p class="prog text">90%</p>
<div class="progress">
<span class="linux"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">NLP</p>
<div class="progress-con">
<p class="prog text">85%</p>
<div class="progress">
<span class="linux"></span>
</div>
</div>
</div>
<div class="progress-bar">
<p class="prog-title">LLM</p>
<div class="progress-con">
<p class="prog text">70%</p>
<div class="progress">
<span class="python"></span>
</div>
</div>
</div>
</div>
</div>
<h4 class="stat-title">My Timeline</h4>
<div class="timeline">
<div class="timeline-item">
<div class="tl-icon">
<i class="fa-solid fa-briefcase"></i>
</div>
<p class="tl-duration">2022 - present</p>
<h5><span class="about-time-hfive">Web developer -Poogle</span></h5>
<p>
A well know data-structure problem solver.Also analytical knowledge about Data and Generative AI.
</p>
</div>
</div>
</section>
<section class="section sec3 " id="portfolio">
<div class="main-title">
<h2>My <span>Projects</span><span class="bg-text">My Work</span></h2>
</div>
<p class="port-text">
Here is some of my work that I'have done in various programming languages.
</p>
<div class="portfolios">
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 1 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Vox-Pilot" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 2 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/OCR_Documet_Reader" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 3 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/BASH-Scripting-linux-zsh-" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 4 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Portfolio_Website" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 5 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/PHP_laravel_app_docker" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 6 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Flask_Gui_app" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 7 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Grocery_Full_stack_web_app" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 8 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Insta_BOT" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 9 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Unity_Game-Asset-Management-System" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 10 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/VR-System-to-Simulate-Soft-Hand-off-among-Towers-in-Mobile-Network" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 11 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Gesture_Based_Calculation_Comuter_vision" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 12 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Breast_Cancer_Detection" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 13 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/ANN-model-to-predict-the-electrical-energy-" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 14 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Blog_LLM_AI_DATA" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 15 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Salary_Prediction" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 16 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Sentiment-Analysis_Restaurant-NLP-" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 17 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Churn_Detection_Bank_Customer" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 18 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/CNN_classification_Cat_or_dog" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 19 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/Ads_CTR_Optimizer-Reinforcement-Learning-" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="portfolio-item">
<div class="img">
<img src="pic/work-1.avif" alt="">
</div>
<div class="hover-items">
<h3>Project 20 Source</h3>
<div class="icons">
<a href="https://github.com/prabhatadvait/SmartTrend-ARL" class="icon">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" class="icon">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" class="icon">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="section sec4 " id="blogs">
<div class="blogs-content">
<div class="main-title">
<h2>My <span>Blogs</span><span class="bg-text">My Blogs</span></h2>
</div>
<div class="blogs">
<div class="blog">
<img src="pic/future_ai.jpg" alt="">
<div class="blog-text">
<h4>
Artificial Intelligence: Transforming the Future of Technology
</h4>
<p>
Artificial Intelligence (AI) is no longer a concept confined to science fiction. Over the past few decades, AI has evolved from simple rule-based systems to complex machine learning algorithms capable of performing tasks that were once thought to be exclusive to human intelligence. As AI continues to grow, its applications are becoming more widespread, touching almost every aspect of our daily lives. From self-driving cars to intelligent personal assistants, AI is transforming industries, redefining how we live, work, and interact with technology.
**The Evolution of Artificial Intelligence**
The journey of AI began in the 1950s, when pioneers like Alan Turing and John McCarthy laid the foundation for machine intelligence. Turing’s concept of the "Turing Test" proposed that a machine could be considered intelligent if it could convincingly mimic human conversation. In its early years, AI was based on symbolic reasoning, where machines followed predefined rules to solve problems. However, these early systems were limited in their ability to handle complex, real-world scenarios.
The breakthrough came in the 1980s with the advent of machine learning (ML), a subfield of AI that focuses on teaching machines to learn from data rather than relying solely on explicit programming. Machine learning allowed computers to identify patterns and make decisions based on experience, paving the way for more advanced AI applications. In the 2000s, the rise of big data and increased computational power led to the development of deep learning, a more powerful form of ML that uses neural networks to model complex relationships within data.
</p>
</div>
</div>
<div class="blog">
<img src="pic/ml_healthcare.jpg" alt="">
<div class="blog-text">
<h4>
The Role of Machine Learning in Modern Healthcare
</h4>
<p>
Machine learning (ML) has become an integral part of modern healthcare, enhancing diagnostics, treatment strategies, and patient care. With the vast amount of medical data available, ML algorithms can process and analyze patterns within this data, often detecting conditions earlier than traditional methods. This has led to groundbreaking innovations, from more accurate diagnoses to personalized treatment plans tailored to the unique needs of each patient.
**Revolutionizing Diagnostics**
One of the most transformative applications of machine learning in healthcare is in diagnostics. ML models are now able to analyze medical imaging data—such as X-rays, MRIs, and CT scans—at a level of detail and accuracy that often exceeds that of human doctors. These algorithms can detect abnormalities, such as tumors or fractures, with incredible precision, helping radiologists make quicker and more accurate diagnoses.
**Predictive Analytics for Preventive Care**
Machine learning is also playing a critical role in predictive analytics, helping healthcare providers anticipate potential health issues before they occur. By analyzing historical data, ML models can identify risk factors and predict the likelihood of future conditions, enabling doctors to intervene early and offer preventive care. For example, predictive models can identify patients at high risk for heart disease or diabetes, allowing for early lifestyle changes or medical interventions.
</p>
</div>
</div>
<div class="blog">
<img src="pic/datascience_business.avif" alt="">
<div class="blog-text">
<h4>
How Data Science is Driving Business Innovation
</h4>
<p>
Data science is no longer a niche field; it has become a cornerstone of modern business strategy. With businesses generating massive amounts of data every day, data science has emerged as the key to unlocking insights that drive innovation, optimize operations, and improve decision-making.
**Unlocking Insights with Data**
Data science involves analyzing large datasets to uncover patterns and trends that may not be immediately apparent. This process helps businesses gain insights into customer behavior, market trends, and operational efficiency. By utilizing machine learning and statistical analysis, companies can create predictive models that forecast demand, identify potential risks, and optimize resource allocation.
**Enhancing Customer Experience**
In the age of digital transformation, customer experience is paramount. Data science enables businesses to personalize their interactions with customers by analyzing their preferences, behaviors, and past interactions. Companies like Amazon and Netflix use recommendation algorithms powered by data science to suggest products and content tailored to individual users, thereby enhancing user satisfaction and engagement.
</p>
</div>
</div>
<div class="blog">
<img src="pic/ethic_ai.jpeg" alt="">
<div class="blog-text">
<h4>
Artificial Intelligence and Ethics: Navigating the Future of AI
</h4>
<p>
As AI becomes more integrated into our daily lives, its ethical implications have come to the forefront of discussions about its future. While AI has the potential to transform industries and improve quality of life, it also raises complex ethical questions that need to be addressed. Balancing the benefits of AI with its potential risks requires careful consideration and the establishment of clear ethical guidelines.
**Bias in AI Algorithms**
One of the biggest ethical concerns with AI is bias. AI systems are trained on data, and if that data reflects existing biases, the model will likely replicate and even amplify those biases. For example, facial recognition software has been found to have higher error rates for people of color, leading to concerns about its use in law enforcement. Similarly, hiring algorithms have been shown to discriminate against women and minority groups due to biased training data.
**AI and Privacy**
Another significant ethical concern is privacy. As AI systems are increasingly used to analyze personal data, there are growing concerns about how that data is being collected, stored, and used. Invasive technologies like surveillance systems and AI-powered data mining tools have raised alarms about the erosion of privacy. Ethical guidelines are needed to ensure that AI systems respect individuals' privacy rights and comply with data protection regulations.
</p>
</div>
</div>
<div class="blog">
<img src="pic/ai_creativity.webp" alt="">
<div class="blog-text">
<h4>
AI and Creativity: Exploring the New Frontier of Art
</h4>
<p>
Artificial intelligence has made its way into the world of creativity, challenging traditional notions of art and artistic expression. AI systems are now capable of creating music, writing poetry, painting, and even designing fashion. These advancements have sparked debates about the role of technology in the creative process and whether AI can truly be considered an artist.
**Generative Art and AI**
Generative art, a form of digital art created with the assistance of algorithms, is one of the most exciting areas where AI is making an impact. By using machine learning models, such as Generative Adversarial Networks (GANs), AI can generate highly realistic images, videos, and animations that mimic the styles of famous artists or create entirely new forms of art.
**AI in Music Composition**
AI is also revolutionizing the music industry. Algorithms are now capable of composing original music that mimics the styles of various composers, ranging from classical to contemporary genres. Tools like OpenAI’s MuseNet and Jukedeck are pushing the boundaries of music composition, enabling artists and musicians to experiment with new sounds and styles.
</p>
</div>
</div>
<div class="blog">
<img src="pic/autonomous_vehicle.jpg" alt="">
<div class="blog-text">
<h4>
The Future of Autonomous Vehicles: AI on the Road
</h4>
<p>
Autonomous vehicles (AVs) represent one of the most exciting applications of artificial intelligence in transportation. By combining AI with sensors, machine learning, and advanced algorithms, self-driving cars are poised to revolutionize the way we travel. While fully autonomous vehicles are still in development, the potential benefits of this technology are vast.
**How Autonomous Vehicles Work**
Autonomous vehicles rely on a combination of sensors (cameras, radar, LiDAR), GPS, and AI to perceive their environment, make decisions, and navigate roads safely. Machine learning algorithms process the data from these sensors in real-time, allowing the car to detect objects, identify road signs, and predict the behavior of other vehicles and pedestrians.
**The Impact of Autonomous Vehicles on Transportation**
The widespread adoption of autonomous vehicles is expected to reduce traffic accidents, improve road safety, and enhance transportation efficiency. By removing the human error factor, AVs could dramatically reduce the number of accidents caused by distracted driving or fatigue, potentially saving thousands of lives each year.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="section sec5 contact" id="contact">
<div class="contact-container">
<div class="main-title">
<h2>Contact <span>Me</span><span class="bg-text">Contacts</span></h2>
</div>
<div class="contact-content-con">
<div class="left-contact">
<h4>
Contact Me Here.
</h4>
<p>
Contact is essential for building strong relationships, fostering communication, and collaboration.
It helps create meaningful connections, enabling personal and professional growth.
</p>
<div class="contact-info">
<div class="contact-item">
<div class="icon">
<i class="fas fa-map-marker-alt"></i>
<span>Location</span>
</div>
<p>
: Bangalore, India
</p>
</div>
<div class="contact-item">
<div class="icon">
<i class="fa-solid fa-envelope"></i>
<span>Email</span>
</div>
<p>
</p>
</div>
<div class="contact-item">
<div class="icon">
<i class="fas fa-user-graduate"></i>
<span>Education</span>
</div>
<p>
: VTU ,RNSIT , Bangalore
</p>
</div>
<div class="contact-item">
<div class="icon">
<i class="fas fa-user-graduate"></i>
<span>Mobile Number</span>
</div>
<p>
: 7667123709
</p>
</div>
<div class="contact-item">
<div class="icon">
<i class="fa-solid fa-earth-europe"></i>
<span>Languages</span>
</div>
<p>
: Hindi,English,Kannada
</p>
</div>
</div>
<div class="contact-icons">
<div class="contact-icon">
<a href="https://www.instagram.com/prabhatadvait/profilecard/?igsh=MWg0ZHowbTYwMGNtNw%3D%3D" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="https://github.com/prabhatadvait" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/prabhat-kumar-1260a5259" target="_blank">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://www.youtube.com/channel/UCFjiB-0boVobAwGwlHME9vQ" target="_blank">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="right-contact">
<form action="" class="contact-form">
<div class="input-control i-c-2">
<input type="text" required placeholder="YOUR NAME">
<input type="text" required placeholder="YOUR EMAIL">
</div>
<div class="input-control">
<input type="text" required placeholder="ENTER SUBJECT">
</div>
<div class="input-control">
<textarea name="" id="" cols="15" rows="8" placeholder="Message Here..."></textarea>
</div>
<div class="btn-con">
<a href="" class="main-btn" download>
<span class="btn-text">Submit - Now</span>
<span class="btn-icon"><i class="fa-solid fa-download"></i></span>
</a>
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<div class="controls">
<div class="control control-1 active-btn" data-id="home">
<i class="fa-solid fa-house"></i>
</div>
<div class="control control-2" data-id="about">
<i class="fa-regular fa-user"></i>
</div>
<div class="control control-3" data-id="portfolio">
<i class="fa-solid fa-briefcase"></i>
</div>
<div class="control control-4" data-id="blogs">
<i class="fa-solid fa-newspaper"></i>
</div>
<div class="control control-5" data-id="contact">
<i class="fa-solid fa-envelope-open-text"></i>
</div>
</div>
<div class="theme-btn">
<i class="fas fa-adjust"></i>
</div>
<script src="app.js"></script>
</body>
</html>