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 › L6 · Experience
L6 · Experience

Out-of-Distribution Signaling to Operators

The single most important trust signal: telling the operator plainly when the machine has entered a regime the AI was never trained on.

THE STACK · click to jumpL7Ecosystem & StrategyL6Experience & VisualizationL5Applications & CopilotsL4OrchestrationL3Twin Modeling & AIL2Data FabricL1Control PlaneL0Foundation▲tlmctl▼L6 · EXPERIENCE & VISUALIZATIONHow people see, steer, and review the plant.1Control-Room 3D Twinlive overlays2Plant-Floor SCADAoperations HMI3Mobile Engineeringfield access4Alerting UXtriage & escalation5DashboardsKPIs & health6Replayincident reviewMACHINE TIESurfaces the L3 twin state and L5 copilots to human operators.KRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATOREXPERIENCE & VISUALIZATIONSHEET 08REV. 2026-08L6 · AI-NATIVE STACK
L6 · Experience & Visualization — its place in the stack (left, click any layer) and its internal components (right). Telemetry rises; control descends.

When the model is out of its depth

An AI model is reliable inside the regime it was trained on and unreliable — often confidently so — outside it. For machines still in design and simulation and heading toward first-of-a-kind first tritium (~2030), operators will inevitably push into states no training set covered. The most important thing L6 can tell an operator is: the AI is now extrapolating beyond what it knows. Out-of-distribution (OOD) signaling makes that explicit rather than leaving the operator to discover it through a bad recommendation.

How OOD is detected and shown

Each model reports an OOD score — how far the current input is from its training distribution — using density estimates, ensemble disagreement, or reconstruction error. When the score crosses a threshold, the affected estimate's provenance badge flips its in-distribution flag, its confidence widens, and any recommendation built on it is explicitly de-weighted. On the 3D overlay, OOD regions are marked distinctly from merely low-confidence ones, because the operator's response differs: low confidence means noisy; OOD means untrusted.

python
def ood_flag(x, model):
    epi   = ensemble_disagreement(x, model)     # members diverge off-distribution
    dens  = model.density_estimate(x)           # low density -> unfamiliar input
    recon = model.reconstruction_error(x)       # autoencoder-style novelty
    score = combine(epi, 1.0 - dens, recon)
    return score > OOD_THRESHOLD                 # -> badge flips, confidence widens

The right operator response

OOD is a cue to shift weight from the AI toward first-principles physics and human judgment, and often to lower the automation level. The interface actively suggests this: when a safety-relevant loop's model goes OOD, the trust-and-override surface recommends more human involvement, and the copilot flags that its reasoning is now less grounded. This is the honest posture the whole stack takes — the AI advises within what it knows and says so clearly when it doesn't.

OOD signaling is the sharp edge of uncertainty visualization and the provenance badges, and it directly shapes trust and override decisions during novel operation.

Content reviewed August 2026 · design-and-simulation stage