MLOps & Infrastructure17
AdvancedThe engineering discipline of running AI in production - reliably, efficiently, and at scale.
Continuous Training
The automated process of regularly retraining ML models on fresh data as part of a production ML system - ensuring that models stay current as the world changes rather than degrading on stale distributions.
Data Drift
The gradual or sudden shift in the statistical properties of data that a deployed ML model receives compared to the data it was trained on - the most common cause of silent model degradation in production.
Data Pipeline
The automated sequence of steps that moves raw data from its sources through transformation, validation, and loading into the storage systems that ML training and inference depend on - the plumbing that makes ML systems run.
All concepts
M
Mixed Precision Training
A training technique that uses lower-precision numerical formats (FP16 or BF16) for most computations while maintaining higher-precision (FP32) master copies of weights - cutting memory usage and accelerating training without sacrificing model quality.
Model Monitoring
The continuous measurement of a deployed ML model's behaviour, input distributions, and output quality in production - the operational layer that detects when models are degrading before business impact becomes severe.
Model Pruning
A model compression technique that removes unnecessary weights from a trained neural network - reducing model size and inference cost by identifying and deleting parameters that contribute minimally to the model's outputs.
Model Registry
A centralised versioned repository for trained ML models that tracks every artifact, its metadata, training lineage, evaluation metrics, and deployment status - the single source of truth for which models exist and where they are running.
Model Serving
The infrastructure layer that takes a trained ML model and makes it available to receive requests, run predictions, and return results at production scale - the bridge between a trained artifact and a live application.