This model is a diffusion model for unconditional image generation of cartoon faces using the
cartoon10k dataset. The code
for this model can be found on
github.
The pipeline for this model was created following
Diffusion Models Class 🧨
1from diffusers import DDPMPipeline
2
3pipeline = DDPMPipeline.from_pretrained('Mau124/diffusion-model-cartoon10k-96')
4image = pipeline().images[0]
5image