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

Surrogate Retraining Cadence

Twin surrogates are retrained on a governed cadence — scheduled, drift-triggered, and regime-triggered — so acceleration never comes at the cost of stale physics.

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.

Fast surrogates need fresh grounding

The twin's neural operators and reduced-order models trade fidelity for speed so the real-time layers can run. That trade is only safe if the surrogates are re-grounded often enough to track the true machine. Retraining cadence is the policy that decides how often each surrogate is refreshed, balancing compute against the risk of a surrogate drifting away from physics.

Cadence is not one number. Fast-changing subsystems (edge conditions, first-wall state) are refreshed more often than slow ones (bulk neutronics response). Each surrogate declares a cadence policy combining a scheduled floor, a drift trigger, and a regime trigger, whichever fires first. The registry tracks the age of each surrogate against its policy so an overdue surrogate is visible.

Cadence drivers

python
def due_for_retrain(sur, now, monitors):
    return (now - sur.trained_at > sur.max_age
            or monitors.drift(sur.name)
            or monitors.new_regime(sur.name)
            or monitors.fidelity(sur.name) > sur.tol)
# batch all due surrogates into one L0 sweep to amortize compute

Cadence connects the continual-learning loop to compute scheduling: retraining is expensive, so overdue surrogates are batched into efficient L0 sweeps rather than retrained one at a time. Every refreshed surrogate re-enters through the validation gates; no surrogate is swapped into the live twin without clearing them.

Content reviewed August 2026 · design-and-simulation stage