Update app.py
Browse files
app.py
CHANGED
@@ -43,10 +43,10 @@ elif pages == "Get started":
|
|
43 |
st.image(upload_img, width=400)
|
44 |
# print(predicted_class)
|
45 |
if predicted_class == 0:
|
46 |
-
st.markdown("<h1 style='font-size: 1.5vw'>The uploaded image belongs to Fire
|
47 |
elif predicted_class == 1:
|
48 |
-
st.markdown("<h1 style='font-size: 1.5vw'>The uploaded image belongs to Ghost
|
49 |
elif predicted_class == 2:
|
50 |
-
st.markdown("<h1 style='font-size: 1.5vw'>The uploaded image belongs to Weaver
|
51 |
else:
|
52 |
-
st.markdown("<h1 style='font-size: 1.5vw'>The uploaded image doesnt match
|
|
|
43 |
st.image(upload_img, width=400)
|
44 |
# print(predicted_class)
|
45 |
if predicted_class == 0:
|
46 |
+
st.markdown("<h1 style='font-size: 1.5vw'>The uploaded image belongs to Fire Ant species</h1>", unsafe_allow_html=True)
|
47 |
elif predicted_class == 1:
|
48 |
+
st.markdown("<h1 style='font-size: 1.5vw'>The uploaded image belongs to Ghost Ant species</h1>", unsafe_allow_html=True)
|
49 |
elif predicted_class == 2:
|
50 |
+
st.markdown("<h1 style='font-size: 1.5vw'>The uploaded image belongs to Weaver Ant species</h1>", unsafe_allow_html=True)
|
51 |
else:
|
52 |
+
st.markdown("<h1 style='font-size: 1.5vw'>The uploaded image doesnt match Ant species</h1>", unsafe_allow_html=True)
|