Seoul National University, Seoul, Korea
* Equal contribution
† Corresponding author
ICCV 2025
LDMAE Generation Samples
Abstract
This project implements Latent Diffusion Models with Masked AutoEncoders (LDMAE), presented at ICCV 2025. We analyze the role of autoencoders in LDMs and identify three key properties: latent smoothness, perceptual compression quality, and reconstruction quality. We demonstrate that existing autoencoders fail to simultaneously satisfy all three properties, and propose Variational Masked AutoEncoders (VMAEs), taking advantage of the hierarchical features maintained by Masked AutoEncoders. Through comprehensive experiments, we demonstrate significantly enhanced image generation quality and computational efficiency.
The project includes various configuration files for different model variants and datasets:
ImageNet configs: Located in LDMAE/configs/imagenet/
CelebA-HQ configs: Located in LDMAE/configs/celeba_hq/
Each configuration file specifies:
Model architecture parameters
Training hyperparameters
Dataset paths
Autoencoder settings
Notes
Ensure all dataset paths are correctly configured before training
The autoencoder must be trained first before feature extraction
Feature extraction is required before training the diffusion model
The codebase is based on LightningDiT with minimal modifications
Citation
If you use this code in your research, please cite our paper:
bibtex
1@InProceedings{Lee_2025_ICCV,
2 author = {Lee, Junho and Shin, Jeongwoo and Choi, Hyungwook and Lee, Joonseok},
3 title = {Latent Diffusion Models with Masked AutoEncoders},
4 booktitle = {Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV)},
5 month = {October},
6 year = {2025},
7 pages = {17422-17431}
8}
bibtex
1@article{lee2025latent,
2 title={Latent Diffusion Models with Masked AutoEncoders},
3 author={Lee, Junho and Shin, Jeongwoo and Choi, Hyungwook and Lee, Joonseok},
4 journal={arXiv preprint arXiv:2507.09984},
5 year={2025}
6}