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

Preference-Based RL for Control Policies

Human preference feedback shapes control-policy behavior where a scalar reward is hard to specify, but only in simulation and only behind the full validation and canary chain.

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.

When reward is easier to judge than to write

Some control objectives are hard to encode as a clean scalar: a good breeder shape trajectory or a graceful burner ramp is partly a matter of expert judgment about smoothness, margin, and robustness. Preference-based RL lets experts compare pairs of simulated trajectories and rank them; a reward model learns the implicit objective; and a policy is optimized against it. This complements, it does not replace, the physics-based cost terms.

This is used with extreme caution. Human-preference-shaped control policies are trained and evaluated only in simulation and on the digital twin. They inherit the entire deployment chain — validation gates, shadow, canary, rollback — before any authority, and the physics safety envelope always dominates the learned reward. A learned preference can shape behavior inside the envelope; it can never widen it.

Guardrails specific to control RLHF

python
# Preference-based reward, constrained
r_pref = reward_model(traj)                     # learned from rankings
r_safe = -LARGE if envelope_violated(traj) else 0
r_unc  = -lambda_u * reward_model.epistemic_std(traj)  # anti-hacking
return r_pref + r_safe + r_unc     # safety term dominates by design

For the burner especially, the honest gates cap what any policy can be trained to claim: a policy cannot be rewarded into operating a plug regime that is 166 to 830x beyond any existing device, because such trajectories cannot be validated and are barred by the honest-gate checks. RLHF here is a tool for polishing behavior inside proven bounds, not for reaching past them.

Content reviewed August 2026 · design-and-simulation stage