lewtun HF staff commited on
Commit
deb171f
1 Parent(s): e14b599

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -16,7 +16,7 @@ This model is a diffusion model for unconditional image generation of 🦋.
16
  ```python
17
  from diffusers import DDPMPipeline
18
 
19
- image_pipe = DDPMPipeline.from_pretrained(lewtun/sd-class-butterflies-32-test1)
20
- pipeline_output = image_pipe()
21
- pipeline_output.images[0]
22
  ```
 
16
  ```python
17
  from diffusers import DDPMPipeline
18
 
19
+ pipeline = DDPMPipeline.from_pretrained(lewtun/sd-class-butterflies-32-test1)
20
+ image = pipeline().images[0]
21
+ image
22
  ```