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

Feature Store for Plasma and Diagnostic Signals

A shared feature store guarantees that the features a model saw in training are the exact features it sees in production, eliminating training-serving skew.

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.

One definition, two read paths

The most common silent failure in deployed ML is training-serving skew: a feature computed one way offline and a subtly different way online. Kronos eliminates it with a feature store that defines each plasma or diagnostic feature once, then serves it through two backends: a batch path for L0 training and a low-latency path for the online layers. Both execute the same definition.

Features are versioned objects. A change to how normalized plasma current or plug field ratio is computed produces a new feature version; models pin the feature versions they were trained on, so a redefinition never silently changes what a deployed model consumes. Backfills recompute historical values so training sets stay internally consistent.

Example feature definitions

python
@feature(name='breeder.greenwald_fraction', version=3,
         inputs=['ip_MA','a_minor_m','n_e_line_1e20'])
def greenwald_fraction(ip_MA, a_minor_m, n_e_line_1e20):
    n_gw = ip_MA / (math.pi * a_minor_m**2)   # 1e20 m^-3 units
    return n_e_line_1e20 / n_gw
# same code path: batch (L0 train) and online (twin serving)

The store is the boundary object between data lineage and live serving; feature versions become part of the model's lineage. It also gives drift monitors a natural place to attach reference histograms, since every monitored quantity is already a named, versioned feature.

Content reviewed August 2026 · design-and-simulation stage