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

Active Learning and Experiment Design

Active learning turns model uncertainty into experiment proposals, so scarce machine time is spent where new data most improves the models that run the machines.

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.

Spending pulses where they teach the most

Machine time is the scarcest resource, and not all pulses are equally informative. Active learning closes the loop from model uncertainty to experiment design: the operating points where models are least certain, or where regime monitors flagged extrapolation, become candidate experiments. The goal is maximum information per pulse, subject to safety.

Candidate points are scored by expected model improvement — high epistemic uncertainty, high leverage on a validation gate, or coverage of an under-sampled region of operating space — then filtered hard through the safety envelope so no proposed experiment risks the machine. What survives is ranked and offered to physicists as a prioritized experiment queue, not executed autonomously.

Acquisition criteria

python
def acquisition(candidates, ensemble, coverage, envelope):
    scored = []
    for x in candidates:
        if not envelope.safe(x):        # hard safety filter first
            continue
        info = ensemble.disagreement(x) + coverage.gap(x)
        scored.append((info, x))
    return sorted(scored, reverse=True) # ranked experiment queue

On L0, active learning also steers pure-simulation sweeps, choosing which expensive multi-physics runs to spend compute on. For the burner, active learning is bounded by physics: it cannot propose exploring the plug regime that is 166 to 830x beyond any device, so its proposals stay inside the region where results are interpretable. Selected experiments feed straight back into curation and the retraining loop.

Content reviewed August 2026 · design-and-simulation stage