Spaces:
Sleeping
Sleeping
Commit
·
f202322
1
Parent(s):
e20cb14
Update app.py
Browse files
app.py
CHANGED
@@ -113,10 +113,13 @@ with gr.Blocks() as app:
|
|
113 |
value=[img[0] for img in sample_images], columns=7, rows=2)
|
114 |
|
115 |
with gr.Column():
|
116 |
-
|
|
|
117 |
|
118 |
with gr.Row():
|
119 |
if_show_grad_cam = gr.Checkbox(value=True, label='Show Class Activation Map (What the model sees)?')
|
|
|
|
|
120 |
top_class_btn = gr.Button("Submit", variant='primary')
|
121 |
tc_clear_btn = gr.ClearButton()
|
122 |
|
|
|
113 |
value=[img[0] for img in sample_images], columns=7, rows=2)
|
114 |
|
115 |
with gr.Column():
|
116 |
+
with gr.Row():
|
117 |
+
top_pred_image = gr.Image(label='Upload Image or Select from the gallery')
|
118 |
|
119 |
with gr.Row():
|
120 |
if_show_grad_cam = gr.Checkbox(value=True, label='Show Class Activation Map (What the model sees)?')
|
121 |
+
|
122 |
+
with gr.Row():
|
123 |
top_class_btn = gr.Button("Submit", variant='primary')
|
124 |
tc_clear_btn = gr.ClearButton()
|
125 |
|