Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -39,5 +39,4 @@ with st.form("list", clear_on_submit=True):
|
|
39 |
|
40 |
predictions = model.predict(processed_image)
|
41 |
score = predictions[0]
|
42 |
-
st.markdown("Predicted class of the image {} is : {}".format(file, class_names[np.argmax(score)]))
|
43 |
-
|
|
|
39 |
|
40 |
predictions = model.predict(processed_image)
|
41 |
score = predictions[0]
|
42 |
+
st.markdown("Predicted class of the image {} is : {}".format(file, class_names[np.argmax(score)]))
|
|