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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -1,5 +1,5 @@
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,7 +23,8 @@ 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, Resampling.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
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
+
27
+ image = ImageOps.fit(image, size, Image.Resampling.LANCZOS)
28
 
29
  #turn the image into a numpy array
30
  image_array = np.asarray(image)