blanchon commited on
Commit
2e85b44
·
1 Parent(s): e4abc7b

Try to fix cuda error

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -128,7 +128,7 @@ def infer(
128
  results_images = pipe(
129
  prompt=[prompt] * batch_size,
130
  image=[image] * batch_size,
131
- mask_image=[mask] * batch_size,
132
  height=FIXED_DIMENSION,
133
  width=FIXED_DIMENSION * 2,
134
  guidance_scale=guidance_scale,
 
128
  results_images = pipe(
129
  prompt=[prompt] * batch_size,
130
  image=[image] * batch_size,
131
+ mask_image=mask,
132
  height=FIXED_DIMENSION,
133
  width=FIXED_DIMENSION * 2,
134
  guidance_scale=guidance_scale,