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:33:03 UTC

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

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 727c318  Removed fixed seed from , test_loss:test_sample_weight_loss (#11986)
727c318 is described below

commit 727c318beeb33a6bdffa5ee671370d10b992f90a
Author: Rakesh Vasudevan <ra...@gmail.com>
AuthorDate: Fri Aug 3 22:32:56 2018 -0700

    Removed fixed seed from , test_loss:test_sample_weight_loss (#11986)
---
 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 719cd5f..8dfd362 100644
--- a/tests/python/unittest/test_loss.py
+++ b/tests/python/unittest/test_loss.py
@@ -227,7 +227,7 @@ def test_ctc_loss_train():
     assert mod.score(data_iter, eval_metric=mx.metric.Loss())[0][1] < 10
 
 
-@with_seed(1234)
+@with_seed()
 def test_sample_weight_loss():
     nclass = 10
     N = 20