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/04 05:32:28 UTC

[incubator-mxnet] branch master updated: Removed fixed seed from , test_loss:test_ctc_loss_train (#11985)

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 942ab8d  Removed fixed seed from , test_loss:test_ctc_loss_train (#11985)
942ab8d is described below

commit 942ab8d9967300605e18c0faa295cc76fb94ea62
Author: Rakesh Vasudevan <ra...@gmail.com>
AuthorDate: Fri Aug 3 22:32:21 2018 -0700

    Removed fixed seed from , test_loss:test_ctc_loss_train (#11985)
---
 tests/python/unittest/test_loss.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/python/unittest/test_loss.py b/tests/python/unittest/test_loss.py
index b25a8f3..719cd5f 100644
--- a/tests/python/unittest/test_loss.py
+++ b/tests/python/unittest/test_loss.py
@@ -209,7 +209,7 @@ def test_ctc_loss():
     mx.test_utils.assert_almost_equal(l.asnumpy(), np.array([18.82820702, 16.50581741]))
 
 
-@with_seed(1234)
+@with_seed()
 def test_ctc_loss_train():
     N = 20
     data = mx.random.uniform(-1, 1, shape=(N, 20, 10))