fzarnecki commited on
Commit
338aeb2
·
1 Parent(s): 319b0aa

Display fix

Browse files
Files changed (1) hide show
  1. app.py +11 -9
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.Row():
676
- split_checkbox = gr.Checkbox(
677
- label="Split into 2 segments",
678
- value=True,
679
- info="Enable to compare two models side by side"
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):