MedMagik commited on
Commit
9ce719b
·
verified ·
1 Parent(s): 3e3db50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -63,8 +63,8 @@ def custom_decode_predictions(predictions, class_labels):
63
 
64
  def classify_image(img):
65
  img_array = img_to_array(img)
66
- img_array = preprocess_input(img_array)
67
- img_array = np.expand_dims(img_array, axis=0)
68
 
69
 
70
 
 
63
 
64
  def classify_image(img):
65
  img_array = img_to_array(img)
66
+ img_array = np.expand_dims(img_array, axis=0
67
+ img_array = preprocess_input(img_array)
68
 
69
 
70