phonghaitran commited on
Commit
9392cf7
·
1 Parent(s): 9a4a6ce

update title and h1 remove unet

Browse files
Files changed (1) hide show
  1. app.py +1 -6
app.py CHANGED
@@ -18,7 +18,7 @@ import tempfile
18
  # Adjust Path for Local Repository
19
  pathlib.WindowsPath = pathlib.PosixPath
20
 
21
- st.title("YOLO Object Detection Web App")
22
 
23
  def yolo():
24
  st.markdown(
@@ -414,11 +414,6 @@ if 'model_selected' not in st.session_state:
414
  st.session_state.model_selected = None
415
 
416
  def main():
417
- st.markdown(
418
- "<h1 style='text-align: center; font-size: 36px;'>Unet </h1>",
419
- unsafe_allow_html=True
420
- )
421
-
422
  # Radio button for model selection with consistent casing
423
  option = st.radio("Select Model:", ("Unet", "YOLO"))
424
 
 
18
  # Adjust Path for Local Repository
19
  pathlib.WindowsPath = pathlib.PosixPath
20
 
21
+ st.title("Object Detection Web App")
22
 
23
  def yolo():
24
  st.markdown(
 
414
  st.session_state.model_selected = None
415
 
416
  def main():
 
 
 
 
 
417
  # Radio button for model selection with consistent casing
418
  option = st.radio("Select Model:", ("Unet", "YOLO"))
419