Week 2 Capstone · AI Engineering Roadmap
Completed · Learning Project · 2026-08-23
A Python data pipeline that cleans, validates, and analyzes messy AI model API usage logs, flags IQR outliers, and exports analysis-ready results.
Tech stack: Python, Pandas, NumPy, CSV, JSON, Git
A Python data pipeline built as my Week 2 capstone. It transforms messy AI model API usage logs into analysis-ready data by cleaning and validating records, flagging unusual token usage, calculating overall and per-model metrics, and exporting clean CSV data and JSON summaries.
This project reinforced that data quality has to come before analytics. Domain validation answers whether a measurement is valid, while statistical anomaly detection identifies observations that are merely unusual; keeping those decisions separate prevents legitimate workloads from being discarded. Separating processing, reporting, and export responsibilities also made the pipeline easier to understand and maintain.