test_maxout_op.py 979 字节
Newer Older
W
wanghaox 已提交
1 2 3 4 5
import unittest
import numpy as np
from op_test import OpTest


W
wanghaox 已提交
6
def maxout_forward_naive(input, groups):
W
wanghaox 已提交
7 8 9 10 11 12 13 14 15 16
    s0, s1, s2, s3 = input.shape
    return np.ndarray([s0, s1 / groups, groups, s2, s3], \
        buffer = input, dtype=input.dtype).max(axis=(2))


class TestMaxOutOp(OpTest):
    def setUp(self):
        self.op_type = "maxout"
        self.init_test_case()
        input = np.random.random(self.shape).astype("float32")
S
sweetsky0901 已提交
17
        output = self.MaxOut_forward_naive(input, self.groups).astype("float32")
W
wanghaox 已提交
18 19

        self.inputs = {'X': input}
W
wanghaox 已提交
20
        self.attrs = {'groups': self.groups}
W
wanghaox 已提交
21 22 23 24 25 26 27 28 29 30 31 32

        self.outputs = {'Out': output.astype('float32')}

    def test_check_output(self):
        self.check_output()

    def test_check_grad(self):
        self.check_grad(['X'], 'Out')

    def init_test_case(self):
        self.MaxOut_forward_naive = maxout_forward_naive
        self.shape = [100, 6, 2, 2]
33
        self.groups = 2
W
wanghaox 已提交
34 35 36 37


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