Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -15,8 +15,11 @@ if uploaded_img is not None:
|
|
15 |
img = Image.open(uploaded_img)
|
16 |
resized_img = img.resize((160,160))
|
17 |
input_arr = 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 |
|
|
|
15 |
img = Image.open(uploaded_img)
|
16 |
resized_img = img.resize((160,160))
|
17 |
input_arr = keras.preprocessing.image.img_to_array(resized_img)
|
18 |
+
print(input_arr.shape)
|
19 |
input_arr = np.array([input_arr])
|
20 |
+
print(input_arr.shape)
|
21 |
input_arr = input_arr.astype('float32') / 255.
|
22 |
+
print(input_arr.shape)
|
23 |
result = loaded_model.predict(input_arr)
|
24 |
st.write(f"Your prediction is: {result}")
|
25 |
|