From b675d69fb2d13f1ecb2fddef68cf1f424fcf89b3 Mon Sep 17 00:00:00 2001 From: vdantu <36211508+vdantu@users.noreply.github.com> Date: Wed, 15 Aug 2018 01:56:12 -0700 Subject: [PATCH] Remove fixed seed for test_huber tests (#12169) --- 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 2cdc2909ffc9..24cc747a3087 100644 --- a/tests/python/unittest/test_loss.py +++ b/tests/python/unittest/test_loss.py @@ -274,7 +274,7 @@ def test_saveload(): eval_metric=mx.metric.Loss()) assert mod.score(data_iter, eval_metric=mx.metric.Loss())[0][1] < 0.05 -@with_seed(1234) +@with_seed() def test_huber_loss(): N = 20 data = mx.random.uniform(-1, 1, shape=(N, 10))