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 › L2 · Data Fabric
L2 · Data Fabric

Mutual-Information Sensor Selection

Mutual information ranks how much each diagnostic tells the fabric about the plasma state, guiding redundancy, fusion weights, and constellation design.

THE STACK · click to jumpL7Ecosystem & StrategyL6Experience & VisualizationL5Applications & CopilotsL4OrchestrationL3Twin Modeling & AIL2Data FabricL1Control PlaneL0Foundation▲tlmctl▼L2 · DATA FABRICTelemetry, validation, and the machine's memory.160+ Port Telemetrysensor bus2Signal Validationrange & sanity3Feature Engineeringderived signals4Time-Series Archivefull history5Feature Storetraining-ready6Vector DBembeddings for RAGMACHINE TIEIngests from diagnostics; serves the twin (L3) and copilots (L5).KRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORDATA FABRICSHEET 04REV. 2026-08L2 · AI-NATIVE STACK
L2 · Data Fabric — its place in the stack (left, click any layer) and its internal components (right). Telemetry rises; control descends.

How much does a sensor tell you

Mutual information measures how much knowing a diagnostic reduces uncertainty about the quantity you care about — the equilibrium, the pressure map, the plug density. The fabric uses it to rank diagnostics, set fusion weights, size redundancy, and understand which parts of the constellation carry the state estimate.

The quantity

For a target state variable X and a diagnostic Y, the mutual information I(X;Y) = H(X) - H(X|Y) is the reduction in entropy of X from observing Y. A diagnostic with high I(X;Y) for a given target is worth its place; one whose information is already supplied by others is redundant — useful for cross-checking and imputation, but not for new content.

python
import math
def mutual_information(p_xy, p_x, p_y):
    mi = 0.0
    for (x,y),pxy in p_xy.items():
        if pxy>0:
            mi += pxy*math.log2(pxy/(p_x[x]*p_y[y]))
    return mi   # bits that Y reveals about X

Uses across the fabric

Per machine

The rankings differ by machine and target: magnetics carry high mutual information about the breeder's equilibrium; density and potential diagnostics carry it about the burner's plug and ambipolar state. The method is shared, the answers machine-specific. It is an analysis discipline underpinning the fabric's design for machines not yet built.

Content reviewed August 2026 · design-and-simulation stage