Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 1009 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 1009 Bytes

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.