test_unpool_op.py 3.8 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
3 4 5
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

15 16
from __future__ import print_function

S
sweetsky0901 已提交
17 18
import unittest
import numpy as np
19
from op_test import OpTest
S
sweetsky0901 已提交
20 21 22 23


def unpool2dmax_forward_naive(input, indices, ksize, strides, paddings):
    s0, s1, s2, s3 = input.shape
24 25 26
    out_hsize = (s2 - 1) * strides[0] - 2 * paddings[0] + ksize[0]
    out_wsize = (s2 - 1) * strides[1] - 2 * paddings[1] + ksize[1]
    out = np.zeros((s0, s1, out_hsize, out_wsize))
27 28 29 30
    for nidx in range(s0):
        for cidx in range(s1):
            for h in range(s2):
                for w in range(s3):
S
sweetsky0901 已提交
31
                    index = indices[nidx, cidx, h, w]
M
minqiyang 已提交
32
                    hidx = (index - index % out_wsize) // out_wsize
33
                    widx = index % out_wsize
S
sweetsky0901 已提交
34 35
                    out[nidx, cidx, int(hidx), int(widx)] = \
                            input[nidx, cidx, h, w]
S
sweetsky0901 已提交
36 37 38 39 40 41 42 43 44

    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")
45
        nsize, csize, hsize, wsize = pre_input.shape
M
minqiyang 已提交
46
        hsize_out = (hsize - self.ksize[0] + 2 * self.paddings[0]) // \
S
sweetsky0901 已提交
47
                self.strides[0] + 1
M
minqiyang 已提交
48
        wsize_out = (wsize - self.ksize[1] + 2 * self.paddings[1]) // \
S
sweetsky0901 已提交
49
                self.strides[1] + 1
50 51
        input = np.zeros((nsize, csize, hsize_out, wsize_out))
        indices = np.zeros((nsize, csize, hsize_out, wsize_out))
52 53
        for i in range(hsize_out):
            for j in range(wsize_out):
S
sweetsky0901 已提交
54
                r_start = np.max((i * self.strides[0] - self.paddings[0], 0))
S
sweetsky0901 已提交
55
                r_end = np.min((i * self.strides[0] + self.ksize[0] - \
56
                        self.paddings[0], hsize))
S
sweetsky0901 已提交
57
                c_start = np.max((j * self.strides[1] - self.paddings[1], 0))
S
sweetsky0901 已提交
58
                c_end = np.min((j * self.strides[1] + self.ksize[1] - \
59
                        self.paddings[1], wsize))
60 61
                for nidx in range(nsize):
                    for cidx in range(csize):
S
sweetsky0901 已提交
62 63
                        x_masked = pre_input[nidx, cidx, r_start:r_end, \
                                c_start:c_end]
S
sweetsky0901 已提交
64 65
                        input[nidx, cidx, i, j] = x_masked.max()
                        arg = x_masked.argmax()
S
sweetsky0901 已提交
66
                        indices[nidx, cidx, i, j] = \
M
minqiyang 已提交
67
                                (r_start + arg // self.ksize[1]) * wsize + \
S
sweetsky0901 已提交
68
                                c_start + arg % self.ksize[1]
S
sweetsky0901 已提交
69
        output = self.unpool2d_forward_naive(input, indices, self.ksize, \
S
sweetsky0901 已提交
70
                self.strides, self.paddings).astype("float32")
S
sweetsky0901 已提交
71 72 73
        self.inputs = {
            'X': input.astype('float32'),
            'Indices': indices.astype('int32')
S
sweetsky0901 已提交
74
        }
S
sweetsky0901 已提交
75
        self.attrs = {
S
sweetsky0901 已提交
76 77 78 79
            'strides': self.strides,
            'paddings': self.paddings,
            'ksize': self.ksize,
            'unpooling_type': self.unpooling_type,
S
sweetsky0901 已提交
80
        }
S
sweetsky0901 已提交
81 82 83 84 85 86
        self.outputs = {'Out': output.astype('float32')}

    def test_check_output(self):
        self.check_output()

    def test_check_grad(self):
S
sweetsky0901 已提交
87
        self.check_grad(['X'], 'Out')
S
sweetsky0901 已提交
88 89

    def init_test_case(self):
S
sweetsky0901 已提交
90
        self.unpool2d_forward_naive = unpool2dmax_forward_naive
S
sweetsky0901 已提交
91
        self.unpooling_type = "max"
S
sweetsky0901 已提交
92
        self.shape = [6, 4, 5, 5]
S
sweetsky0901 已提交
93 94 95 96
        self.ksize = [3, 3]
        self.strides = [2, 2]
        self.paddings = [0, 0]

S
sweetsky0901 已提交
97

S
sweetsky0901 已提交
98 99
if __name__ == '__main__':
    unittest.main()