Continuous-time Consistency Models (CMs) promise efficient few-step generation but face significant challenges with training instability. We argue this instability stems from a fundamental conflict: Training the network exclusively on a shortcut objective leads to the catastrophic forgetting of the instantaneous velocity field that defines the flow. Our solution is to explicitly anchor the model in the underlying flow, ensuring high trajectory fidelity during training. We introduce the Flow-Anchored Consistency Model (FACM), where a Flow Matching (FM) task serves as a dynamic anchor for the primary CM shortcut objective. Key to this Flow-Anchoring approach is a novel expanded time interval strategy that unifies optimization for a single model while decoupling the two tasks to ensure stable, architecturally-agnostic training. By distilling a pre-trained LightningDiT model, our method achieves a state-of-the-art FID of 1.32 with two steps (NFE= 2) and 1.70 with just one step (NFE= 1) on ImageNet 256256. To address the challenge of scalability, we develop a memory-efficient Chain-JVP that resolves key incompatibilities with FSDP. This method allows us to scale FACM training on a 14B parameter model (Wan 2.2), accelerating its Text-to-Image inference from 240 to 2-8 steps. Our code and pretrained models: https://github. com/ali-vilab/FACM.
本文针对连续时间一致性模型(CM)训练不稳定的问题,指出其根源在于捷径目标导致瞬时速度场被灾难性遗忘。为此提出流锚定一致性模型(FACM),以流匹配任务作为动态锚点,并设计扩展时间间隔策略统一优化、解耦两个任务,实现稳定且架构无关的训练。在ImageNet 256×256上,蒸馏LightningDiT模型取得NFE=2时FID 1.32、NFE=1时FID 1.70的SOTA结果;同时提出内存高效的Chain-JVP,将FACM扩展到140亿参数的Wan 2.2模型,加速文本到图像推理至2-8步。