Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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,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 |
-
|
|
|
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)
|