Skip to content

Commit

Permalink
Remove fixed seed for test_ctc_loss (apache#12686)
Browse files Browse the repository at this point in the history
  • Loading branch information
vandanavk committed Sep 28, 2018
1 parent 27747b5 commit 1bcde5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python/unittest/test_loss.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def test_l1_loss():
assert mod.score(data_iter, eval_metric=mx.metric.Loss())[0][1] < 0.1


@with_seed(1234)
@with_seed()
def test_ctc_loss():
loss = gluon.loss.CTCLoss()
l = loss(mx.nd.ones((2,20,4)), mx.nd.array([[1,0,-1,-1],[2,1,1,-1]]))
Expand Down

0 comments on commit 1bcde5d

Please sign in to comment.