Conner commited on
Commit
564edc3
·
1 Parent(s): e7d7b9d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,5 +1,5 @@
1
  from keras.models import load_model
2
- from PIL import Image, ImageOps
3
  import numpy as np
4
  import gradio as gr
5
 
@@ -23,7 +23,7 @@ def predict(image):
23
  #resize the image to a 224x224 with the same strategy as in TM2:
24
  #resizing the image to be at least 224x224 and then cropping from the center
25
  size = (224, 224)
26
- image = ImageOps.fit(image, size, Image.LANCZOS)
27
 
28
  #turn the image into a numpy array
29
  image_array = np.asarray(image)
 
1
  from keras.models import load_model
2
+ from PIL import Image, ImageOps, Resampling
3
  import numpy as np
4
  import gradio as gr
5
 
 
23
  #resize the image to a 224x224 with the same strategy as in TM2:
24
  #resizing the image to be at least 224x224 and then cropping from the center
25
  size = (224, 224)
26
+ image = ImageOps.fit(image, size, Resampling.LANCZOS)
27
 
28
  #turn the image into a numpy array
29
  image_array = np.asarray(image)