mathpluscode commited on
Commit
0ee1a64
Β·
1 Parent(s): b257e4f

Add emojis

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -731,20 +731,20 @@ with gr.Blocks(
731
  """
732
  # CineMA: A Foundation Model for Cine Cardiac MRI πŸŽ₯πŸ«€
733
 
734
- This demo showcases the capabilities of CineMA in multiple tasks.
735
  For more details, check out our [GitHub](https://github.com/mathpluscode/CineMA).
736
  """
737
  )
738
 
739
  with gr.Tabs() as tabs:
740
- with gr.TabItem("Cine CMR Views"):
741
  cmr_tab()
742
- with gr.TabItem("Masked Autoencoder"):
743
  mae_tab()
744
- with gr.TabItem("Segmentation in SAX View"):
745
  segmentation_sax_tab()
746
- with gr.TabItem("Segmentation in LAX 4C View"):
747
  segmentation_lax_tab()
748
- with gr.TabItem("Landmark Localisation in LAX 2C/4C View"):
749
  landmark_tab()
750
  demo.launch()
 
731
  """
732
  # CineMA: A Foundation Model for Cine Cardiac MRI πŸŽ₯πŸ«€
733
 
734
+ The following demos showcase the capabilities of CineMA in multiple tasks.
735
  For more details, check out our [GitHub](https://github.com/mathpluscode/CineMA).
736
  """
737
  )
738
 
739
  with gr.Tabs() as tabs:
740
+ with gr.TabItem("πŸ–ΌοΈ Cine CMR Views"):
741
  cmr_tab()
742
+ with gr.TabItem("🧩 Masked Autoencoder"):
743
  mae_tab()
744
+ with gr.TabItem("βœ‚οΈ Segmentation in SAX View"):
745
  segmentation_sax_tab()
746
+ with gr.TabItem("βœ‚οΈ Segmentation in LAX 4C View"):
747
  segmentation_lax_tab()
748
+ with gr.TabItem("πŸ“ Landmark Localisation in LAX 2C/4C View"):
749
  landmark_tab()
750
  demo.launch()