This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git
The following commit(s) were added to refs/heads/master by this push:
new 5a31251 [CI][TEST] Temporary disable nmsv4 test (#6151)
5a31251 is described below
commit 5a31251aa21293fb9cff8132cdeaea364a99adcd
Author: Tianqi Chen <[email protected]>
AuthorDate: Mon Jul 27 19:51:47 2020 -0700
[CI][TEST] Temporary disable nmsv4 test (#6151)
---
tests/python/frontend/tensorflow/test_forward.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/python/frontend/tensorflow/test_forward.py
b/tests/python/frontend/tensorflow/test_forward.py
index 62829df..4a4a2cd 100644
--- a/tests/python/frontend/tensorflow/test_forward.py
+++ b/tests/python/frontend/tensorflow/test_forward.py
@@ -2051,7 +2051,7 @@ def _test_forward_nms_v4(bx_shape, score_shape,
iou_threshold, score_threshold,
def test_forward_nms():
""" NonMaxSuppressionV3,4 """
- for _test_forward_nms in [_test_forward_nms_v3, _test_forward_nms_v4]:
+ for _test_forward_nms in [_test_forward_nms_v3]:
_test_forward_nms((5, 4), (5,), 0.7, 0.5, 5)
_test_forward_nms((20, 4), (20,), 0.5, 0.6, 10)
_test_forward_nms((1000, 4), (1000,), 0.3, 0.7, 1000)