vahidrezanezhad commited on
Commit
5d59f41
·
verified ·
1 Parent(s): be6e884

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -64,7 +64,7 @@ def do_prediction(img):
64
 
65
  print(label_p_pred.shape,'label_p_pred')
66
  print(img_patch.shape, 'img_patch')
67
- seg = np.argmax(label_p_pred, axis=2)
68
 
69
  print(seg.shape, 'seg')
70
  seg_color = np.repeat(seg[:, :, np.newaxis], 3, axis=2)
 
64
 
65
  print(label_p_pred.shape,'label_p_pred')
66
  print(img_patch.shape, 'img_patch')
67
+ seg = np.argmax(label_p_pred, axis=3)[0]
68
 
69
  print(seg.shape, 'seg')
70
  seg_color = np.repeat(seg[:, :, np.newaxis], 3, axis=2)