Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -66,7 +66,7 @@ class_labels = ['battery',
|
|
66 |
# Function to predict image label and score
|
67 |
def predict_image(input):
|
68 |
# Resize the image to the size expected by the model
|
69 |
-
image = input.resize((
|
70 |
# Convert the image to a NumPy array
|
71 |
image_array = tf.keras.preprocessing.image.img_to_array(image)
|
72 |
# Normalize the image
|
|
|
66 |
# Function to predict image label and score
|
67 |
def predict_image(input):
|
68 |
# Resize the image to the size expected by the model
|
69 |
+
image = input.resize((244, 224))
|
70 |
# Convert the image to a NumPy array
|
71 |
image_array = tf.keras.preprocessing.image.img_to_array(image)
|
72 |
# Normalize the image
|