-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
730 lines (570 loc) · 36.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== FAVICON ===============-->
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon">
<!--=============== BOXICONS ===============-->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<!--=============== SWIPER CSS ===============-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<title> My Portfolio Website </title>
</head>
<body>
<!--=============== HEADER ===============-->
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo">Atulya Deep</a>
<div class="nav__menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link active-link">
<i class='bx bx-home-alt'></i>
</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">
<i class='bx bxs-user'></i>
</a>
</li>
<li class="nav__item">
<a href="#skills" class="nav__link">
<i class='bx bx-book'></i>
</a>
</li>
<li class="nav__item">
<a href="#work" class="nav__link">
<i class='bx bx-briefcase-alt-2' ></i>
</a>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">
<i class='bx bx-message-square-detail'></i>
</a>
</li>
</ul>
</div>
<!-- Theme change button -->
<i class='bx bx-moon change-theme' id="theme-button"></i>
</nav>
</header>
<!--=============== MAIN ===============-->
<main class="main">
<!--=============== HOME ===============-->
<section class="home section" id="home">
<div class="home__container container grid">
<div class="home__data">
<span class="home__greeting">Hey, I'm</span>
<h1 class="home__name">Atulya Deep</h1>
<h3 class="home__education">ML Enthusiast</h3>
<div class="home__buttons">
<a download="" href="assets/pdf/MyResume.pdf" class="button button--ghost">
Download CV
</a>
<a href="#about" class="button">About me</a>
</div>
</div>
<div class="home__handle">
<img src="assets/img/homeimg.jpg" alt="" class="home__img">
</div>
<div class="home__social">
<a href="https://www.linkedin.com/in/atulya-deep-30497b217/" target="_blank" class="home__social-link">
<i class='bx bxl-linkedin-square'></i>
</a>
<a href="https://github.com/atulya-deep" target="_blank" class="home__social-link">
<i class='bx bxl-github' ></i>
</a>
<a href="https://www.instagram.com/atulya_deep/" target="_blank" class="home__social-link">
<i class='bx bxl-instagram' ></i>
</a>
</div>
<a href="#about" class="home__scroll">
<i class='bx bx-mouse home__scroll-icon' ></i>
<span class="home__scroll-name">Scroll Down</span>
</a>
</div>
</section>
<!--=============== ABOUT ===============-->
<section class="about section" id="about">
<span class="section__subtitle">About Me</span>
<h2 class="section__title">All About Me</h2>
<div class="about__container container grid">
<img src="assets/img/AboutPic.jpg" alt="" class="about__img">
<div class="about__data">
<div class="about__info">
<div class="about__box">
<i class='bx bx-award about__icon'></i>
<h3 class="about__title">Qualification</h3>
<span class="about__subtitle">B.Tech in AI</span>
</div>
<div class="about__box">
<i class='bx bx-briefcase-alt about__icon' ></i>
<h3 class="about__title">Completed</h3>
<a href="#work" >
<span class="about__subtitle">10+ projects</span>
</a>
</div>
<div class="about__box">
<i class='bx bx-award about__icon'></i>
<h3 class="about__title">Certifications</h3>
<span class="about__subtitle">11+ certificates</span>
<span class="services__button">
See More <i class='bx bx-right-arrow-alt services__icon' ></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close'></i>
<h3 class="services__modal-title">Certifications</h3>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Introduction to TensorFlow for AI, ML and DL<br>
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Natural Language Processing <br>
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
Data Science Methodology(IBM) <br>
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">AWS Academy Cloud Foundations</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">AWS Academy Machine Learning</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">SQL for Data Science</p>
</li>
</ul>
</div>
</div>
</div>
</div>
<p class="about__description">
Hello there! I am an enthusiastic artificial intelligence student seeking to deliver state-of-the-art AI solutions for the world. Experience includes using algorithms and Neural network models for my own personal projects and research paper . Relevant skills include Machine Learning, Data Structures, and Computer Vision.
</p>
<a href="#contact" class="button">Contact Me</a>
</div>
</div>
</section>
<!--=============== SKILLS ===============-->
<section class="skills section" id="skills">
<span class="section__subtitle">My abilities</span>
<h2 class="section__title">My Skill Set</h2>
<div class="skills__container container grid">
<div class="skills__content">
<h3 class="skills__title">AI/ ML</h3>
<div class="skills__box">
<div class="skills__group">
<div class="skills__data">
<i class='bx bxs-badge-check' ></i>
<div>
<h3 class="skills__name">Python</h3>
<span class="skills__level">Intermediate</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check' ></i>
<div>
<h3 class="skills__name">OpenCv</h3>
<span class="skills__level">Intermediate</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check' ></i>
<div>
<h3 class="skills__name">Machine Learning</h3>
<span class="skills__level">Intermediate</span>
</div>
</div>
</div>
<div class="skills__group">
<div class="skills__data">
<i class='bx bxs-badge-check' ></i>
<div>
<h3 class="skills__name">Reinforcement Learing</h3>
<span class="skills__level">Intermediate</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check' ></i>
<div>
<h3 class="skills__name">Tensorflow</h3>
<span class="skills__level">Basic</span>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check' ></i>
<div>
<h3 class="skills__name">Deep Learning</h3>
<span class="skills__level">Intermediate</span>
</div>
</div>
</div>
</div>
</div>
<div class="skills__content">
<h3 class="skills__title">Publications</h3>
<div class="skills__box">
<div class="skills__group">
<div class="skills__data">
<i class='bx bxs-badge-check' ></i>
<div>
<h3 class="skills__name">Investigate How Market Behaves: Toward an Explanatory Multitasking Based Analytical Model for Financial Investments
<br>Publisher: IEEE
<br>Publication Date: February 26, 2024
<br>Summary: This study introduces a multitasking sequence-to-sequence model that combines financial investment analysis with sentiment and emotion analysis from tweets, supported by an explanation mechanism. The proposed Emotion-Sentiment Attention Network (ESAN) achieved significant accuracy improvements over conventional methods, highlighting the influence of social media on financial market behaviors and investment strategies.</h3>
</div>
</div>
<div class="skills__data">
<i class='bx bxs-badge-check' ></i>
<div>
<h3 class="skills__name">"Find the Table": A Contrastive Learning-based Approach with Faster RCNN for Establishing Tabular Entity Relationships
<br>Publisher: IEEE
<br>Publication Date: August 2, 2023
<br>Summary: Focused on the challenges of extracting actionable insights from financial statements, this paper presents a contrastive learning approach using Faster RCNN to improve the accuracy and efficiency of tabular data interpretation in the financial industry.</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=============== SERVICES ===============-->
<section class="services section">
<span class="section__subtitle">Experience</span>
<h2 class="section__title">Internships</h2>
<div class="services__container container grid">
<div class="services__card">
<h3 class="services__title">Research AI Intern</h3>
<span class="services__button">
See More <i class='bx bx-right-arrow-alt services__icon' ></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close'></i>
<h3 class="services__modal-title">Research AI Intern</h3>
<p class="services__modal-description">
IIT Patna, Oct 2022 - Jan 2023
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">Published a paper on "Find the Table : A Contrastive Learning-based
Approach with Faster RCNN for Establishing
Tabular Entity Relationships" in IEEE Xplore.</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">The model uses Faster RCNN for object detection and Contrastive Learning for
learning the relationships between the Tabular Entity.</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">
It achieved an F1 score of 93% for table detection and 74%
for identifying and establishing the relationships among the
different tabular elements under an IOU value of 0.6
</p>
</li>
</ul>
</div>
</div>
</div>
<div class="services__card">
<h3 class="services__title">GCC intern</h3>
<span class="services__button">
See More <i class='bx bx-right-arrow-alt services__icon' ></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close'></i>
<h3 class="services__modal-title">Global Command Centre Intern</h3>
<p class="services__modal-description">
AB-inbev,Bangalore
<br>
(on going)
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">Process Mining Intern</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">My internship focuses on three critical business processes: Procure-to-Pay (P2P), Order-to-Cash (O2C), and logistics.</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' >In this role, I apply Celonis process mining technology to identify bottlenecks, predict process deviations, and provide actionable insights that drive operational excellence. My work helps AB InBev reduce complexity and increase transparency across these vital processes.</i>
<p class="services__modal-info">
</li>
</ul>
</div>
</div>
</div>
<div class="services__card">
<h3 class="services__title">ML Intern</h3>
<span class="services__button">
See More <i class='bx bx-right-arrow-alt services__icon' ></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close'></i>
<h3 class="services__modal-title">ML intern</h3>
<p class="services__modal-description">
IIT patna, 2023
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">The internship provided me with a remarkable opportunity to delve
deep into the realm of Natural Language Processing and explore my passion
for this dynamic field.</p>
</li>
<!-- <li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">dnkdsbvkbvkd</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">fhkjcbkjesgbkj</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">jsjbfjgsbjgsf</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">gbfcgkewgfigf</p>
</li> -->
</ul>
</div>
</div>
</div>
<div class="services__card">
<h3 class="services__title">Web Dev Intern</h3>
<span class="services__button">
See More <i class='bx bx-right-arrow-alt services__icon' ></i>
</span>
<div class="services__modal">
<div class="services__modal-content">
<i class='bx bx-x services__modal-close'></i>
<h3 class="services__modal-title">Web Dev Intern</h3>
<p class="services__modal-description">
SHPC Pvt Ltd.,Mumbai, June-August 2021
</p>
<ul class="services__modal-list">
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">Worked as intern on Web Development part of the company as a full stack developer
</p>
</li>
<li class="services__modal-item">
<i class='bx bx-check services__modal-icon' ></i>
<p class="services__modal-info">-.NET Framework<br>
-SQL database<br>
-HTML/CSS</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--=============== WORK ===============-->
<section class="work section" id="work">
<span class="section__subtitle">My Portfolio</span>
<h2 class="section__title">Recent Works</h2>
<div class="work__filters">
<span class="work__items active-work" data-filter= 'all'>All</span>
<span class="work__items" data-filter= '.web'>ML/DL</span>
<span class="work__items" data-filter= '.mobil'>Web Dev</span>
<span class="work__items" data-filter= '.design'>Extra</span>
</div>
<div class="work__container container grid">
<div class="work__card mix design">
<img src="assets/img/work3.png" alt="" class="work__img">
<h3 class="work__title">Find the Table : A Contrastive Learning-based Approach</h3>
<a href="https://github.com/atulya-deep/CLF-TERED" class="work__button">
Demo <i class='bx bx-right-arrow-alt work__icon' ></i>
</a>
</div>
<div class="work__card mix mobil">
<img src="assets/img/work2.png" alt="" class="work__img">
<h3 class="work__title">Neuro Genetic Disorder Prediction</h3>
<a href="https://github.com/atulya-deep/Neuro-Genetic-disorder-prediction" class="work__button">
Demo <i class='bx bx-right-arrow-alt work__icon' ></i>
</a>
</div>
<div class="work__card mix web">
<img src="assets/img/work1.png" alt="" class="work__img">
<h3 class="work__title">Navigation-System RL</h3>
<a href="https://github.com/atulya-deep/Reinforcement_Learning/tree/main/Navigation_system" class="work__button">
Demo <i class='bx bx-right-arrow-alt work__icon' ></i>
</a>
</div>
<div class="work__card mix web">
<img src="assets/img/work.png" alt="" class="work__img">
<h3 class="work__title">Furniture Detection</h3>
<a href="https://github.com/atulya-deep/Deep-Learning-Workshop---Furniture-Detection-1" class="work__button">
Demo <i class='bx bx-right-arrow-alt work__icon' ></i>
</a>
</div>
<div class="work__card mix web">
<img src="assets/img/workk.jpeg" alt="" class="work__img">
<h3 class="work__title">Attendance-system-using-Facial-Recognition</h3>
<a href="https://github.com/atulya-deep/Attendance-system-using-Facial-Recognition" class="work__button">
Demo <i class='bx bx-right-arrow-alt work__icon' ></i>
</a>
</div>
<div class="work__card mix design">
<img src="assets/img/images.png" alt="" class="work__img">
<h3 class="work__title">Real-time-traffic-sign-detection</h3>
<a href="https://github.com/atulya-deep/Real-time-traffic-sign-detection" class="work__button">
Demo <i class='bx bx-right-arrow-alt work__icon' ></i>
</a>
</div>
<!--<div class="work__card mix web">
<img src="assets/img/work4.jpg" alt="" class="work__img">
<h3 class="work__title">AI Suduko Solver</h3>
<a href="https://github.com/Coding-Ninjas-Club-SRM/AI-ML-MINI-PROJECT-3/tree/main/Saifeen" class="work__button">
Demo <i class='bx bx-right-arrow-alt work__icon' ></i>
</a>
</div>-->
</div>
</section>
<!--=============== TESTIMONIALS ===============-->
<section class="testimonial section">
<span class="section__subtitle">Volunteering</span>
<h2 class="section__title">Position of Responsibility</h2>
<div class="testimonial__container container swiper">
<div class="swiper-wrapper">
<div class="testimonial__card swiper-slide">
<img src="assets/img/coast.jpg" alt="" class="testimonial__img">
<h3 class="testimonial__name">Coastrack</h3>
<p class="testimonial__description">Founder and Leader<br>
(2022 - till date)</p>
</div>
<div class="testimonial__card swiper-slide">
<img src="assets/img/AIrobo.jpg" alt="" class="testimonial__img">
<h3 class="testimonial__name">AI ROBO LAB</h3>
<p class="testimonial__description">Domain lead <br>
(2022-till date)</p>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</section>
<!--=============== CONTACT ===============-->
<section class="contact section" id="contact">
<span class="section__subtitle">Get in touch</span>
<h2 class="section__title">Contact Me</h2>
<div class="contact__container container grid">
<div class="contact__content">
<h3 class="contact__title">Talk to me</h3>
<div class="contact__info">
<div class="contact__card">
<i class='bx bx-mail-send contact__card-icon'></i>
<h3 class="contact__card-title">Email</h3>
<span class="contact__card-data">atulya.deep@gmail.com</span>
<a href="mailto:atulya.deep@gmail.com" method="post" target="_blank" class="contact__button">
Mail me <i class='bx bx-right-arrow-alt contact__button-icon' ></i>
</a>
</div>
<div class="contact__card">
<i class='bx bxl-whatsapp contact__card-icon' ></i>
<h3 class="contact__card-title">Whatsapp</h3>
<span class="contact__card-data">9816622382</span>
<a href="https://api.whatsapp.com/send?phone=6204256855&text=Hey there!" target="_blank" class="contact__button">
Text me <i class='bx bx-right-arrow-alt contact__button-icon' ></i>
</a>
</div>
<div class="contact__card">
<i class='bx bxl-instagram contact__card-icon' ></i>
<h3 class="contact__card-title">Instagram</h3>
<span class="contact__card-data">atulya_deep</span>
<a href="https://www.instagram.com/atulya_deep/" target="_blank" class="contact__button">
Ping me <i class='bx bx-right-arrow-alt contact__button-icon' ></i>
</a>
</div>
</div>
</div>
<div class="contact__content">
<h3 class="contact__title">Tell about me your Project</h3>
<form action="" class="contact__form">
<div class="contact__form-div">
<label for="" class="contact__form-tag">Name</label>
<input type="text" placeholder="Insert your name" class="contact__form-input">
</div>
<div class="contact__form-div">
<label for="" class="contact__form-tag">Mail</label>
<input type="email" placeholder="Insert your email" class="contact__form-input">
</div>
<div class="contact__form-div contact__form-area">
<label for="" class="contact__form-tag">Project</label>
<textarea name="" id="" cols="30" rows="10" placeholder="Write your project idea" class="contact__form-input"></textarea>
</div>
<button class="button">Send Message</button>
</form>
</div>
</div>
</section>
</main>
<!--=============== FOOTER ===============-->
<footer class="footer">
<div class="footer__container container">
<h1 class="footer__title">Atulya
<br>Thanks for visiting :) <br>
</h1>
<ul class="footer__list">
<li>
<a href="#about" class="footer__link">About</a>
</li>
<li>
<a href="#skills" class="footer__link">Skills</a>
</li>
<li>
<a href="#work" class="footer__link">Projects</a>
</li>
</ul>
<ul class="footer__social">
<a href="https://www.instagram.com/" target="_blank" class="footer__social-link">
<i class='bx bxl-instagram' ></i>
</a>
<a href="https://www.facebook.com/" target="_blank" class="footer__social-link">
<i class='bx bxl-facebook' ></i>
</a>
<a href="https://www.twitter.com/" target="_blank" class="footer__social-link">
<i class='bx bxl-twitter' ></i>
</a>
</ul>
<span class="footer__copy">
Copyright@ Untitled. All rights reserved.
</span>
</div>
</footer>
<!--=============== SCROLLREVEAL ===============-->
<script src="assets/js/scrollreveal.min.js"></script>
<!--=============== SWIPER JS ===============-->
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<!--=============== MIXITUP FILTER ===============-->
<script src="assets/js/mixitup.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
</body>
</html>