amosfang commited on
Commit
f3d3023
1 Parent(s): 8d733d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -59,7 +59,7 @@ def get_predictions(y_prediction_encoded):
59
  return predicted_label_indices
60
 
61
  def predict(image):
62
- sample_image_resized = resize_image(image, input_shape)
63
  y_pred = ensemble_predict(sample_image_resized)
64
  y_pred = get_predictions(y_pred).squeeze()
65
 
 
59
  return predicted_label_indices
60
 
61
  def predict(image):
62
+ sample_image_resized = resize_image(image)
63
  y_pred = ensemble_predict(sample_image_resized)
64
  y_pred = get_predictions(y_pred).squeeze()
65