jw2yang commited on
Commit
d267638
·
1 Parent(s): 31a600f

Update tasks/ref_in_gpu3.py

Browse files
Files changed (1) hide show
  1. tasks/ref_in_gpu3.py +2 -2
tasks/ref_in_gpu3.py CHANGED
@@ -97,7 +97,7 @@ def referring_inpainting_gpt3(model, image, instruction, *args, **kwargs):
97
  width = image_ori.size[0]; height = image_ori.size[1]
98
  images_inpainting = pipe(prompt = inp_text.strip(), image=image_and_mask['image'], mask_image=image_and_mask['mask'], height=height, width=width).images
99
  torch.cuda.empty_cache()
100
- return Image.fromarray(res), resp_text, images_inpainting[0]
101
  else:
102
  torch.cuda.empty_cache()
103
- return image_ori, resp_text, Image.fromarray(res)
 
97
  width = image_ori.size[0]; height = image_ori.size[1]
98
  images_inpainting = pipe(prompt = inp_text.strip(), image=image_and_mask['image'], mask_image=image_and_mask['mask'], height=height, width=width).images
99
  torch.cuda.empty_cache()
100
+ return images_inpainting[0]
101
  else:
102
  torch.cuda.empty_cache()
103
+ return Image.fromarray(res)