dn-gh commited on
Commit
cbe700b
·
1 Parent(s): ef36e39

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -22,12 +22,12 @@ on the `imagefolder` dataset.
22
  #### How to use
23
 
24
  ```python
25
- from diffusers import DDPMPipeline, DDIMPipeline, PNDMPipeline
26
 
27
  model_id = "dn-gh/ddpm-apes-128"
28
 
29
  # load model and scheduler
30
- ddpm = DDPMPipeline.from_pretrained(model_id) # you can replace DDPMPipeline with DDIMPipeline or PNDMPipeline for faster inference
31
 
32
  # run pipeline in inference
33
  image = ddpm().images[0]
 
22
  #### How to use
23
 
24
  ```python
25
+ from diffusers import DDPMPipeline
26
 
27
  model_id = "dn-gh/ddpm-apes-128"
28
 
29
  # load model and scheduler
30
+ ddpm = DDPMPipeline.from_pretrained(model_id)
31
 
32
  # run pipeline in inference
33
  image = ddpm().images[0]