Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Updates tolerances for test_layer_bidirectional
Browse files Browse the repository at this point in the history
  • Loading branch information
perdasilva committed Apr 12, 2019
1 parent 800590e commit 236c9c5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/python/unittest/test_gluon_rnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import unittest
from mxnet.test_utils import almost_equal, assert_almost_equal
from common import assert_raises_cudnn_not_satisfied

from tests.python.unittest.common import with_seed

def test_rnn():
cell = gluon.rnn.RNNCell(100, prefix='rnn_')
Expand Down Expand Up @@ -244,6 +244,7 @@ def test_bidirectional():


@assert_raises_cudnn_not_satisfied(min_version='5.1.10')
@with_seed()
def test_layer_bidirectional():
class RefBiLSTM(gluon.Block):
def __init__(self, size, **kwargs):
Expand Down Expand Up @@ -279,7 +280,7 @@ def forward(self, inpt):
ref_net_params[k.replace('l0', 'l0l0').replace('r0', 'r0l0')].set_data(weights[k])

data = mx.random.uniform(shape=(11, 10, in_size))
assert_allclose(net(data).asnumpy(), ref_net(data).asnumpy())
assert_allclose(net(data).asnumpy(), ref_net(data).asnumpy(), rtol=1e-04, atol=1e-02)



Expand Down

0 comments on commit 236c9c5

Please sign in to comment.