Spaces:
Runtime error
Runtime error
Commit
·
8034168
1
Parent(s):
f59e95f
prompts
Browse files
app.py
CHANGED
|
@@ -26,10 +26,10 @@ def predict(input_img1,input_img2):
|
|
| 26 |
|
| 27 |
print(input_img1, mask)
|
| 28 |
|
| 29 |
-
result_image = make_inpainting(positive_prompt='
|
| 30 |
image=input_img1,
|
| 31 |
mask_image=mask,
|
| 32 |
-
negative_prompt="
|
| 33 |
)
|
| 34 |
|
| 35 |
return result_image
|
|
|
|
| 26 |
|
| 27 |
print(input_img1, mask)
|
| 28 |
|
| 29 |
+
result_image = make_inpainting(positive_prompt='an empty room',
|
| 30 |
image=input_img1,
|
| 31 |
mask_image=mask,
|
| 32 |
+
negative_prompt="",
|
| 33 |
)
|
| 34 |
|
| 35 |
return result_image
|