-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (100 loc) · 6.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mohammed Siddiq - AI & ML Engineer</title>
<link rel="stylesheet" href="styles.css">
<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=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<h1 class="name-title">Mohammed Siddiq</h1>
<p class="role-title">AI & Machine Learning Engineer | Former ML Intern at Ignitus</p>
<nav class="main-nav">
<a href="#about">about</a>
<a href="#experience">experience</a>
<a href="#projects">projects</a>
<a href="Resume.pdf" download class="download-btn">
<span>resume</span>
<svg class="download-icon" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor">
<path d="M12 3v13m0 0-4-4m4 4 4-4m-10 6v2h12v-2"/>
</svg>
</a>
</nav>
</header>
<main>
<section id="about" class="about-section">
<p class="intro-text">Hi there! I'm Mohammed Siddiq. I recently graduated with a B.Tech in Computer Science,
specializing in AI and Machine Learning, from Siddhartha Institute of Technology and Science.</p>
<p>I am passionate about AI, ML, NLP, and Deep Learning, and I continuously seek to explore
new technological horizons. During my studies, I completed an internship at Ignitus, where I
contributed to the Learning Management System (LMS) project and focused on house pricing
prediction models.</p>
<p>I'm currently looking for opportunities in ML, Data Science, and AI roles where I can
apply my skills and contribute to innovative projects.</p>
<div class="achievements">
<h3>Achievements</h3>
<ul>
<li>Built and launched a personal portfolio website, increasing professional outreach by 50%</li>
<li>Published a VS Code extension theme, "NightChill" downloaded by 50+ users</li>
<li>Active contributor to open-source projects on GitHub</li>
<li>Achieved 850+ contributions on GitHub</li>
</ul>
</div>
<div class="contact">
<a href="https://github.com/MohdSiddiq12" class="social-link">github</a> •
<a href="https://linkedin.com/in/mohd-siddiq-3516471b0" class="social-link">linkedin</a> •
<a href="mailto:MohammedSiddiq1235@gmail.com" class="social-link">email</a>
</div>
</section>
<section id="experience" class="experience-section">
<h2>Experience</h2>
<div class="experience-item">
<p class="title">Machine Learning Intern, Ignitus</p>
<p class="period">February 2024 – May 2024</p>
<ul class="experience-list">
<li>Implemented ML algorithms in the Learning Management System, boosting user engagement by 30%</li>
<li>Overcame remote work challenges, resolving issues and improving team efficiency</li>
<li>Took initiative on additional projects, demonstrating strong work ethic</li>
<li>Received commendations for dedication and performance in Machine Learning</li>
</ul>
</div>
<div class="experience-item">
<p class="title">Web Developer</p>
<p class="subtitle">Freelance Project for Excel Placements <a href="https://www.excelplacements.com/" class="project-link">Link</a></p>
<p class="period">2024</p>
<ul class="experience-list">
<li>Orchestrated end-to-end domain migration to GoDaddy, including custom DNS configuration,hosting setup, and deployment optimization, ensuring smooth domain transition</li>
<li> Developed responsive website excelplacements.com, driving 40% surge in client acquisition through optimized UX</li>
<li>Delivered full-cycle technical support for domain transfer, hosting configuration, and site deployment.</li>
</ul>
</div>
</section>
<section id="projects" class="projects-section">
<h2>Projects</h2>
<div class="project">
<h3>Natural Language Question Answering System</h3>
<p>Developed a Flask web application that enables users to upload PDF files and ask
questions about their content. It utilizes fine-tuned BERT models for accurate answer retrieval.</p>
<p class="project-meta">Team Leader | Team Size: 5 | Duration: 60 days</p>
<p class="tags">Python • Flask • BERT • NLP</p>
<a href="https://github.com/MohdSiddiq12/Natural-Language-Question-Answering-System" class="project-link">View Project</a>
</div>
<div class="project">
<h3>House Price Prediction</h3>
<p>Built a predictive model using Gradient Boosting Regressor, enabling non-experts to make
informed housing investment decisions.</p>
<p class="project-meta">Team Leader | Team Size: 4 | Duration: 60 days</p>
<p class="tags">Python • ML • Gradient Boosting • Data Analysis</p>
<a href="https://github.com/MohdSiddiq12/House-Price-Prediction-using-Machine-Learning-Algorithm---The-case-of-Hyderabad-India" class="project-link">View Project</a>
</div>
</section>
</main>
</div>
<script src="script.js"></script>
</body>
</html>