Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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=
|
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)
|