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 › Security & Zero-Trust
Security & Zero-Trust

ML Model Integrity and Anti-Poisoning

Models that inform control are treated as security-critical artifacts: their training data, weights, and lineage are protected against poisoning and silent substitution.

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.

Models are code that learned

Kronos uses learned models for state estimation, disruption/off-normal prediction, and control assistance. A model is only as trustworthy as the data it learned from and the pipeline that produced it. Two threats matter: data poisoning (an attacker corrupts training data so the model behaves badly on a chosen trigger) and model substitution (an attacker swaps a trusted model for a malicious one). Both are supply-chain problems and are handled like hardware supply-chain risks.

Anti-poisoning measures

Anti-substitution measures

python
# A model is admitted to control only if it matches signed provenance
def admit_model(model):
    if sha384(model.weights) != model.provenance.subject_hash: return DENY
    if not verify_sig(model.provenance, model_signing_root):    return DENY
    if not passes_physics_tests(model, held_out):               return DENY
    if not two_person_ok(model.promotion):                      return DENY
    return ADMIT   # then crosses the air-gap bridge to control

Bounded authority as a backstop

Even a poisoned model that slips through cannot exceed the physical envelope: actuator-level limits and the independent SIS bound what any model-driven command can do. A model informs control; it does not get unmediated authority over the actuators. This is the same defense-in-depth that limits a direct control-loop attack.

Design status: dataset provenance, reproducible training, physics tests, and gated promotion run in the twin/training environment. On-plant model deployment is part of FOAK operations; today models act only on simulated plasma.

Content reviewed August 2026 · design-and-simulation stage