jableable commited on
Commit
9ebc735
·
verified ·
1 Parent(s): 2ced307

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -14,8 +14,10 @@ if uploaded_img is not None:
14
  st.image(uploaded_img)
15
  img = Image.open(uploaded_img)
16
  resized_img = img.resize((160,160))
17
- array = np.array(resized_img)
18
- result = loaded_model.predict(array)
 
 
19
  st.write(f"Your prediction is: {result}")
20
 
21
 
 
14
  st.image(uploaded_img)
15
  img = Image.open(uploaded_img)
16
  resized_img = img.resize((160,160))
17
+ input_array = keras.preprocessing.image.img_to_array(resized_img)
18
+ input_arr = np.array([input_arr])
19
+ input_arr = input_arr.astype('float32') / 255.
20
+ result = loaded_model.predict(input_arr)
21
  st.write(f"Your prediction is: {result}")
22
 
23