提交 7b7a6a45 编写于 作者: S seatea

Check if the shape of the input of NMSWithMask is (N, 5).

上级 930a1fb0
......@@ -1745,11 +1745,14 @@ class NMSWithMask(PrimitiveWithInfer):
self.init_prim_io_names(inputs=['bboxes'], outputs=['selected_boxes', 'selected_idx', 'selected_mask'])
def infer_shape(self, bboxes_shape):
validator.check_integer("bboxes rank", len(bboxes_shape), 2, Rel.EQ)
validator.check_integer("bboxes.shape()[0]", bboxes_shape[0], 0, Rel.GT)
validator.check_integer("bboxes.shape()[1]", bboxes_shape[1], 5, Rel.EQ)
num = bboxes_shape[0]
validator.check_integer("bboxes_shape[0]", num, 0, Rel.GT)
return (bboxes_shape, (num,), (num,))
def infer_dtype(self, bboxes_dtype):
validator.check_subclass("bboxes_dtype", bboxes_dtype, mstype.tensor)
validator.check_typename("bboxes_dtype", bboxes_dtype, [mstype.float16, mstype.float32])
return (bboxes_dtype, mstype.int32, mstype.bool_)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册