gourisankar85 commited on
Commit
487b08a
·
verified ·
1 Parent(s): 8906956

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -43,7 +43,7 @@ def launch_gradio_app(config):
43
  """)
44
 
45
  # Top Section - Inputs and Controls
46
- with gr.Accordion("Model Settings", open=True):
47
  with gr.Row():
48
  with gr.Column():
49
  model_name_input = gr.Dropdown(
@@ -73,7 +73,7 @@ def launch_gradio_app(config):
73
  )
74
  refresh_btn = gr.Button("Refresh", variant="primary", scale= 0)
75
  # Next Section - Action Buttons
76
- with gr.Accordion("Evaluation Actions", open=True):
77
  with gr.Row():
78
  recalculate_noise_btn = gr.Button("Evaluate Noise Robustness")
79
  recalculate_negative_btn = gr.Button("Evaluate Negative Rejection")
@@ -81,7 +81,7 @@ def launch_gradio_app(config):
81
  recalculate_integration_btn = gr.Button("Evaluate Integration Information")
82
 
83
  # Middle Section - Data Tables
84
- with gr.Accordion("Evaluation Results", open=False):
85
  with gr.Row():
86
  with gr.Column():
87
  gr.Markdown("### 📊 Noise Robustness\n**Description:** The experimental result of noise robustness measured by accuracy (%) under different noise ratios.")
 
43
  """)
44
 
45
  # Top Section - Inputs and Controls
46
+ with gr.Accordion("Model Settings", open=False):
47
  with gr.Row():
48
  with gr.Column():
49
  model_name_input = gr.Dropdown(
 
73
  )
74
  refresh_btn = gr.Button("Refresh", variant="primary", scale= 0)
75
  # Next Section - Action Buttons
76
+ with gr.Accordion("Evaluation Actions", open=False):
77
  with gr.Row():
78
  recalculate_noise_btn = gr.Button("Evaluate Noise Robustness")
79
  recalculate_negative_btn = gr.Button("Evaluate Negative Rejection")
 
81
  recalculate_integration_btn = gr.Button("Evaluate Integration Information")
82
 
83
  # Middle Section - Data Tables
84
+ with gr.Accordion("Evaluation Results", open=True):
85
  with gr.Row():
86
  with gr.Column():
87
  gr.Markdown("### 📊 Noise Robustness\n**Description:** The experimental result of noise robustness measured by accuracy (%) under different noise ratios.")