Data Science

Feature Store

A centralized repository for storing, managing, and serving machine learning features. It ensures consistent feature computation between training and serving, and enables feature reuse across teams.

Why It Matters

Feature stores prevent the #1 cause of ML production failures: training-serving skew (features computed differently in training vs production). They also accelerate development through reuse.

Example

A feature store containing pre-computed features like 'customer_30day_purchase_count' and 'average_transaction_amount' that multiple teams use across fraud detection, recommendation, and churn models.

Think of it like...

Like a shared pantry in a co-working kitchen — common ingredients are prepared once and stored centrally so every cook can use them consistently without duplicating work.

Related Terms