Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -37,6 +37,6 @@ if uploaded_file is not None:
|
|
37 |
# Make prediction
|
38 |
prediction = cnn.predict(img_array)
|
39 |
if prediction[0][0] > 0.5:
|
40 |
-
st.write("Prediction: Dog")
|
41 |
-
else:
|
42 |
st.write("Prediction: Cat")
|
|
|
|
|
|
37 |
# Make prediction
|
38 |
prediction = cnn.predict(img_array)
|
39 |
if prediction[0][0] > 0.5:
|
|
|
|
|
40 |
st.write("Prediction: Cat")
|
41 |
+
else:
|
42 |
+
st.write("Prediction: Dog")
|