Harveenchadha commited on
Commit
41b1504
Β·
1 Parent(s): 56444f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -15,6 +15,7 @@ def infer(original_image):
15
  image = image.astype("float32") / 255.0
16
  image = np.expand_dims(image, axis=0)
17
  output_image = model.predict(image)
 
18
  print(output_image.shape())
19
 
20
 
 
15
  image = image.astype("float32") / 255.0
16
  image = np.expand_dims(image, axis=0)
17
  output_image = model.predict(image)
18
+ print(output_image)
19
  print(output_image.shape())
20
 
21