mrm8488 commited on
Commit
65bd831
1 Parent(s): 048b247

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -1
README.md CHANGED
@@ -22,7 +22,17 @@ on the `huggan/selfie2anime` dataset.
22
  #### How to use
23
 
24
  ```python
25
- # TODO: add an example code snippet for running this diffusion pipeline
 
 
 
 
 
 
 
 
 
 
26
  ```
27
 
28
  #### Limitations and bias
 
22
  #### How to use
23
 
24
  ```python
25
+ from diffusers import DDPMPipeline
26
+
27
+ model_id = "mrm8488/ddpm-ema-anime-v2-128"
28
+
29
+ # load model and scheduler
30
+ pipeline = DDPMPipeline.from_pretrained(model_id)
31
+
32
+ # run pipeline in inference
33
+ image = pipeline()["sample"]
34
+
35
+ image[0].save("anime_face_128.png")
36
  ```
37
 
38
  #### Limitations and bias