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

Model Provenance Badges

A compact, glanceable badge system that tells an operator at a glance whether an AI output is trained, validated, calibrated, and running on healthy inputs.

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.

Provenance you can read in one glance

The full provenance card answers everything but takes attention to read. During an upset an operator needs the summary instantly, so each AI-derived value also carries a small badge encoding its trust state. The badge is deliberately coarse — it exists to tell the operator whether to lean on this number or scrutinize it, not to replace the detail one click away.

Badge dimensions

DimensionMeaning
Validatedthe producing model passed V&V and is released
Calibratedits confidence is currently trustworthy
Inputs healthyno critical diagnostic is imputed or dead
In distributionthe machine state is within the model's training regime

A value with all four green is a value to act on. Any amber or red dimension is a cue to open the provenance card and understand the limitation before trusting the number. Out-of-distribution is the most important flag: it means the machine has entered a regime the model was never trained on, which is exactly when an unbadged AI is most dangerous and most confident-looking.

Badges follow the value everywhere

The same badge rides with a quantity across the dashboard, the 3D overlay detail card, the mobile view, and incident replay, so trust state is consistent no matter where an operator encounters the number. In replay, badges are historical — you see the trust state as it actually was at that instant, which is how post-event reviews catch cases where a stale-but-green-looking value misled a decision.

python
def badge(estimate):
    return {
      'validated':   estimate.model.vv_passed,
      'calibrated':  estimate.calibration_ok,
      'inputs_ok':   not estimate.any_input_imputed_critical,
      'in_dist':     estimate.ood_score < OOD_THRESHOLD,
    }  # 4 booleans -> green/amber/red glyphs, detail one click away

Badges are the machine-readable face of the trust contract; the reasoning behind them lives in confidence and provenance display, and the decision they inform is covered in trust and override UX.

Content reviewed August 2026 · design-and-simulation stage