This model is a diffusion model for unconditional image generation of Ukiyo-e images ✍ 🎨. The model was train using fine-tuning with the google/ddpm-celebahq-256 pretrain-model and the dataset:
https://huggingface.co/datasets/huggan/ukiyoe2photo
1from diffusers import DDPMPipeline
2
3pipeline = DDPMPipeline.from_pretrained('alkzar90/sd-class-ukiyo-e-256')
4image = pipeline().images[0]
5image