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

Drift Detection: Covariate Shift

Covariate-shift monitors watch the input distributions feeding every deployed model and raise a retraining flag when the live data drifts away from the training set.

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 world moves under the model

A model trained on one distribution of plasma conditions silently degrades when the machine operates in conditions it never saw. Covariate-shift detection measures the divergence between the feature distribution a model was trained on and the feature distribution it is now receiving from the breeder or burner, independent of whether labels are yet available.

Kronos monitors shift on the engineered features that feed each model: for the breeder, quantities such as normalized plasma current, elongation, triangularity, and edge density; for the burner, plug field ratio, mirror ratio, and injected-power fractions. Each feature carries a reference histogram captured at training time; live windows are compared against it continuously.

Statistics used

python
def psi(reference, live, bins):
    r,_ = np.histogram(reference, bins); r = r/r.sum()
    l,_ = np.histogram(live,      bins); l = l/l.sum()
    eps = 1e-6
    return float(np.sum((l - r) * np.log((l+eps)/(r+eps))))

# PSI < 0.1 stable ; 0.1-0.25 watch ; > 0.25 -> flag retrain

A breach does not touch the machine. It raises a flag that (a) lowers the affected model's confidence weighting in the twin and (b) queues a retraining job on L0. Covariate shift is distinct from concept drift, where the input-output relationship itself changes; Kronos monitors both, because a fusion machine can drift in either dimension as components age and campaigns explore new regimes.

Content reviewed August 2026 · design-and-simulation stage