Feature Store
ELI5 — The Vibe Check
A feature store is like a shared pantry for ML features. Instead of every data scientist cooking their own ingredients from scratch, everyone grabs pre-made, tested, versioned features from the store. Consistency + reuse = fewer bugs.
Real Talk
A centralized platform for storing, managing, and serving machine learning features used in training and inference. Feature stores ensure consistency between training and serving (avoiding training-serving skew), enable feature reuse across teams, and provide versioning, lineage tracking, and point-in-time correctness.
When You'll Hear This
"The feature store ensures we use the exact same feature computation in training and production inference." / "Teams share features through the feature store instead of reimplementing the same transformations."
Related Terms
ETL
ETL stands for Extract, Transform, Load. You extract data from sources, transform it (clean, reshape, calculate), then load it into your warehouse.
Machine Learning (ML)
Machine Learning is teaching a computer by showing it thousands of examples instead of writing out every rule.