Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -72,6 +72,7 @@ model_loaded.eval()
|
|
| 72 |
result = predict_image(image_path=img, model=model_loaded)
|
| 73 |
|
| 74 |
if result is not None:
|
| 75 |
-
|
| 76 |
-
st.write(":
|
| 77 |
-
|
|
|
|
|
|
| 72 |
result = predict_image(image_path=img, model=model_loaded)
|
| 73 |
|
| 74 |
if result is not None:
|
| 75 |
+
if result == 'bird':
|
| 76 |
+
st.write(":bird:" + "That's a Bird" + ":bird:")
|
| 77 |
+
else:
|
| 78 |
+
st.write(":chipmunk:" + "That's a Squirrel" + ":chipmunk:")
|