← experimental
Contents
  1. Definition
  2. Why Continual Learning Matters
  3. Stateless Retraining vs Stateful Training
  4. Four Stages of Continual Learning Maturity
  5. Champion / Challenger Model Pattern
  6. Test in Production Methods
  7. Shadow Deployment
  8. A/B Testing
  9. Canary Release
  10. Interleaving Experiments
  11. Bandits
  12. Contextual Bandits
  13. Continuous ML Challenges (RML Perspective)
  14. Crisis Response Steps
  15. Stable Baseline Strategies for A/B Tests
  16. How Different Sources Treat It
  17. Related Concepts

Definition

Continual learning is a model update paradigm in which systems are retrained on a stream of fresh data rather than on fixed historical snapshots. It is distinct from online learning in that updates occur on mini-batches, not per-sample. (→ Designing Machine Learning Systems ch. 9)

Test in production is the discipline of validating ML models against real production traffic — complementing offline evaluation, which can never fully replicate production data distributions.

Why Continual Learning Matters

Three motivations:

  1. Combat distribution shifts. Static models degrade as production data diverges from training data. More frequent updates reduce the staleness gap. (→ Data Distribution Shifts)
  2. Handle rare events. Black Friday traffic, viral events, and one-off market shocks cannot be anticipated in training data; models must adapt as they occur.
  3. Continuous cold start. New users and new items have no history. A continually-updating model can personalise within minutes. TikTok can adapt to a new user's preferences in ten minutes.

Empirical evidence for data freshness value: Facebook found that moving from weekly to daily retraining reduced loss by 1% for ad click-through rate — a large number given revenue scale. The value of data freshness should be measured empirically: compare models trained on different time windows (last day, last week, last month) against a held-out evaluation window.

Stateless Retraining vs Stateful Training

Approach Description Trade-offs
Stateless retraining Train from scratch on a combined historical + new dataset Simple; reproducible; computationally expensive; requires storing all historical data
Stateful training (fine-tuning) Continue training from the last model checkpoint on new data only Computationally efficient; avoids storing all historical data; risk of catastrophic forgetting; harder to debug

Grubhub switched to stateful training and achieved a 45× compute reduction alongside a 20% increase in purchase completion rate. Stateful training is also the only viable approach when historical data cannot be retained (GDPR, privacy constraints).

Model iteration vs data iteration:

  • Data iteration: same model architecture, fresh training data. Stateful-compatible; more frequent.
  • Model iteration: architecture changes, new features, new objective. Requires full stateless retraining.

Four Stages of Continual Learning Maturity

Stage Description
1 — Manual stateless Ad hoc retraining from scratch; triggered by observed degradation
2 — Automated stateless Scheduled retraining pipeline; fixed cadence; no human trigger needed
3 — Automated stateful Scheduled fine-tuning pipeline; retains checkpoint; reduces compute
4 — Trigger-based Automated retraining triggered by time, performance degradation, data volume threshold, or detected drift

Trigger types for stage 4: time-based (simplest), performance-based (when accuracy drops below threshold), volume-based (after N new labelled examples), drift-based (when distribution shift is detected). Most production systems combine multiple trigger types.

Champion / Challenger Model Pattern

Running a challenger model in shadow mode against the champion model — receiving the same inputs but not serving its predictions — allows evaluation without user impact. When the challenger's offline metrics and shadow performance are sufficient, it is promoted to champion. This pattern is the production-safe way to validate model iteration.

Test in Production Methods

Offline evaluation is necessary but insufficient. The following methods validate models against real production traffic.

Shadow Deployment

The challenger receives all production traffic in shadow mode. Predictions are logged but not served. Safe but doubles compute cost and cannot measure user-facing outcomes (click, purchase, engagement).

A/B Testing

Random traffic split: group A receives model A, group B receives model B. Standard statistical hypothesis testing determines whether differences in business metrics are significant. Requirements:

  • Sufficient sample size — Booking.com runs 1,000+ A/B tests simultaneously
  • Sufficient duration — early stopping causes false positives; test until statistical significance threshold is reached
  • Metric alignment — ML metrics (accuracy) ≠ business metrics (revenue); A/B testing bridges the gap
  • Random assignment must be stable per user (consistent hashing), not per request, to avoid mixed experiences

Google and Microsoft each run 10,000+ A/B tests per year.

Canary Release

Progressive traffic rollout: 1% → 5% → 20% → 50% → 100%. Monitor key metrics at each stage; abort and roll back on degradation. Canary release is slower than A/B testing but allows gradual risk exposure. Particularly important for safety-critical models or models with high rollback cost.

