From b04d4dcdf86bda85a1f767d8e2ef173d0a34ea82 Mon Sep 17 00:00:00 2001 From: Masahiro Masuda Date: Mon, 5 Apr 2021 16:56:35 +0900 Subject: [PATCH] fix relay nms test --- tests/python/relay/test_op_level5.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/python/relay/test_op_level5.py b/tests/python/relay/test_op_level5.py index 2d6c8b50fd371..9266507626435 100644 --- a/tests/python/relay/test_op_level5.py +++ b/tests/python/relay/test_op_level5.py @@ -371,8 +371,6 @@ def verify_nms( ) if isinstance(z_indices, relay.expr.TupleWrapper): z_indices = z_indices.astuple() - assert "iou_threshold" in z.astext() - assert "iou_threshold" in z_indices.astext() zz = run_infer_type(z) zz_indices = run_infer_type(z_indices) assert zz.checked_type == relay.ty.TensorType(dshape, "float32")