daspartho commited on
Commit
8ef9acf
1 Parent(s): f356186

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -0
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
+ ![example.png](https://s3.amazonaws.com/moonup/production/uploads/1670089095011-630283a6b002e9a4a216f3e4.png)
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.