๐ค AI Summary
Current text-to-image diffusion models rely on static text embeddings derived from a frozen pre-trained text encoder, which remain invariant across all denoising steps. This static conditioning prevents the model from adapting textual guidance to evolving intermediate image states, thereby limiting alignment accuracy in cross-concept generation and text-guided editing. To address this, we propose Diffusion Adaptive Text Embedding (DATE), the first method enabling dynamic, training-free text embedding refinement: at each diffusion timestep, DATE adaptively optimizes the text embedding conditioned on the current noisy image state. Leveraging a differentiable optimization framework, DATE preserves the original modelโs generative capability while significantly improving textโimage consistency in multi-concept synthesis and editing tasks. Experiments demonstrate consistent improvements over fixed-embedding baselines across multiple benchmarks. The implementation is publicly available.
๐ Abstract
Text-to-image diffusion models rely on text embeddings from a pre-trained text encoder, but these embeddings remain fixed across all diffusion timesteps, limiting their adaptability to the generative process. We propose Diffusion Adaptive Text Embedding (DATE), which dynamically updates text embeddings at each diffusion timestep based on intermediate perturbed data. We formulate an optimization problem and derive an update rule that refines the text embeddings at each sampling step to improve alignment and preference between the mean predicted image and the text. This allows DATE to dynamically adapts the text conditions to the reverse-diffused images throughout diffusion sampling without requiring additional model training. Through theoretical analysis and empirical results, we show that DATE maintains the generative capability of the model while providing superior text-image alignment over fixed text embeddings across various tasks, including multi-concept generation and text-guided image editing. Our code is available at https://github.com/aailab-kaist/DATE.