fix typo
Browse files
app.py
CHANGED
@@ -155,8 +155,8 @@ with gr.Blocks(css=css) as demo:
|
|
155 |
inputs = [input_image]
|
156 |
)
|
157 |
with gr.Column():
|
158 |
-
result = gr.Image(label="Result"
|
159 |
-
heatmaps = gr.Gallery(label="Heatmap")
|
160 |
|
161 |
submit_button.click(
|
162 |
fn = main,
|
|
|
155 |
inputs = [input_image]
|
156 |
)
|
157 |
with gr.Column():
|
158 |
+
result = gr.Image(label="Result")
|
159 |
+
heatmaps = gr.Gallery(label="Heatmap", columns=3)
|
160 |
|
161 |
submit_button.click(
|
162 |
fn = main,
|