This is an automated email from the ASF dual-hosted git repository.
marcoabreu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/master by this push:
new d00cb42 adjust tolerance levels of test_l2_normalization (#12429)
d00cb42 is described below
commit d00cb42458802e4471c9517720924f2d595e02c0
Author: Hao Jin <[email protected]>
AuthorDate: Mon Sep 3 03:11:50 2018 -0700
adjust tolerance levels of test_l2_normalization (#12429)
---
tests/python/unittest/test_operator.py | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/tests/python/unittest/test_operator.py
b/tests/python/unittest/test_operator.py
index f246689..2f94eb0 100644
--- a/tests/python/unittest/test_operator.py
+++ b/tests/python/unittest/test_operator.py
@@ -3115,11 +3115,9 @@ def check_l2_normalization(in_shape, mode, dtype,
norm_eps=1e-10):
# compare numpy + mxnet
assert_almost_equal(exe.outputs[0].asnumpy(), np_out, rtol=1e-2 if dtype
is 'float16' else 1e-5, atol=1e-5)
# check gradient
- check_numeric_gradient(out, [in_data], numeric_eps=1e-3, rtol=1e-2,
atol=1e-3)
+ check_numeric_gradient(out, [in_data], numeric_eps=1e-3, rtol=1e-2,
atol=5e-3)
-# @haojin2: getting rid of the fixed seed as the flakiness could not be
reproduced.
-# tracked at: https://github.com/apache/incubator-mxnet/issues/11717
@with_seed()
def test_l2_normalization():
for dtype in ['float16', 'float32', 'float64']: