test_lstm_unit_op.py 1.0 KB
Newer Older
Z
lstm  
zchen0211 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import unittest
import numpy as np
from op_test import OpTest


def sigmoid_np(x):
    return 1. / (1. + np.exp(-x))


def tanh_np(x):
    return 2 * sigmoid_np(2. * x) - 1.


class LstmUnitTest(OpTest):
    def setUp(self):
        self.op_type = "lstm_unit"
17 18
        x_np = np.random.normal(size=(5, 16)).astype("float64")
        c_np = np.random.normal(size=(5, 4)).astype("float64")
Z
lstm  
zchen0211 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
        i_np, f_np, o_np, j_np = np.split(x_np, 4, axis=1)
        forget_bias_np = 0.
        self.attrs = {'forget_bias': 0.}

        new_c = c_np * sigmoid_np(f_np + forget_bias_np) + sigmoid_np(
            i_np) * tanh_np(j_np)
        new_h = tanh_np(new_c) * sigmoid_np(o_np)

        self.inputs = {'X': x_np, 'C_prev': c_np}
        self.outputs = {'C': new_c, 'H': new_h}

    def test_check_output(self):
        self.check_output()

    def test_check_grad(self):
34
        self.check_grad(['X', 'C_prev'], ['C', 'H'])
Z
lstm  
zchen0211 已提交
35 36


37 38 39 40
if __name__ == "__main__":
    # FIXME(qijun) https://github.com/PaddlePaddle/Paddle/issues/5185
    exit(0)
    unittest.main()