Spaces:
Sleeping
Sleeping
update: headers
Browse files
app.py
CHANGED
@@ -323,6 +323,7 @@ with gr.Blocks(css=custom_css, theme="default") as demo:
|
|
323 |
|
324 |
# Results and visualization
|
325 |
with gr.Row(elem_classes="custom-row"):
|
|
|
326 |
result_gallery = gr.Gallery(
|
327 |
label="Results",
|
328 |
rows=1,
|
@@ -330,6 +331,7 @@ with gr.Blocks(css=custom_css, theme="default") as demo:
|
|
330 |
columns=1 ,
|
331 |
object_fit="contain"
|
332 |
)
|
|
|
333 |
netron_display = gr.HTML(label="Netron Visualization")
|
334 |
|
335 |
# Update sample image
|
@@ -338,10 +340,10 @@ with gr.Blocks(css=custom_css, theme="default") as demo:
|
|
338 |
inputs=sample_selection,
|
339 |
outputs=sample_display,
|
340 |
)
|
341 |
-
|
342 |
with gr.Row(elem_classes="custom-row"):
|
343 |
dff_gallery = gr.Gallery(
|
344 |
-
label="
|
345 |
rows=2, # 8 rows
|
346 |
columns=4, # 1 image per row
|
347 |
object_fit="fit",
|
|
|
323 |
|
324 |
# Results and visualization
|
325 |
with gr.Row(elem_classes="custom-row"):
|
326 |
+
gr.Markdown(""" ##Detections & Interpretability Map """)
|
327 |
result_gallery = gr.Gallery(
|
328 |
label="Results",
|
329 |
rows=1,
|
|
|
331 |
columns=1 ,
|
332 |
object_fit="contain"
|
333 |
)
|
334 |
+
gr.Markdown(""" ## Model Architecture""")
|
335 |
netron_display = gr.HTML(label="Netron Visualization")
|
336 |
|
337 |
# Update sample image
|
|
|
340 |
inputs=sample_selection,
|
341 |
outputs=sample_display,
|
342 |
)
|
343 |
+
gr.Markdown(""" ## Feature Factorization & discovered concepts. """)
|
344 |
with gr.Row(elem_classes="custom-row"):
|
345 |
dff_gallery = gr.Gallery(
|
346 |
+
label="Feature Factorization & discovered concept",
|
347 |
rows=2, # 8 rows
|
348 |
columns=4, # 1 image per row
|
349 |
object_fit="fit",
|