Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
18 |
-
|
|
|
|
|
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 |
|