Spaces:
Sleeping
Sleeping
Removed depricated one
Browse files
app.py
CHANGED
|
@@ -496,8 +496,12 @@ with gr.Blocks() as demo:
|
|
| 496 |
act_btn = gr.Button("Compute activations")
|
| 497 |
act_msg = gr.Markdown()
|
| 498 |
with gr.Column(scale=2):
|
| 499 |
-
act_preview = gr.Gallery(
|
| 500 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 501 |
# state store for model object & nx graph
|
| 502 |
state = gr.State()
|
| 503 |
|
|
|
|
| 496 |
act_btn = gr.Button("Compute activations")
|
| 497 |
act_msg = gr.Markdown()
|
| 498 |
with gr.Column(scale=2):
|
| 499 |
+
act_preview = gr.Gallery(
|
| 500 |
+
label="Activation previews",
|
| 501 |
+
elem_id="act_gallery",
|
| 502 |
+
columns=2,
|
| 503 |
+
height="auto"
|
| 504 |
+
)
|
| 505 |
# state store for model object & nx graph
|
| 506 |
state = gr.State()
|
| 507 |
|