Apple researchers have published a new method called probe guidance that steers flow matching models using the frozen internal states of an existing diffusion model. Detailed in a paper from September 2026, the approach removes the extra forward pass that traditional autoguidance needs at inference time while keeping the weak and strong models dynamically aligned.

The researchers — Rohit Dilip, Tianrong Chen, Yuyang Wang, David Van Valen, Josh Susskind, and Miguel Angel Bautista — applied probe guidance to continuous diffusion language models and report a new state of the art on unconditional generation benchmarks. On a 1.7B parameter diffusion language model, the technique also improved multiple-choice question answering.

Standard autoguidance uses a strong model to guide a weaker checkpoint during sampling, but it requires an additional forward pass at inference time. Probe guidance instead draws its guidance signal from the frozen internal representations of a pre-trained diffusion model. Reusing those frozen states avoids the cost of running two models at once while preserving the dynamical alignment between the guiding and guided models.

The authors say their probes also help explain why autoguidance works — a mechanism they describe as poorly understood. Their experiments show autoguidance is effective only when the weak model comes from a low-entropy region of training, which suggests not all checkpoints make equally suitable guidance targets.

Diffusion language models have drawn attention as a parallelizable alternative to autoregressive models, which generate tokens sequentially and hit latency bottlenecks on long sequences. Prior Apple work explored few-step diffusion language models (FS-DFM) and adapting diffusion models from autoregressive checkpoints. Probe guidance adds another lever for improving sample quality without raising inference cost.

Confirmed

Per the Apple research paper, probe guidance steers flow matching models using frozen internal states of a pre-trained diffusion model, avoiding the extra inference-time forward pass required by standard autoguidance. The authors report a new state of the art on unconditional generation benchmarks among diffusion language models, and the 1.7B parameter model showed consistent gains on multiple-choice question answering. Their experiments also indicate autoguidance is effective only when the weak model comes from a low-entropy region of training.

Unknown

The results come from the vendor's own paper and have not been independently verified. It remains unclear how probe guidance performs at larger scales, on broader benchmark suites, or in production settings, and whether the low-entropy constraint on guidance checkpoints generalizes across model families.

Our take

Probe guidance addresses a real inference-cost pain point in diffusion language models, but the more interesting contribution may be the mechanistic insight: autoguidance only works when the weak model sits in a low-entropy training region. That constraint limits guidance methods more than the compute savings alone suggest. Independent replication at larger scales and on more benchmarks will decide whether this becomes a standard part of diffusion language model pipelines.

Sources