Skip to content
Technology How it works Breeder — Hyperion Burner — Aegis Burner — MetroVolt AI-Native Architecture Magnets Fuel cycle Safety Roadmap
Solutions AI & Data Centers Defense & Government Grid & Baseload Neutron Detection Quantum
Learn Technical Library
Proof Publications Whitepapers Technical Library Open Science & Reproducibility The Honest Gates
Company About / Mission Leadership Environment Health & Safety Investors Careers Press Contact
3D Model
AI Architecture › MLOps & Learning
MLOps & Learning

Concept Drift Detection

Concept-drift monitors detect when the relationship a model learned between inputs and outputs stops holding, even if the inputs themselves look familiar.

STRATEGY / SLOW ▲ ▼ MICROSECOND REAL-TIMEL7Ecosystem & Strategytelemetry ▲ control ▼open ▸L6Experience & Visualizationtelemetry ▲ control ▼open ▸L5Applications & Copilotstelemetry ▲ control ▼open ▸L4Orchestrationtelemetry ▲ control ▼open ▸L3Twin Modeling & AItelemetry ▲ control ▼open ▸L2Data Fabrictelemetry ▲ control ▼open ▸L1Control Planetelemetry ▲ control ▼open ▸L0Foundationtelemetry ▲ control ▼open ▸PHYSICAL S.M.A.R.T. GENERATOR PLANTBREEDER · HYPERION1R0 1.2 m · A 2.5 · 16.84 T · δ −0.30BURNER · TANDEM MIRROR2317 T throat · 26.49 T plug · fₙ 5.44% · DEC1 center stack + plasma · 2 high-field plug · 3 expander → direct converterCOLOR GRAMMAR strategy AI-workflow infra/data models reactor/DECLINE SEMANTICStelemetry (µs)controlKRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORMASTER BLUEPRINTSHEET 01REV. 2026-08L0-L7 · 2 MACHINES
The AI-Native S.M.A.R.T. Generator Master Blueprint — eight layers (L0→L7), one control stack, wired to both machines. Telemetry rises in microseconds; control descends the same path.

When the mapping changes, not the inputs

Covariate shift is a change in what inputs arrive; concept drift is a change in what those inputs mean. A breeder disruption-precursor model may see familiar-looking magnetics yet the precursor-to-disruption mapping shifts as first-wall conditioning changes. A burner plug model's inputs may look nominal while the potential-to-confinement relationship moves as coil performance ages. Concept drift is the more dangerous of the two because the inputs give no warning.

Detecting it requires labels, which arrive late: the outcome of a pulse is known only after the pulse. Kronos therefore runs concept-drift detection as a backward-looking process on the L0 archive, comparing rolling model error against a stable baseline error rather than comparing input distributions.

Methods

python
class PageHinkley:
    def __init__(self, delta=0.005, lam=50):
        self.delta, self.lam = delta, lam
        self.mean = 0.0; self.n = 0; self.mT = 0.0
    def update(self, error):
        self.n += 1
        self.mean += (error - self.mean)/self.n
        self.mT += error - self.mean - self.delta
        return self.mT > self.lam      # True -> concept drift

A confirmed concept-drift event is high priority: it means a deployed model's core assumption is stale. It triggers immediate cross-checking against covariate shift, a confidence downgrade in the twin, and a prioritized L0 retrain. If the drifting model holds actuation authority, the rollback path is armed so control can fall back to the last certified artifact.

Content reviewed August 2026 · design-and-simulation stage