Upload app.py
Browse files
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=
|
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=
|
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=
|
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.")
|