Spaces:
Running
Running
Display fix
Browse files
app.py
CHANGED
|
@@ -668,16 +668,18 @@ with gr.Blocks(theme=theme, css=custom_css, js=js_func) as demo:
|
|
| 668 |
|
| 669 |
gr.Markdown('<hr>')
|
| 670 |
gr.Markdown('<br>')
|
| 671 |
-
gr.Markdown("## Model Comparison: Faithfulness to Ideal Answer with PELT Changepoints")
|
| 672 |
-
gr.Markdown(MODEL_COMPARISON_INTRO)
|
| 673 |
|
| 674 |
-
# Model comparison section
|
| 675 |
-
with gr.
|
| 676 |
-
|
| 677 |
-
|
| 678 |
-
|
| 679 |
-
|
| 680 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 681 |
|
| 682 |
with gr.Row():
|
| 683 |
with gr.Column(scale=1):
|
|
|
|
| 668 |
|
| 669 |
gr.Markdown('<hr>')
|
| 670 |
gr.Markdown('<br>')
|
|
|
|
|
|
|
| 671 |
|
| 672 |
+
# Model comparison section - wrap everything in a container to prevent duplication
|
| 673 |
+
with gr.Column():
|
| 674 |
+
gr.Markdown("## Model Comparison: Faithfulness to Ideal Answer with PELT Changepoints")
|
| 675 |
+
gr.Markdown(MODEL_COMPARISON_INTRO)
|
| 676 |
+
|
| 677 |
+
with gr.Row():
|
| 678 |
+
split_checkbox = gr.Checkbox(
|
| 679 |
+
label="Split into 2 segments",
|
| 680 |
+
value=False,
|
| 681 |
+
info="Enable to compare two models side by side"
|
| 682 |
+
)
|
| 683 |
|
| 684 |
with gr.Row():
|
| 685 |
with gr.Column(scale=1):
|