Spaces:
Runtime error
Runtime error
MohamedSherif
commited on
Commit
•
c24222d
1
Parent(s):
2748758
Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,7 @@ class SkinCancer :
|
|
31 |
return model
|
32 |
|
33 |
def preprocess_image(self,img):
|
34 |
-
img =
|
35 |
img = img.reshape(1,64,64,3)
|
36 |
return img
|
37 |
|
|
|
31 |
return model
|
32 |
|
33 |
def preprocess_image(self,img):
|
34 |
+
img = resize(img, (64,64))
|
35 |
img = img.reshape(1,64,64,3)
|
36 |
return img
|
37 |
|