Spaces:
Build error
Build error
Update tasks/ref_in_gpu3.py
Browse files- 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
|
101 |
else:
|
102 |
torch.cuda.empty_cache()
|
103 |
-
return
|
|
|
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)
|