I’m a grad student at ASU’s CoRAL Lab, building agentic AI and retrieval systems. I’ve worked on ML and data science projects at Samsung, Carelon, and several fast-paced startups, tackling problems across domains like healthcare analytics, recommendation systems, and consumer-focused technologies. Before ASU, I earned an MSc in Physics and BE in Electronics from BITS Pilani Goa, blending analytical rigor with technical expertise. I’m interested in both foundational AI research and its practical applications, and I’m actively looking for opportunities that bridge the two.
MS Computer Science
Arizona State University
MSc. Physics
Birla Institute of Technology and Science, Goa Campus
BE Electronics and Instrumentation
Birla Institute of Technology and Science, Goa Campus
Hi! I’m a Graduate Researcher at the CoRAL Lab at ASU. My work focuses on information retrieval, agentic LLM architectures, and large scale information synchronization.
Programming Languages & Frameworks: Python, C/C++, MATLAB, Flask, FastAPI
Machine Learning: PyTorch, TensorFlow, Keras, scikit-learn, Transformers, Hugging Face, OpenCV, pandas, NumPy
LLM/Agent & RAG Stack: LangChain/LangGraph, AutoGen, ChromaDB, Pinecone, FAISS
Data Engineering & Databases: Kafka, Spark, Airflow, MySQL, Postgres, MongoDB
Cloud & DevOps: AWS, Docker, Git, CI/CD, MLflow
Teaching small LMs (~3–4B params) to forget specific facts without retraining from scratch while preserving general ability. Used lightweight procedures like gradient-ascent updates and random-label fine-tuning to make compact LMs “forget on demand” with minimal collateral damage. Also support quantized inference to run efficiently on commodity GPUs.
Key Features:
Technologies: PyTorch, Hugging Face Transformers, LoRA/PEFT, bitsandbytes (4-/8-bit), Small LMs (Llama-3.2-3B-Instruct, Phi-3.5-mini-instruct, Nemotron-Mini-4B-Instruct)
Built an end-to-end ID-image fraud detector with a lightweight CNN, achieving ~92% accuracy on held-out data. The model is exposed inside SQL via a PostgreSQL PL/Python UDF, so analysts can score images for fraud using only SQL—no Python or separate service calls required.
Key Features:
SELECT label, confidence FROM predict_fraud(image_b64)
), enabling analysts to operationalize ML without leaving SQLTechnologies: PyTorch, TorchServe, PostgreSQL (PL/Python), Computer Vision
Real-time face recognition for a camera stream using AWS IoT. Faces are detected at the edge with MTCNN (via a Greengrass component), only cropped faces are sent to the cloud, and FaceNet (in Lambda) returns identity + confidence. Reduced bandwidth and keeping raw frames local.
Key Features:
Technologies: AWS IoT Core, Greengrass v2, AWS Lambda, Amazon SQS, CloudWatch, MTCNN, FaceNet, Python