Commit
·
8fcc1b0
1
Parent(s):
6932db3
Specify clearly the title
Browse files
app.py
CHANGED
@@ -18,15 +18,15 @@ import tempfile
|
|
18 |
# Adjust Path for Local Repository
|
19 |
pathlib.WindowsPath = pathlib.PosixPath
|
20 |
|
21 |
-
st.title("
|
22 |
|
23 |
def yolo():
|
24 |
st.markdown(
|
25 |
-
"<h1 style='text-align: center; font-size: 36px;'>
|
26 |
unsafe_allow_html=True
|
27 |
)
|
28 |
st.markdown(
|
29 |
-
"<h2 style='text-align: center; font-size: 30px;'>
|
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;'>
|
382 |
unsafe_allow_html=True
|
383 |
)
|
384 |
st.markdown(
|
385 |
-
"<h2 style='text-align: center; font-size: 30px;'>
|
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 |
|