Beasto commited on
Commit
63fd626
·
1 Parent(s): 63c7ceb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,6 +15,6 @@ if f is not None:
15
  img = img.resize((256,256))
16
  img = np.reshape(img,(1,256,256,3))
17
  pred = model.predict(img)
18
- st.Image(img,use_column_width=True)
19
  st.write(array[np.argmax(pred)])
20
 
 
15
  img = img.resize((256,256))
16
  img = np.reshape(img,(1,256,256,3))
17
  pred = model.predict(img)
18
+ st.image(img,use_column_width=True)
19
  st.write(array[np.argmax(pred)])
20