Spaces:
Sleeping
Sleeping
debug: invalid syntax
Browse files
app.py
CHANGED
@@ -189,11 +189,13 @@ with gr.Blocks(css=custom_css) as interface:
|
|
189 |
)
|
190 |
|
191 |
|
192 |
-
|
|
|
193 |
Concept Discovery is the process of uncovering the hidden, high-level features that a deep learning model has learned. It provides a way to understand the essence of its internal representations, akin to peering into the mind of the model and revealing the meaningful patterns it detects in the data.
|
194 |
<br><br>
|
195 |
Deep Feature Factorization (DFF) serves as a tool for breaking down these complex features into simpler, more interpretable components. By applying matrix factorization on activation maps, it untangles the intricate web of learned representations, making it easier to comprehend what the model is truly focusing on. Together, these methods bring us closer to understanding the underlying logic of neural networks, shedding light on the often enigmatic decisions they make.
|
196 |
</span>
|
|
|
197 |
|
198 |
with gr.Row(elem_classes="custom-row"):
|
199 |
dff_gallery = gr.Gallery(
|
|
|
189 |
)
|
190 |
|
191 |
|
192 |
+
gr.HTML("""
|
193 |
+
<span style="font-family: 'Papyrus', cursive; font-size: 14px;">
|
194 |
Concept Discovery is the process of uncovering the hidden, high-level features that a deep learning model has learned. It provides a way to understand the essence of its internal representations, akin to peering into the mind of the model and revealing the meaningful patterns it detects in the data.
|
195 |
<br><br>
|
196 |
Deep Feature Factorization (DFF) serves as a tool for breaking down these complex features into simpler, more interpretable components. By applying matrix factorization on activation maps, it untangles the intricate web of learned representations, making it easier to comprehend what the model is truly focusing on. Together, these methods bring us closer to understanding the underlying logic of neural networks, shedding light on the often enigmatic decisions they make.
|
197 |
</span>
|
198 |
+
""")
|
199 |
|
200 |
with gr.Row(elem_classes="custom-row"):
|
201 |
dff_gallery = gr.Gallery(
|