From 8d1c61b1fcc39ee3ee08cbe04c20e799cecdfb6b Mon Sep 17 00:00:00 2001 From: vrakesh Date: Thu, 2 Aug 2018 01:05:52 +0000 Subject: [PATCH] Removed fixed seed from , test_loss:test_ctc_loss_train --- 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 8d5b86341a88..605c361f97f2 100644 --- a/tests/python/unittest/test_loss.py +++ b/tests/python/unittest/test_loss.py @@ -207,7 +207,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))