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

A/B and Interleaving Evaluation Offline

Since live A/B on a single machine is unsafe, Kronos compares models by counterfactual replay on the twin and by matched shadow evaluation, not by splitting live traffic.

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.

No live traffic split on one machine

In software, A/B testing splits live traffic between two versions. A fusion machine is a single physical system where you cannot run two controllers on two halves of the plasma. Kronos therefore replaces live A/B with two safe substitutes: counterfactual replay on the digital twin, and matched-pairs shadow evaluation on the real data path.

Counterfactual replay takes recorded machine states and rolls each candidate forward through the calibrated twin, producing a comparable outcome for each without touching hardware. Because both candidates start from identical recorded initial conditions, the comparison is a clean paired experiment. Its validity rests entirely on twin fidelity, so replay results are always cross-checked against shadow evidence on the real machine.

The two methods

python
def counterfactual(twin, states, A, B):
    dA, dB = [], []
    for s0 in states:                    # identical starts -> paired
        dA.append(twin.rollout(s0, policy=A))
        dB.append(twin.rollout(s0, policy=B))
    return paired_test(score(dA), score(dB))   # e.g. Wilcoxon

For copilots, which do not actuate, a gentler interleaving is possible: alternate which model's suggestion is shown and record operator preference, feeding preference data. For controllers, replay plus champion-challenger shadow is the standard, and both depend on a well-refined twin, tying this method back to twin refinement.

Content reviewed August 2026 · design-and-simulation stage