test_reshape_op.py 754 字节
Newer Older
Y
Yibing Liu 已提交
1 2
import unittest
import numpy as np
Y
Yibing Liu 已提交
3
from gradient_checker import GradientChecker, Operator
Y
Yibing Liu 已提交
4 5 6 7 8 9 10 11
from op_test_util import OpTestMeta


class TestReshapeOp(unittest.TestCase):
    __metaclass__ = OpTestMeta

    def setUp(self):
        self.type = "reshape"
Y
Yibing Liu 已提交
12 13
        self.inputs = {'X': np.random.random((37, 51)).astype("float32"), }
        self.attrs = {'shape': [51, 37]}
Y
Yibing Liu 已提交
14 15 16 17 18
        self.outputs = {'Out': self.inputs['X'].reshape(self.attrs['shape'])}


class ReshapeGradOpTest(GradientChecker):
    def test_normal(self):
Y
Yibing Liu 已提交
19 20 21
        op = Operator("reshape", X='X', Out='Out', shape=[5, 40])
        inputs = {"X": np.random.random((10, 20)).astype("float32")}
        self.check_grad(op, inputs, set("X"), "Out")
Y
Yibing Liu 已提交
22 23 24 25


if __name__ == '__main__':
    unittest.main()