IrohXu commited on
Commit
857660e
1 Parent(s): 5711f36

update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -71,15 +71,15 @@ mask = preprocess_mask(
71
  image = pipe(
72
  prompt=prompt,
73
  image=source,
74
- mask_image=1-mask,
75
  height=1024,
76
  width=1024,
77
- num_inference_steps=28,
78
  guidance_scale=7.0,
79
  strength=0.6,
80
  ).images[0]
81
 
82
- image.save("output.png")
83
  ```
84
 
85
 
 
71
  image = pipe(
72
  prompt=prompt,
73
  image=source,
74
+ mask_image=mask,
75
  height=1024,
76
  width=1024,
77
+ num_inference_steps=50,
78
  guidance_scale=7.0,
79
  strength=0.6,
80
  ).images[0]
81
 
82
+ image.save("overture-creations-5sI6fQgYIuo_output.jpg")
83
  ```
84
 
85