-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
108 lines (98 loc) · 5.35 KB
/
Copy pathabout.html
File metadata and controls
108 lines (98 loc) · 5.35 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | My Portfolio</title>
<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=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<ul class="navbar">
<li><a class="navbar-item" href="index.html">Home</a></li>
<li><a class="navbar-item" href="projects.html">Projects</a></li>
<li><a class="navbar-item active-page" href="about.html">About</a></li>
<li><a class="navbar-item" href="certificates.html">Certificates</a></li>
<li><a class="navbar-item" href="contact.html">Contact</a></li>
</ul>
<div class="container">
<header>
<h1>About Me</h1>
<p class="tagline">My Journey</p>
</header>
<section>
<h2>Professional Summary</h2>
<div class="about-me">
<div class="about-content">
<p>
I am a dedicated Machine Learning Researcher specializing in Natural Language Processing and Large Language Models. With a passion for pushing the boundaries of AI in resource-constrained environments, my work focuses on making advanced models accessible and efficient.
</p>
<p>
I've had the privilege of collaborating with the <strong>University of Pretoria</strong> on research projects related to low-resource NLP applications, contributing to the field of computational linguistics for underrepresented languages in the African context.
</p>
<p>
Currently, I'm working with <strong>Heliverse</strong> on an innovative real-time crime detection project, applying computer vision and machine learning techniques to create safer communities through smart surveillance systems. This project involves developing models that can identify suspicious activities while maintaining privacy standards and minimizing false positives.
</p>
<p>
My research interests include model optimization and creating solutions leveraging traditional as well as gen AI that can operate effectively in environments with limited computational resources. I'm particularly interested in the intersection of theoretical AI research and practical, real-world applications.
</p>
</div>
<img src="oiia-oiiaoiia.gif" alt="Samar's Photo">
</div>
</section>
<section>
<h2>Education & Certifications</h2>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-date">Jan-2025</div>
<div class="timeline-content">
<h3>AI engineer</h3>
<p>Heliverse x GDG</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">Feb-2024</div>
<div class="timeline-content">
<h3>Research Intern</h3>
<p>University of Pretoria</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">Jan-2024</div>
<div class="timeline-content">
<h3>Standford's certification of "Advanced Learning algorithm"</h3>
<p>Stanford Certified</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">Dec-2023</div>
<div class="timeline-content">
<h3>Standford's Certification of "Supervised Machine Learning: Regression and Classification"</h3>
<p>Stanford Certified</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">Aug-2023</div>
<div class="timeline-content">
<h3>B.Tech. in Computer Science</h3>
<p>specializing in AI and ML</p>
</div>
</div>
</div>
</section>
<section>
<h2>Personal Interests</h2>
<p>
Beyond my professional pursuits, I'm an avid gamer with a particular fondness for War Thunder and Ultrakill. I also enjoy 3D modeling in Blender, which serves as both a creative outlet and a way to better understand spatial dimensions for computer vision projects.
</p>
<p>
In my free time, I contribute to open-source AI projects and mentor aspiring machine learning engineers. I believe in the power of community and knowledge sharing to advance the field of artificial intelligence.
</p>
</section>
</div>
<button class="mode-toggle" id="modeToggle">🌙</button>
<script src="script.js"></script>
</body>
</html>