Spaces:
Running
on
Zero
Running
on
Zero
Commit
Β·
515dbe1
1
Parent(s):
f468cfb
Select LAX 4C by default
Browse files
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()
|