You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ha...@apache.org on 2018/08/09 01:34:26 UTC

[incubator-mxnet] branch master updated: removed fixed from test_optimizer.test_signum (#12088)

This is an automated email from the ASF dual-hosted git repository.

haibin 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 3b449ef  removed fixed from test_optimizer.test_signum (#12088)
3b449ef is described below

commit 3b449efacbdb004da09af4953fa83799ad135ea1
Author: access2rohit <sr...@osu.edu>
AuthorDate: Wed Aug 8 18:34:17 2018 -0700

    removed fixed from test_optimizer.test_signum (#12088)
---
 tests/python/unittest/test_optimizer.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/python/unittest/test_optimizer.py b/tests/python/unittest/test_optimizer.py
index 41aaf1e..bdd71ee 100644
--- a/tests/python/unittest/test_optimizer.py
+++ b/tests/python/unittest/test_optimizer.py
@@ -702,7 +702,7 @@ class PySignum(mx.optimizer.Optimizer):
         else:
             weight[:] = (1 - lr*(wd+self.wd_lh))*weight - lr*mx.nd.sign(grad)
 
-@with_seed(0)
+@with_seed()
 def test_signum():
     opt1 = PySignum
     opt2 = mx.optimizer.Signum