Desktop View (≥961px)
Mobile View (<961px)
Profile
Aadarsh Kr. 👋

Building with Python,
Machine Learning, and
Data Structures

HTML
CSS
Python
Machine Learning
Database Management
Data Structures
GitHub
HTML
CSS
Python
Machine Learning
Database Management
Data Structures
GitHub

Interned at SSPL (DRDO)

SSPL (DRDO)

Research & Development Intern

• Worked on ML-based signal processing
• Developed data analysis algorithms
• Implemented research prototypes
• Created technical documentation
Python Signal Processing Machine Learning Research
& CETPA

CETPA

ML & Frontend Development Intern

• Built machine learning models for data analysis
• Developed responsive web applications
• Implemented AI/ML solutions
• Created interactive user interfaces
Python Machine Learning HTML/CSS JavaScript
to
create impactful results.

Projects
Let's Work Together

Tell me about your next
project

WhatsApp

Project Demo

00:00 / 00:00
// Close video modal document.querySelector('.video-close-btn').addEventListener('click', function() { const videoModal = document.querySelector('.video-modal'); const video = document.querySelector('.video-wrapper video'); // Add closing class for exit animation videoModal.classList.add('closing'); // Pause the video if (video) { video.pause(); \ } // After animation completes, hide modal and remove closing class setTimeout(function() { videoModal.classList.remove('active'); videoModal.classList.remove('closing'); }, 400); }); // Watch button click handler document.querySelector('.watch-video-btn').addEventListener('click', function() { const videoModal = document.querySelector('.video-modal'); const video = document.querySelector('.video-wrapper video'); // Show modal videoModal.classList.add('active'); // Play video after modal is visible setTimeout(function() { if (video) { video.play().catch(error => { console.log('Auto-play was prevented:', error); }); } }, 500); });