File size: 798 Bytes
8ef9acf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
---
license: mit
tags:
- pytorch
- diffusers
- unconditional-image-generation
- diffusion-models-class
---
This model is a diffusion model for unconditional image generation of [Bored Apes](https://opensea.io/collection/boredapeyachtclub).
## Example

## Usage
```python
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](https://huggingface.co/datasets/daspartho/bored-ape) of 10000 Bored Ape images.
[Notebook](https://github.com/daspartho/bored-ape-diffusion/blob/main/main.ipynb) for training the model is available on GitHub repo. |