test_unpool_op.py 3.1 KB
Newer Older
S
sweetsky0901 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import unittest
import numpy as np
from op_test import OpTest


def unpool2dmax_forward_naive(input, indices, ksize, strides, paddings):
    s0, s1, s2, s3 = input.shape
    out_H=(s2 - 1) * strides[0] - 2 * paddings[0] + ksize[0]
    out_W=(s2 - 1) * strides[1] - 2 * paddings[1] + ksize[1]
    out = np.zeros((s0, s1, out_H, out_W))
    for nidx in xrange(s0):
        for cidx in xrange(s1):
            for h in xrange(s2):
                for w in xrange(s3):
                    index = indices[nidx, cidx, h, w]
                    hidx = (index - index % out_W) / out_W
                    widx = index % out_W
S
sweetsky0901 已提交
18 19
                    out[nidx, cidx, int(hidx), int(widx)] = \
                            input[nidx, cidx, h, w]
S
sweetsky0901 已提交
20 21 22 23 24 25 26 27 28 29

    return out


class TestUnpoolOp(OpTest):
    def setUp(self):
        self.op_type = "unpool"
        self.init_test_case()
        pre_input = np.random.random(self.shape).astype("float32")
        N, C, H, W = pre_input.shape
S
sweetsky0901 已提交
30 31 32 33
        H_out = (H - self.ksize[0] + 2 * self.paddings[0]) / \
                self.strides[0] + 1
        W_out = (W - self.ksize[1] + 2 * self.paddings[1]) / \
                self.strides[1] + 1
S
sweetsky0901 已提交
34 35 36 37 38
        input = np.zeros((N, C, H_out, W_out))
        indices = np.zeros((N, C, H_out, W_out))
        for i in xrange(H_out):
            for j in xrange(W_out):
                r_start = np.max((i * self.strides[0] - self.paddings[0], 0))
S
sweetsky0901 已提交
39 40
                r_end = np.min((i * self.strides[0] + self.ksize[0] - \
                        self.paddings[0], H))
S
sweetsky0901 已提交
41
                c_start = np.max((j * self.strides[1] - self.paddings[1], 0))
S
sweetsky0901 已提交
42 43
                c_end = np.min((j * self.strides[1] + self.ksize[1] - \
                        self.paddings[1], W))
S
sweetsky0901 已提交
44 45
                for nidx in xrange(N):
                    for cidx in xrange(C):
S
sweetsky0901 已提交
46 47
                        x_masked = pre_input[nidx, cidx, r_start:r_end, \
                                c_start:c_end]
S
sweetsky0901 已提交
48 49
                        input[nidx, cidx, i, j] = x_masked.max()
                        arg = x_masked.argmax()
S
sweetsky0901 已提交
50 51 52 53 54
                        indices[nidx, cidx, i, j] = \
                                (r_start + arg / self.ksize[1]) * W + \
                                c_start + arg % self.ksize[1]
        output = self.Unpool2d_forward_naive(input, indices, self.ksize, \
                self.strides, self.paddings).astype("float32")
S
sweetsky0901 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68
        self.inputs = {'X': input.astype('float32'),
                       'Y': indices.astype('int16')}
        self.attrs = {
                 'strides': self.strides,
                 'paddings': self.paddings,
                 'ksize': self.ksize,
                 'unpoolingtype': self.unpoolingtype,
                 }
        self.outputs = {'Out': output.astype('float32')}

    def test_check_output(self):
        self.check_output()

    def test_check_grad(self):
S
sweetsky0901 已提交
69
        self.check_grad(['X'], 'Out')
S
sweetsky0901 已提交
70 71 72 73

    def init_test_case(self):
        self.Unpool2d_forward_naive = unpool2dmax_forward_naive
        self.unpoolingtype = "max"
S
sweetsky0901 已提交
74
        self.shape = [6, 4, 5, 5]
S
sweetsky0901 已提交
75 76 77 78 79 80 81 82
        self.ksize = [3, 3]
        self.strides = [2, 2]
        self.paddings = [0, 0]



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