Artificial Intelligence

CI/CD for ML

Continuous Integration and Continuous Deployment applied to machine learning — automating the testing, validation, and deployment of ML models whenever code or data changes.

Why It Matters

CI/CD for ML closes the gap between ML experiments and production. It catches model quality regressions before they reach users.

Example

A pipeline that automatically retrains a model when new data arrives, runs evaluation tests, compares performance to the current production model, and deploys if it wins.

Think of it like...

Like software CI/CD but with additional steps — not just 'does the code compile?' but 'is the model still accurate?' and 'has the data changed?'

Related Terms