Pranesh64 commited on
Commit
f99a0e8
·
verified ·
1 Parent(s): cd146d6

Removed depricated one

Browse files
Files changed (1) hide show
  1. app.py +6 -2
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(label="Activation previews", elem_id="act_gallery").style(grid=[2], height="auto")
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