Skip to content

daspartho/bored-ape-diffusion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Bored Ape Diffusion

Diffusion model for unconditional image generation of Bored Apes

The trained Model is uploaded on HuggingFace Hub.

Example

example

Usage

from diffusers import DDPMPipeline

pipeline = DDPMPipeline.from_pretrained('daspartho/bored-ape-diffusion')
image = pipeline().images[0]
image

Training

The model is trained on this dataset of 10000 Bored Ape images I've uploaded on HuggingFace Hub.

Notebook for training the model is available here.

Acknowledgement

Special thanks to the awesome Diffusion Models class by Jonathan Whitaker and the HuggingFace team.