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

Experiment Tracking and Metadata

Every training run, sweep, and evaluation is logged with its config, metrics, and artifacts, so the history of how a model came to be is fully queryable.

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.

The lab notebook for models

Model development generates thousands of runs; without systematic tracking, the knowledge of what was tried and what worked evaporates. Kronos logs every run — training, HPO trial, evaluation, backtest — with its configuration, metrics, environment, and output artifacts into a central tracking store. This is the queryable lab notebook behind every model in the registry.

Tracking is distinct from the registry: the registry holds artifacts eligible to act on a machine; tracking holds the full experimental history, including the failures. A promoted model links back to the exact tracked run that produced it, and that run links to its HPO campaign, its dataset, and its code. The chain is unbroken from a deployed controller to the first exploratory experiment.

Tracked per run

python
with tracker.run(project='breeder/equilibrium') as run:
    run.log_params(cfg); run.log_data(dataset.id, features='v7')
    for epoch in range(E):
        run.log_metrics(epoch, train_loss, val_rmse, val_ece)
    run.log_artifact(model, hash=sha256(model))
    run.link(parent_campaign='hpo:2029Q3-eqsurr')

Tracking retains failed and abandoned runs deliberately, not only successes, because the record of what did not work is what stops a team from re-running dead ends and is often the fastest route to diagnosing a new failure. Runs are immutable once closed, so the history cannot be rewritten after the fact.

Experiment tracking is the substrate for meta-analysis: which architectures generalize, which features carry weight, where models systematically fail. It connects to model lineage upstream and to model cards downstream, since a model card is largely a human-readable summary of the tracked run that produced the model.

Content reviewed August 2026 · design-and-simulation stage