moonlightprolove commited on
Commit
7365d13
·
verified ·
1 Parent(s): 1f563f7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +15 -0
README.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - pytorch
5
+ - diffusers
6
+ - unconditional-image-generation
7
+ - diffusion-models-class
8
+ ---
9
+ ```python
10
+ from diffusers import DDPMPipeline
11
+
12
+ pipeline = DDPMPipeline.from_pretrained('moonlightprolove/first-sd-model-butterflies-32')
13
+ image = pipeline().images[0]
14
+ image
15
+ ```