krasnova commited on
Commit
7816ba3
1 Parent(s): dde0b4e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - pytorch
5
+ - diffusers
6
+ - unconditional-image-generation
7
+ ---
8
+
9
+ ## Usage
10
+
11
+ ```python
12
+ from diffusers import DDPMPipeline
13
+
14
+ pipeline = DDPMPipeline.from_pretrained('krasnova/ddim_afhq_64')
15
+ image = pipeline().images[0]
16
+ image
17
+ ```