← Lessons

quiz vs the machine

Platinum1800

Machine Learning

The Retraining Trigger

Deciding when to retrain rather than retraining blindly on a clock.

6 min read · advanced · beat Platinum to climb

The decision

Retraining costs compute, risk, and review. The retraining trigger is the policy that decides when a refresh is justified, balancing freshness against cost and stability.

Trigger types

  • Scheduled retrains on a fixed cadence such as weekly. Simple but blind to actual need.
  • Performance based retrains when a tracked metric drops below a threshold. Targeted but needs labels.
  • Drift based retrains when input or prediction drift crosses a bound. Early but can fire on harmless drift.
  • Volume based retrains after enough new labeled data accumulates.

Designing a good policy

Most teams combine triggers with guards. A drift alarm proposes retraining, a performance check confirms it is warranted, and a cooldown prevents thrashing from retraining too often.

Avoiding two failure modes

  • Retraining too rarely lets the model decay and lose accuracy.
  • Retraining too often burns resources, adds risk, and can chase noise into a worse model.

The goal is to retrain when it actually improves the model, confirmed by the evaluation gate.

Key idea

A retraining trigger is a policy combining schedule, performance, drift, and data volume signals, with guards, to retrain only when a refresh genuinely helps.

Check yourself

Answer to earn rating on the learn ladder.

1. What is the weakness of a purely scheduled retraining trigger?

2. Why do teams add a cooldown and a performance check to drift triggers?

3. What confirms that a retraining was worthwhile?