michaelapplydesign commited on
Commit
7d261da
·
1 Parent(s): bc435a1
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ def predict(input_img1,input_img2):
37
  mask = get_mask(canvas_mask)
38
 
39
  result_image = make_inpainting(positive_prompt='test1',
40
- image=image_to_byte_array(input_img1),
41
  mask_image=mask,
42
  negative_prompt="xxx",
43
  )
 
37
  mask = get_mask(canvas_mask)
38
 
39
  result_image = make_inpainting(positive_prompt='test1',
40
+ image=Image.fromarray(input_img1),
41
  mask_image=mask,
42
  negative_prompt="xxx",
43
  )