Interleaving Experiments

Both models' recommendations are interleaved in a single response — a user sees results from both models simultaneously, not assigned to a single model. Each item is attributed to the model that produced it; aggregate attribution reveals which model is preferred.

Netflix showed interleaving experiments require dramatically fewer samples than A/B testing to reach the same statistical power, because within-user variance is eliminated. Interleaving requires results to be list-shapeable (rankings, recommendations).

Bandits

Bandits treat model selection as an exploration-exploitation problem. The system continuously allocates traffic to explore model candidates and exploits the currently best-performing one.

Algorithm Description
ε-greedy Exploit the current best model with probability 1-ε; explore randomly with probability ε
Thompson Sampling Sample from the posterior distribution of each model's expected reward; naturally balances exploration with uncertainty
Upper Confidence Bound (UCB) Select the model with the highest upper confidence bound on expected reward; optimistic under uncertainty

Empirical comparison: a standard A/B test requires ~630,000 samples to reach significance; a bandit with Thompson Sampling needs only ~12,000. Bandits are stateful and require a reward signal (feedback loop) to update allocation.

Contextual Bandits

Extend bandits to make exploration context-dependent. Instead of choosing globally which model to deploy, contextual bandits choose which action (recommendation, prediction) to show a given user given their context. This is essentially a partial-feedback supervised learning problem: the model observes reward only for the action it took, not for counterfactual actions.

Contextual bandits are the principled solution to the degenerate feedback loop problem — they explicitly separate exploration (showing suboptimal items to learn their value) from exploitation. (→ Data Distribution Shifts)

Continuous ML Challenges (RML Perspective)

Reliable Machine Learning (ch. 10) frames continuous ML as: a system that accepts a steady stream of new code that changes production behaviour. Every new trained model is effectively a new code release — but one driven by data, not developers. This reframing has serious operational implications.

Six major challenges:

Challenge Description
External distribution shift World events (COVID, regulatory changes, market shocks) shift the data distribution; model trained before the event degrades silently
Feedback loops Model predictions influence user behaviour, which feeds back into training data; the model becomes a co-author of its own future training set
Temporal effects Seasonal, weekly, and daily patterns require models to be explicitly aware of time-of-day and calendar effects
Emergency response A feedback loop gone wrong must be detectable and stoppable in real time — not in the next scheduled evaluation window
New launches New products, features, or markets have no history; staged ramp-ups are required to avoid poisoning the model with atypical early data
Model lifecycle management Models must be managed, not shipped — maintaining multiple concurrent versions, monitoring each independently, deprecating safely

Crisis Response Steps

When continuous ML goes wrong (feedback loop, bad data push, distribution bomb), the response follows a defined sequence:

  1. Stop training — halt new model pushes to prevent the bad signal from compounding
  2. Fall back — switch to a simpler model, a lookup table, or a deterministic rule as a temporary replacement
  3. Roll back — revert to the last known-good model checkpoint
  4. Remove bad data — purge the corrupting data from the training set
  5. Roll through — if the corruption is irreversible, accept atypical data and wait for the distribution to normalise

Stable Baseline Strategies for A/B Tests

A/B tests in continuous ML require a stable control group — but a continuously-updating model is not stable. Four approaches to creating a stable baseline:

Strategy Description Trade-offs
Fallback-as-baseline Use the static fallback model as the control Simple; baseline may be much weaker than challenger
Stop trainer Freeze the current model at test start as the control Accurate baseline; baseline degrades over test duration as world changes
Delay trainer Time-lag the trainer — control receives data N days later than challenger Control updates, but lags; complex to implement
Parallel universe Run a completely independent training pipeline with its own data universe Most robust; takes time to stabilise; highest cost

Key recommendation: Treat ALL production ML systems as continuous ML systems, even if retraining is only triggered manually. The questions "when will this model be retrained?" and "what will happen when it is?" should have explicit answers before a model enters production. (→ Reliable Machine Learning ch. 10)

How Different Sources Treat It

Source Perspective
Designing Machine Learning Systems Maturity stages (manual → trigger-based), stateless vs stateful training, test-in-production methods (shadow, A/B, canary, bandits)
Reliable Machine Learning Continuous ML as a data-as-code problem; six operational challenges; crisis response protocol; stable baseline strategies for A/B testing
  • Data Distribution Shifts — continual learning is the primary response to distribution shift
  • Model Development — offline evaluation must precede continual deployment; champion/challenger builds on model selection
  • Monitoring — drift triggers for stage-4 continual learning come from the monitoring layer
  • Ml Systems Design — continual learning sits in the monitoring and adaptation phase of the ML lifecycle