Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
tags:
|
4 |
+
- pytorch
|
5 |
+
- diffusers
|
6 |
+
- unconditional-image-generation
|
7 |
+
- diffusion-models-class
|
8 |
+
---
|
9 |
+
|
10 |
+
This model is a diffusion model for unconditional image generation of [Bored Apes](https://opensea.io/collection/boredapeyachtclub).
|
11 |
+
|
12 |
+
## Example
|
13 |
+

|
14 |
+
|
15 |
+
## Usage
|
16 |
+
|
17 |
+
```python
|
18 |
+
from diffusers import DDPMPipeline
|
19 |
+
|
20 |
+
pipeline = DDPMPipeline.from_pretrained('daspartho/bored-ape-diffusion')
|
21 |
+
image = pipeline().images[0]
|
22 |
+
image
|
23 |
+
```
|
24 |
+
|
25 |
+
## Training
|
26 |
+
The model is trained on [this dataset](https://huggingface.co/datasets/daspartho/bored-ape) of 10000 Bored Ape images.
|
27 |
+
|
28 |
+
[Notebook](https://github.com/daspartho/bored-ape-diffusion/blob/main/main.ipynb) for training the model is available on GitHub repo.
|