paloma99 commited on
Commit
438dd4b
·
verified ·
1 Parent(s): 612ecd6

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((None, 224, 244, 3))
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((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