skarugu commited on
Commit
08c400d
Β·
verified Β·
1 Parent(s): f60f7ab

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +4 -4
src/streamlit_app.py CHANGED
@@ -1,6 +1,6 @@
1
  # src/streamlit_app.py
2
  """
3
- MyoSight β€” Myotube & Nuclei Analyser
4
  ========================================
5
  Drop-in replacement for streamlit_app.py on Hugging Face Spaces.
6
 
@@ -1139,7 +1139,7 @@ def load_model(device: str):
1139
  # PAGE CONFIG + CSS
1140
  # ─────────────────────────────────────────────────────────────────────────────
1141
 
1142
- st.set_page_config(page_title="MyoSight β€” Myotube Analyser",
1143
  layout="wide", page_icon="πŸ”¬")
1144
 
1145
  st.markdown("""
@@ -1154,7 +1154,7 @@ h1,h2,h3,h4 { color:#90caf9; }
1154
  </style>
1155
  """, unsafe_allow_html=True)
1156
 
1157
- st.title("πŸ”¬ MyoSight β€” Myotube & Nuclei Analyser")
1158
  device = "cuda" if torch.cuda.is_available() else "cpu"
1159
 
1160
  # ─────────────────────────────────────────────────────────────────────────────
@@ -1723,7 +1723,7 @@ if not private_mode and names:
1723
  st.caption(
1724
  "Once you've tuned the sidebar parameters to get the best results for "
1725
  "this image, click below to submit both the image and your optimized "
1726
- "parameters as a training contribution. This helps MyoSight learn "
1727
  "better settings for similar images."
1728
  )
1729
 
 
1
  # src/streamlit_app.py
2
  """
3
+ MyoSeg β€” Myotube & Nuclei Analyser
4
  ========================================
5
  Drop-in replacement for streamlit_app.py on Hugging Face Spaces.
6
 
 
1139
  # PAGE CONFIG + CSS
1140
  # ─────────────────────────────────────────────────────────────────────────────
1141
 
1142
+ st.set_page_config(page_title="MyoSeg β€” Myotube Analyser",
1143
  layout="wide", page_icon="πŸ”¬")
1144
 
1145
  st.markdown("""
 
1154
  </style>
1155
  """, unsafe_allow_html=True)
1156
 
1157
+ st.title("πŸ”¬ MyoSeg β€” Myotube & Nuclei Analyser")
1158
  device = "cuda" if torch.cuda.is_available() else "cpu"
1159
 
1160
  # ─────────────────────────────────────────────────────────────────────────────
 
1723
  st.caption(
1724
  "Once you've tuned the sidebar parameters to get the best results for "
1725
  "this image, click below to submit both the image and your optimized "
1726
+ "parameters as a training contribution. This helps MyoSeg learn "
1727
  "better settings for similar images."
1728
  )
1729