mathpluscode commited on
Commit
515dbe1
Β·
1 Parent(s): f468cfb

Select LAX 4C by default

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -752,15 +752,15 @@ with gr.Blocks(
752
  """
753
  )
754
 
755
- with gr.Tabs() as tabs:
756
- with gr.TabItem("πŸ–ΌοΈ Cine CMR Views"):
757
  cmr_tab()
758
- with gr.TabItem("🧩 Masked Autoencoder"):
759
  mae_tab()
760
- with gr.TabItem("βœ‚οΈ Segmentation in SAX View"):
761
  segmentation_sax_tab()
762
- with gr.TabItem("βœ‚οΈ Segmentation in LAX 4C View"):
763
  segmentation_lax_tab()
764
- with gr.TabItem("πŸ“ Landmark Localisation in LAX 2C/4C View"):
765
  landmark_tab()
766
  demo.launch()
 
752
  """
753
  )
754
 
755
+ with gr.Tabs(selected="lax_seg") as tabs:
756
+ with gr.TabItem("πŸ–ΌοΈ Cine CMR Views", id="cmr"):
757
  cmr_tab()
758
+ with gr.TabItem("🧩 Masked Autoencoder", id="mae"):
759
  mae_tab()
760
+ with gr.TabItem("βœ‚οΈ Segmentation in SAX View", id="sax_seg"):
761
  segmentation_sax_tab()
762
+ with gr.TabItem("βœ‚οΈ Segmentation in LAX 4C View", id="lax_seg"):
763
  segmentation_lax_tab()
764
+ with gr.TabItem("πŸ“ Landmark Localisation in LAX 2C/4C View", id="landmark"):
765
  landmark_tab()
766
  demo.launch()