svjack commited on
Commit
e58e4b0
1 Parent(s): 1624885

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -67,7 +67,7 @@ pipe.safety_checker = lambda images, clip_input: (images, False)
67
  imgs = pipe("鉢植えの植物を頭に載せた漫画のキャラクター",
68
  num_inference_steps = 100
69
  )
70
- imgs.images[0]
71
 
72
  image.save("output.png")
73
  ```
 
67
  imgs = pipe("鉢植えの植物を頭に載せた漫画のキャラクター",
68
  num_inference_steps = 100
69
  )
70
+ image = imgs.images[0]
71
 
72
  image.save("output.png")
73
  ```