Spaces:
Sleeping
Sleeping
add text desc
Browse files
app.py
CHANGED
@@ -185,7 +185,14 @@ with gr.Blocks(css=custom_css) as interface:
|
|
185 |
outputs=sample_display,
|
186 |
)
|
187 |
|
|
|
|
|
|
|
|
|
188 |
|
|
|
|
|
|
|
189 |
with gr.Row(elem_classes="custom-row"):
|
190 |
dff_gallery = gr.Gallery(
|
191 |
label="Deep Feature Factorization",
|
|
|
185 |
outputs=sample_display,
|
186 |
)
|
187 |
|
188 |
+
gr.Markdown("""
|
189 |
+
Concept Discovery involves identifying interpretable high-level features or concepts within a deep learning model's representation. It aims to understand what a model has learned and how these learned features relate to meaningful attributes in the data.
|
190 |
+
|
191 |
+
Deep Feature Factorization (DFF) is a technique that decomposes the deep features learned by a model into disentangled and interpretable components. It typically involves matrix factorization methods applied to activation maps, enabling the identification of semantically meaningful concepts captured by the model.
|
192 |
|
193 |
+
Together, these methods enhance model interpretability and provide insights into the decision-making process of neural networks.
|
194 |
+
|
195 |
+
""")
|
196 |
with gr.Row(elem_classes="custom-row"):
|
197 |
dff_gallery = gr.Gallery(
|
198 |
label="Deep Feature Factorization",
|