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 946e9d0 [MXNET-772] Re-enable test_module.py:test_module_set_params
(#11979)
946e9d0 is described below
commit 946e9d018452e8b9a8096a90d15c7015311d894f
Author: Lai Wei <[email protected]>
AuthorDate: Thu Aug 2 10:09:43 2018 -0700
[MXNET-772] Re-enable test_module.py:test_module_set_params (#11979)
---
tests/python/unittest/test_module.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tests/python/unittest/test_module.py
b/tests/python/unittest/test_module.py
index 41ea582..a2a2476 100644
--- a/tests/python/unittest/test_module.py
+++ b/tests/python/unittest/test_module.py
@@ -317,8 +317,9 @@ def test_module_switch_bucket():
assert total_bytes_after == total_bytes_before
-
-@with_seed(11)
+# roywei: Getting rid of fixed seed as flakiness could not be reproduced,
+# tracked at: https://github.com/apache/incubator-mxnet/issues/11705
+@with_seed()
def test_module_set_params():
# data iter
data = mx.nd.array([[0.05, .10]]);