Skip to content

Commit

Permalink
Disable box_nms in frontend test
Browse files Browse the repository at this point in the history
  • Loading branch information
Wang committed Jan 28, 2019
1 parent 8a27c91 commit 1544aab
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
6 changes: 0 additions & 6 deletions nnvm/tests/python/frontend/mxnet/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,6 @@ def test_forward_argmin():
mx_sym = mx.sym.argmin(data, axis=0)
verify_mxnet_frontend_impl(mx_sym, (5, 4), (4,))

def test_forward_box_nms():
data = mx.sym.var('data')
mx_sym = mx.sym.contrib.box_nms(data, topk=-1, force_suppress=True)
verify_mxnet_frontend_impl(mx_sym, (3, 100, 6), (3, 100, 6))

def test_forward_slice_axis():
data = mx.sym.var('data')
mx_sym = mx.sym.slice_axis(data, axis=1, begin=-5, end=None)
Expand Down Expand Up @@ -221,6 +216,5 @@ def test_forward_l2_normalize():
test_forward_zeros_like()
test_forward_argmax()
test_forward_argmin()
test_forward_box_nms()
test_forward_slice_axis()
test_forward_l2_normalize()
6 changes: 0 additions & 6 deletions tests/python/frontend/mxnet/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,6 @@ def test_forward_argmin():
mx_sym = mx.sym.argmin(data, axis=0)
verify_mxnet_frontend_impl(mx_sym, (5, 4), (4,))

def test_forward_box_nms():
data = mx.sym.var('data')
mx_sym = mx.sym.contrib.box_nms(data, topk=-1, force_suppress=True)
verify_mxnet_frontend_impl(mx_sym, (3, 100, 6), (3, 100, 6))

def test_forward_slice_axis():
data = mx.sym.var('data')
mx_sym = mx.sym.slice_axis(data, axis=1, begin=-5, end=None)
Expand Down Expand Up @@ -227,6 +222,5 @@ def test_forward_l2_normalize():
test_forward_zeros_like()
test_forward_argmax()
test_forward_argmin()
test_forward_box_nms()
test_forward_slice_axis()
test_forward_l2_normalize()

0 comments on commit 1544aab

Please sign in to comment.