phonghaitran commited on
Commit
8fcc1b0
·
1 Parent(s): 6932db3

Specify clearly the title

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -18,15 +18,15 @@ import tempfile
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(
25
- "<h1 style='text-align: center; font-size: 36px;'>Smart city rubbish detection</h1>",
26
  unsafe_allow_html=True
27
  )
28
  st.markdown(
29
- "<h2 style='text-align: center; font-size: 30px;'>Presented by team 2</h2>",
30
  unsafe_allow_html=True
31
  )
32
 
@@ -378,11 +378,11 @@ def unet():
378
  model = load_model()
379
 
380
  st.markdown(
381
- "<h1 style='text-align: center; font-size: 36px;'>Smart city rubbish detection</h1>",
382
  unsafe_allow_html=True
383
  )
384
  st.markdown(
385
- "<h2 style='text-align: center; font-size: 30px;'>Presented by team 2</h2>",
386
  unsafe_allow_html=True
387
  )
388
 
 
18
  # Adjust Path for Local Repository
19
  pathlib.WindowsPath = pathlib.PosixPath
20
 
21
+ st.title("Smart city rubbish detection Web Application")
22
 
23
  def yolo():
24
  st.markdown(
25
+ "<h1 style='text-align: center; font-size: 36px;'>Yolo object detection</h1>",
26
  unsafe_allow_html=True
27
  )
28
  st.markdown(
29
+ "<h2 style='text-align: center; font-size: 30px;'>Using Yolov5</h2>",
30
  unsafe_allow_html=True
31
  )
32
 
 
378
  model = load_model()
379
 
380
  st.markdown(
381
+ "<h1 style='text-align: center; font-size: 36px;'>Unet object detection</h1>",
382
  unsafe_allow_html=True
383
  )
384
  st.markdown(
385
+ "<h2 style='text-align: center; font-size: 30px;'>Using Unet - Pytorch</h2>",
386
  unsafe_allow_html=True
387
  )
388