MohamedSherif commited on
Commit
b289100
1 Parent(s): a86a87c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -29,8 +29,8 @@ class SkinCancer :
29
  return model
30
 
31
  def preprocess_image(self,img):
32
- img = resize(img, (64,64))
33
- img = img.reshape(1,64,64,3)
34
  return img
35
 
36
  def predict(self,img):
 
29
  return model
30
 
31
  def preprocess_image(self,img):
32
+ img = resize(img, (32,32))
33
+ img = img.reshape(1,32,32,3)
34
  return img
35
 
36
  def predict(self,img):