Skip to content
View Naveenp7's full-sized avatar
🎯
πŸ“Œ Learning, building, improving
🎯
πŸ“Œ Learning, building, improving

Block or report Naveenp7

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Naveenp7/README.md

Hi, I'm Naveen πŸ‘‹

AI/ML Engineer & Solutions Architect β€” I design systems for problems most people avoid

Naveen's GitHub contribution calendar and stats

πŸ“… Auto-updated daily via GitHub Actions (lowlighter/metrics)


🧭 How I think about my work

I don't just write ML code β€” I design the architecture around the problem: where the bottleneck actually is, what breaks at scale, and what the cheapest correct solution looks like. Whether it's a RAG pipeline that needs to stay cheap in production, a booking backend that can't afford race conditions, or a real-time CV system running on a webcam β€” my job is to find the right-sized solution, not the fanciest one.

  • πŸ—οΈ Systems thinker β€” I design for failure modes (race conditions, cost blowups, latency) before I write the first line of model code.
  • 🎯 Full ML lifecycle β€” data β†’ embeddings/features β†’ training/orchestration β†’ evaluation β†’ deployment, end to end.
  • πŸ’Έ Cost-aware by default β€” I default to free-tier, open-weight, and efficient architectures unless there's a real reason not to.
  • πŸ† 2Γ— Hackathon Prizewinner β€” shipped full products from zero in 30-hour sprints, twice, under real judging pressure.
  • πŸ§‘β€πŸ« Taught what I know β€” ran a hands-on LLM-tooling workshop for 20+ junior developers, not just built solo.

🧩 Architecture Highlights

Cost-Efficient RAG System β€” a retrieval pipeline (ChromaDB + LangChain + HuggingFace embeddings + Groq LLaMA-3) designed explicitly around minimizing per-query cost without sacrificing retrieval quality β€” not just "a RAG demo," but a cost model for one. πŸ”— github.com/Naveenp7/Cost-Efficient-RAG

LLM-as-Judge Evaluation Pipeline β€” an automated evaluation system with explicit bias mitigation for position bias, verbosity bias, and sycophancy β€” the kind of infrastructure that makes LLM outputs trustworthy enough to ship. πŸ”— github.com/Naveenp7/llm-judge

Movie Seat Manager β€” a high-concurrency booking backend (.NET 8, PostgreSQL, Redis) solving double-booking with distributed locking, idempotency keys, and ACID-compliant transactions. Systems design that generalizes directly to e-commerce and SaaS at scale. πŸ”— github.com/Naveenp7/Movie-Seat-Manager

Enterprise RAG Knowledge Assistant β€” end-to-end document Q&A pipeline (LangChain, ChromaDB, Sentence Transformers, FastAPI) covering chunking, embedding, retrieval, and prompt orchestration as a deployable service, not a notebook.

Crowd Detection & Density Estimation β€” real-time YOLO-based video analytics for public-safety and smart-city use cases, with configurable alerting β€” built for production constraints, not just accuracy on a benchmark. πŸ”— github.com/Naveenp7/Crowd-Detection

AI Resume Screener β€” BERT-embedding-based semantic matching engine ranking candidates against job descriptions, with a full NLP pipeline for PDF parsing, NER, and skill extraction.


πŸ› οΈ Tech I architect with

Languages: Python Β· JavaScript/TypeScript Β· SQL Β· Java Β· Dart

ML & AI: PyTorch Β· TensorFlow Β· Keras Β· Scikit-learn Β· XGBoost Β· HuggingFace Transformers Β· LangChain Β· NLTK Β· spaCy

LLM Engineering: RAG Pipelines Β· Prompt Engineering Β· LLM-as-Judge Β· Agentic Workflows Β· GPT Β· BERT Β· Claude Β· Groq

Backend & Systems: FastAPI Β· Flask Β· Node.js Β· Express.js Β· REST API Design Β· Distributed Locking Β· Auth Workflows

Data: PostgreSQL Β· Firebase Firestore Β· Redis Β· SQLite Β· Pandas Β· NumPy Β· SHAP

Cloud & DevOps: Docker Β· Kubernetes (fundamentals) Β· Vercel Β· GCP Β· Model Deployment

Frontend: React.js Β· Next.js Β· Tailwind CSS Β· Flutter/Dart


πŸ† Recognition

  • πŸ₯ˆ 2nd Prize β€” MATRIX Hackathon (30-hour), CSE Dept., MES College of Engineering β€” shipped a complete full-stack product from zero, ahead of 20+ competing teams.
  • πŸ₯‰ 3rd Prize β€” KOTECH Tech Hackathon (July 2025), Qismat Foundation Γ— Kottakkal Municipality.
  • πŸŽ“ Workshop Facilitator (ADTEC Program) β€” led a hands-on AI coding workshop for 20+ junior developers on LLM tooling, prompt engineering, and AI-assisted dev workflows.
  • ☁️ Google Cloud Skill Badges β€” Docker, Kubernetes, IAM, Cloud Storage, Monitoring; Compute Engine fundamentals.

πŸ“« Let's build something

Open to AI/ML Engineer, AI Engineer, and software architecture-adjacent roles β€” anywhere in India or remote. If you're solving a hard retrieval, evaluation, or systems-design problem, I'd love to hear about it.

πŸ“§ naveensanthosh830@gmail.com Β· πŸ”— LinkedIn Β· 🌐 Portfolio

English (Professional) Β· Malayalam (Native) Β· Hindi & Tamil (Conversational)

Pinned Loading

  1. MediaPipe-Real-Time-Computer-Vision-Demos MediaPipe-Real-Time-Computer-Vision-Demos Public

    This repository showcases a collection of real-time computer vision applications built with MediaPipe and OpenCV.

    Python 4 3

  2. Crowd-Detection-Density-Estimation-System Crowd-Detection-Density-Estimation-System Public

    Developed a computer vision-based AI system to detect crowds and estimate density in real-time.

    Python 1

  3. Explainable-Clickbait-Detection Explainable-Clickbait-Detection Public

    Built an AI model to classify news headlines as clickbait or genuine using NLP techniques.

    Python 1

  4. WebRTC-Smart-meating WebRTC-Smart-meating Public

    TypeScript 1

  5. Cost-Efficient-RAG Cost-Efficient-RAG Public

    This is a production-grade, cost-efficient Retrieval-Augmented Generation (RAG) application that enables question answering over a custom document corpus. It combines a self-hosted ChromaDB vector …

    Python

  6. movie_seat_manager movie_seat_manager Public

    A production-grade backend system designed to handle high-concurrency movie ticket bookings. This solution addresses race conditions, system failures, and network inconsistencies using a Distribute…

    C#