Beasto commited on
Commit
c12e131
·
1 Parent(s): d67d24b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(img),model2.predict(img)
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))