DiMSUM: Diffusion Mamba -- A Scalable and Unified Spatial-Frequency Method for Image Generation
Paper
β’
2411.04168
β’
Published
β’
4
Our model is a hydrid Mamba-Transformer architecture for class-to-image generation. This method is trained with flow matching objective. The model has 460M parameters and achieves an FID score of 2.11 on ImageNet-1K 256 dataset. Our codebase is hosted at https://github.com/VinAIResearch/DiMSUM.git.
To use DiMSUM pre trained model:
from huggingface_hub import hf_hub_download
# Assume model is already initiated
ckpt_path = hf_hub_download("haopt/dimsum-L2-imagenet256")
state_dict = torch.load(ckpt_path)
model.load_state_dict(state_dict)
model.eval()
Please CITE our paper and give us a :star: whenever this repository is used to help produce published results or incorporated into other software.
@inproceedings{phung2024dimsum,
ββ title={DiMSUM: Diffusion Mamba - A Scalable and Unified Spatial-Frequency Method for Image Generation},
ββ author={Phung, Hao and Dao, Quan and Dao, Trung and Phan, Hoang and Metaxas, Dimitris and Tran, Anh},
ββ booktitle={The Thirty-eighth Annual Conference on Neural Information Processing Systems},
ββ year= {2024},
}