FelixChao commited on
Commit
3a177ba
1 Parent(s): 48d28e4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - pytorch
5
+ - diffusers
6
+ - unconditional-image-generation
7
+ - diffusion-models-class
8
+ ---
9
+
10
+ # Model Card for Unit 1 of the [Diffusion Models Class 🧨](https://github.com/huggingface/diffusion-models-class)
11
+
12
+
13
+ ## Usage
14
+
15
+ ```python
16
+ from diffusers import DDPMPipeline
17
+
18
+ pipeline = DDPMPipeline.from_pretrained('FelixChao/ddpm-pokemon-64')
19
+ image = pipeline().images[0]
20
+ image
21
+ ```