From 32b781793a6d3082bc4595c2425116ff3dd55934 Mon Sep 17 00:00:00 2001 From: Hao Jin Date: Thu, 2 Aug 2018 22:40:34 +0000 Subject: [PATCH] remove fixed seed for test_triplet_loss --- 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 3c147bc4c723..ddd61a92d269 100644 --- a/tests/python/unittest/test_loss.py +++ b/tests/python/unittest/test_loss.py @@ -328,7 +328,7 @@ def test_squared_hinge_loss(): assert mod.score(data_iter, eval_metric=mx.metric.Loss())[0][1] < 0.05 -@with_seed(1234) +@with_seed() def test_triplet_loss(): N = 20 data = mx.random.uniform(-1, 1, shape=(N, 10))