This repository is the official implementation of CFG++: Manifold-constrained Classifier Free Guidance for Diffusion Models, led by
Hyungjin Chung*, Jeongsol Kim*, Geon Yeong Park*, Hyelin Nam*, Jong Chul Ye
Classifier-free guidance (CFG) is a fundamental tool in modern diffusion models for text-guided generation. Although effective, CFG requires high guidance scales, which has notable drawbacks:
We propose a simple fix to this seemingly inherent limitation and propose CFG++ π, which corrects the off-manifold problem of CFG. The following advantages are observed
Experimental results confirm that our method significantly enhances performance in text-to-image generation, DDIM inversion, editing, and solving inverse problems, suggesting a wide-ranging impact and potential applications in various fields that utilize text guidance.
First, create your environment. We recommend using the following comments.
git clone https://github.com/CFGpp-diffusion/CFGpp.git
cd CFGpp
conda env create -f environment.yaml
For reproducibility, using the same package version is necessary since some dependencies lead to significant differences (for instance, diffusers). Nonetheless, improvement induced by CFG++ will be observed regardless the dependency.
Diffusers will automatically download checkpoints for SDv1.5 or SDXL. For the fast sampling, we also support SDXL-lightning. See T2I examples below.
CFG
python -m examples.text_to_img --prompt "a portrait of a dog" --method "ddim" --cfg_guidance 7.5
CFG++ We support DDIM CFG++ (ddim_cfg++) and DPM++ 2M CFG++ (dpm++_2m_cfgpp) at this moment. Please refer to Auto1111 reForge and ComfyUI for the other samplers, e.g. Euler-a CFG++, DPM++ SDE CFG++, etc.
python -m examples.text_to_img --prompt "a portrait of a dog" --method "ddim_cfg++" --cfg_guidance 0.6
CFG++ (SDXL-lightning)
First, download sdxl_lightning_4step_unet.safetensors in ckpt
. Then run the test below.
python -m examples.text_to_img --prompt "stars, water, brilliantly, gorgeous large scale scene, a little girl, in the style of dreamy realism, light gold and amber, blue and pink, brilliantly illuminated in the background." --method "ddim_cfg++_lightning" --model "sdxl_lightning" --cfg_guidance 1 --NFE 4
You can test other NFEs with different safetensors (e.g., 8step_unet). Make sure to modify the --NFE
accordingly.
SDXL-lightning already distilled the score with pre-fixed CFG scale. Therefore, we set --cfg_guidance 1
. That said, the key difference lies in the renoising step.
For the Lightning with original DDIM, run above with --method "ddim_lightning"
CFG
python -m examples.inversion --prompt "a photography of baby fox" --method "ddim_inversion" --cfg_guidance 7.5
CFG++
python -m examples.inversion --prompt "a photography of baby fox" --method "ddim_inversion_cfg++" --cfg_guidance 0.6
[!tip] If you want to use SDXL, add
--model sdxl
.
We provide callback functionality to monitor intermediate samples during the diffusion reverse process. For now, the function could be called only at the end of each timestep, for the readability of scripts.
Currently, we provide two options (default: None).
Note that using callback may take more time due to file save. You can refer utils/callback_util.py for details.
If you find our method useful, please cite as below or leave a star to this repository.
@article{chung2024cfg++,
title={CFG++: Manifold-constrained Classifier Free Guidance for Diffusion Models},
author={Chung, Hyungjin and Kim, Jeongsol and Park, Geon Yeong and Nam, Hyelin and Ye, Jong Chul},
journal={arXiv preprint arXiv:2406.08070},
year={2024}
}
[!note] This work is currently in the preprint stage, and there may be some changes to the code.