ajeetkumar01 commited on
Commit
eea6ace
·
verified ·
1 Parent(s): fd364d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ def predict(image_file):
9
  img = np.expand_dims(img, axis=0)
10
  img = img / 255
11
 
12
- model = load_model("/content/vgg16_model.h5")
13
  result = model.predict(img)
14
 
15
  if result[0][0] >= 0.5:
 
9
  img = np.expand_dims(img, axis=0)
10
  img = img / 255
11
 
12
+ model = load_model("/vgg16_model.h5")
13
  result = model.predict(img)
14
 
15
  if result[0][0] >= 0.5: