-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (119 loc) · 5.29 KB
/
index.html
File metadata and controls
130 lines (119 loc) · 5.29 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aadeesh Jain | Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<h1>Aadeesh Jain</h1>
<nav>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#experience">Experience</a>
<a href="#projects">Projects</a>
<a href="#hackathons">Hackathons</a>
<a href="#education">Education</a>
<a href="#contact">Contact</a>
</nav>
<a href="Aadeesh_Resume.pdf" class="resume-btn" target="_blank">Download Resume</a>
</div>
</header>
<!-- About -->
<section id="about" class="section">
<div class="container">
<h2>About Me</h2>
<p>
I’m a Software Developer with expertise in embedded systems, AI deployment, and high-performance computing.
I focus on building efficient, scalable, and maintainable systems, with experience spanning C++, Python,
machine learning, and edge AI deployment.
</p>
</div>
</section>
<!-- Skills -->
<section id="skills" class="section alt">
<div class="container">
<h2>Skills</h2>
<ul>
<li><strong>Languages:</strong> C++ (11/14/17), C, Python, Bash, R, MATLAB</li>
<li><strong>Technologies:</strong> Git, Linux, CMake, GitLab CI/CD, pandas, OpenCV, PyTorch, TensorFlow, Vim, MQTT, CUDA</li>
<li><strong>Relevant Courses:</strong> Machine Learning, Deep Learning & CV, OS Fundamentals, Reinforcement Learning</li>
</ul>
</div>
</section>
<!-- Experience -->
<section id="experience" class="section">
<div class="container">
<h2>Experience</h2>
<div class="job">
<h3>Software Developer - Siemens Technology</h3>
<p><em>Nov 2023 – Present | Bengaluru, India</em></p>
<ul>
<li>Implemented TCP/IP protocol for real-time HMI-controller communication, reducing latency by 40%.</li>
<li>Built a cross-platform simulation framework eliminating repeated firmware flashing.</li>
<li>Developed an MQTT-based asynchronous system for remote boiler control.</li>
<li>Designed MVP-architecture UI with LVGL, enhancing stability and maintainability.</li>
</ul>
</div>
<div class="job">
<h3>Efficient MLOps Pipeline for AI Deployment</h3>
<p><em>May 2023 – Nov 2023</em></p>
<ul>
<li>Automated dataset processing, model training, and deployment.</li>
<li>Optimized AI for STM32 & MAX series with hardware accelerators.</li>
<li>Achieved 4x model size reduction using QAT.</li>
</ul>
</div>
</div>
</section>
<!-- Projects -->
<section id="projects" class="section alt">
<div class="container">
<h2>Projects</h2>
<ul>
<li><strong>Time Series Data Refinement & Transformer-Based Fault Detection:</strong> Improved prediction accuracy by 15% with dynamic covariates and fine-tuning TimesFM & GTT-Client.</li>
<li><strong>Automated Testing of Fire Safety Panels:</strong> Integrated robotic arm, camera, and OCR for autonomous industrial testing.</li>
</ul>
</div>
</section>
<!-- Hackathons -->
<section id="hackathons" class="section">
<div class="container">
<h2>Hackathons & Competitions</h2>
<ul>
<li><strong>Aavishkar’25 (Winner):</strong> Non-intrusive HMI testing framework for embedded touchscreens.</li>
<li><strong>Innovathon’24 (Finalist):</strong> Bluetooth mesh sensor network with real-time heatmap visualization.</li>
</ul>
</div>
</section>
<!-- Education -->
<section id="education" class="section alt">
<div class="container">
<h2>Education</h2>
<p>B.Tech in Civil Engineering, IIT Kanpur (2019 – 2023), GPA: 7.8/10</p>
</div>
</section>
<!-- Contact -->
<section id="contact" class="section">
<div class="container">
<h2>Contact</h2>
<p>Email: <a href="mailto:jainaadeesh74@gmail.com">jainaadeesh74@gmail.com</a></p>
<p>Phone: +91 9314695728</p>
<p>
<a href="https://www.linkedin.com/in/aadeesh74" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/aadeesh74" target="_blank"><i class="fab fa-github"></i></a>
</p>
</div>
</section>
<footer>
<p>© 2025 Aadeesh Jain</p>
</footer>
</body>
</html>