yusyel commited on
Commit
0316616
·
unverified ·
1 Parent(s): 13c318b
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ CLASS=["Black Sea Sprat",
20
 
21
 
22
  def preprocess_image(img):
23
- img = load_img(img, target_size=(249, 249, 3))
24
  img = image.img_to_array(img)
25
  img = np.expand_dims(img, axis=0)
26
  img /= 255.0
 
20
 
21
 
22
  def preprocess_image(img):
23
+ img = load_img(img, target_size=(224, 224, 3))
24
  img = image.img_to_array(img)
25
  img = np.expand_dims(img, axis=0)
26
  img /= 255.0