Spaces:
Sleeping
Sleeping
Suchinthana
commited on
Commit
·
f3675a4
1
Parent(s):
3647dae
Adding missed mask output
Browse files
app.py
CHANGED
@@ -197,7 +197,7 @@ with gr.Blocks() as demo:
|
|
197 |
satellite_output = gr.Image(label="Generated Satellite Image")
|
198 |
mask_output = gr.Image(label="Mask")
|
199 |
image_prompt = gr.Textbox(label="Image Prompt Used")
|
200 |
-
submit_btn.click(handle_query, inputs=[query_input], outputs=[map_output, satellite_output, image_prompt])
|
201 |
|
202 |
if __name__ == "__main__":
|
203 |
demo.launch()
|
|
|
197 |
satellite_output = gr.Image(label="Generated Satellite Image")
|
198 |
mask_output = gr.Image(label="Mask")
|
199 |
image_prompt = gr.Textbox(label="Image Prompt Used")
|
200 |
+
submit_btn.click(handle_query, inputs=[query_input], outputs=[map_output, satellite_output, mask_output, image_prompt])
|
201 |
|
202 |
if __name__ == "__main__":
|
203 |
demo.launch()
|