lewtun HF staff commited on
Commit
6738e87
1 Parent(s): 4781d05

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +11 -1
README.md CHANGED
@@ -7,4 +7,14 @@ tags:
7
  - diffusion-models-class
8
  ---
9
 
10
- # Model Card for Unit 1 of the Diffusion Models Class
 
 
 
 
 
 
 
 
 
 
 
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
+ This model is a diffusion model for unconditional image generation of 🦋.
13
+
14
+ ## Usage
15
+
16
+ from diffusers import DDPMPipeline
17
+
18
+ image_pipe = DDPMPipeline.from_pretrained(lewtun/sd-class-butterflies-32-test1)
19
+ pipeline_output = image_pipe()
20
+ pipeline_output.images[0]