Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -19,7 +19,7 @@ if f is not None:
|
|
| 19 |
|
| 20 |
img2 = np.reshape(img2,(1,200,200,3))
|
| 21 |
|
| 22 |
-
pred,pred2 = model.predict(
|
| 23 |
|
| 24 |
st.image(img,use_column_width=True)
|
| 25 |
st.write(np.argmax(pred))
|
|
|
|
| 19 |
|
| 20 |
img2 = np.reshape(img2,(1,200,200,3))
|
| 21 |
|
| 22 |
+
pred,pred2 = model.predict(img2),model2.predict(img)
|
| 23 |
|
| 24 |
st.image(img,use_column_width=True)
|
| 25 |
st.write(np.argmax(pred))
|