MASc in Computer Engineering
- Nominated for the Best Master's Thesis Award, 2025
- Courses: Engineering AI Software Systems, Representation Learning, Advanced Concepts of Cloud Computing (GPA 4.0)
- TA: Files and Databases
ML Software Engineer & Researcher, Databases Internals Enjoyer
ICDE 2026
SQLMorph is a mutation-based framework for robust, reproducible Text-to-SQL evaluation. It tackles limits of public benchmarks and the cost/instability of private sets by automatically generating/expanding evaluation data via (1) Join Query Expansion (JQE), which systematically adds semantically valid joins to raise structural complexity, and (2) Textual Query Augmentation (TQA), which applies controlled natural-language perturbations to probe linguistic robustness. These create targeted “choke points”: on state-of-the-art models, JQE increases coverage and exposes accuracy decay as join count grows, while TQA surfaces brittleness. Beyond datasets, SQLMorph introduces relaxed execution-level metrics—Execution Precision (EXP), Execution Recall (EXR), and their F1—to capture partial correctness.
NeurIPS 2024 · TRL
Text-to-SQL enables users to interact with databases through natural language, simplifying access to structured data. Although highly capable large language models (LLMs) achieve strong accuracy for complex queries, they incur unnecessary latency and dollar cost for simpler ones. In this paper, we introduce the first LLM routing approach for Text-to-SQL, which dynamically selects the most cost-effective LLM capable of generating accurate SQL for each query. We present two routing strategies (score- and classification-based) that achieve accuracy comparable to the most capable LLM while reducing costs. We design the routers for ease of training and efficient inference. In our experiments, we highlight a practical and explainable accuracy-cost trade-off on the BIRD dataset.
JOBE 2024
Concrete design often overuses cement to guarantee 28-day strength, even when many structural elements, like foundations and pavements, reach full load much later. This study uses machine learning to optimize cement content for a 90-day strength target, reducing waste and emissions. Using ANN, deep learning, and regression models trained on 28- and 90-day compressive strength data, we predict optimal cement content with up to 94% accuracy. Elastic Net achieves the best results, showing potential for ~10% reductions in both cement use and carbon footprint.
Project
A modular NL2SQL system that translates natural language questions into SQL queries, enforces row-level guardrails, executes the SQL against a SQLite database, and returns results in natural language. Built around a composable operator pipeline with five guardrail layers and a generic early-stop mechanism.
Project
DailyDiet is a full-stack nutrition management platform that helps users plan meals, calculate daily calorie needs, and explore recipes tailored to their goals. I was responsible for leading all backend development — building a scalable RESTful API with Flask and PostgreSQL to handle user authentication, dynamic diet generation, and recipe indexing. The backend features a dynamic-programming–based diet recommendation engine, JWT-secured user accounts, and Elasticsearch integration for semantic and ingredient-based recipe search. I also managed deployment and infrastructure setup on Heroku, and designed the data models for user tracking and admin moderation. The API powers the Vue.js + Nuxt web frontend and the companion iOS app.