Pretraining an autoregressive Transformer takes trillions of FLOPs. We want to know how much of that training can be carried over when we change both the model's architecture and the way it generates text.
Dream (Ye et al., 2025) and DiffuLLaMA (Gong et al., 2025) adapt pretrained autoregressive Transformers into bidirectional diffusion LMs, but keep the Transformer backbone. RADLADS (Goldstein et al., 2025) distills attention into RAD-RWKV7 recurrence, but preserves next-token behavior.
DreamingGoose changes both the architecture and the generation objective, one stage at a time. It distills an autoregressive Transformer teacher into DualGoose, a bidirectional recurrent diffusion model with no attention.
We tested models at four sizes, from 135M to 8B parameters, using rented machines with one or two GPUs.
The conversion runs span 135M through 8B parameters on rented hardware. At roughly 30M distillation tokens, the larger models recover substantial agreement with their autoregressive teachers.
We still need to establish which capabilities survive the switch to diffusion. We're rebuilding that evaluation before publishing the paper.
The target architecture is described in DualGoose →