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

Shadow Deployment of Controllers

A shadow controller runs on live machine data and computes what it would command, but its outputs go nowhere near an actuator — pure observation before authority.

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.

Watching without touching

Before any controller or predictive model earns authority over the breeder or burner, it runs in shadow: it receives the same live state vector as the production controller, computes its full command trajectory each cycle, and logs it, but its outputs are discarded. Shadow answers the essential question would this model have done something sane, on real conditions, with zero risk.

Shadow is more informative than offline backtesting because it runs against the true, live data path including real latency, real sensor noise, and real missing-data handling. It also exposes the model to conditions no offline test set contained, since campaigns generate novel operating points continuously.

What shadow measures

python
def shadow_cycle(state, prod_ctrl, shadow_ctrl, log):
    u_prod   = prod_ctrl.act(state)        # applied to machine
    u_shadow = shadow_ctrl.act(state)      # DISCARDED, logged only
    log.record(state.t, u_prod, u_shadow,
               div=norm(u_prod - u_shadow),
               violations=check_envelope(u_shadow, state))
    apply(u_prod)                          # only prod acts

Persistent large divergence is not automatically bad; the shadow model may be better. It is a signal to investigate, using the twin to replay both trajectories. A model that survives shadow with well-understood divergence and no envelope violations becomes eligible for canary. Shadow divergence tooling overlaps with divergence detection in the twin layer.

Content reviewed August 2026 · design-and-simulation stage