paloma99 commited on
Commit
2b8a352
·
verified ·
1 Parent(s): 438dd4b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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((224, 244))
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