test_nearest_interp_op.py 7.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# 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.

from __future__ import print_function

import unittest
import numpy as np
from op_test import OpTest
import paddle.fluid.core as core


23 24 25 26
def nearest_neighbor_interp_np(X,
                               out_h,
                               out_w,
                               out_size=None,
27 28
                               actual_shape=None,
                               align_corners=True):
29 30 31 32
    """nearest neighbor interpolation implement in shape [N, C, H, W]"""
    if out_size is not None:
        out_h = out_size[0]
        out_w = out_size[1]
33 34 35
    if actual_shape is not None:
        out_h = actual_shape[0]
        out_w = actual_shape[1]
36 37 38
    n, c, in_h, in_w = X.shape

    ratio_h = ratio_w = 0.0
T
tink2123 已提交
39 40 41 42 43 44 45 46 47 48
    if (out_h > 1):
        if (align_corners):
            ratio_h = (in_h - 1.0) / (out_h - 1.0)
        else:
            ratio_h = 1.0 * in_h / out_h
    if (out_w > 1):
        if (align_corners):
            ratio_w = (in_w - 1.0) / (out_w - 1.0)
        else:
            ratio_w = 1.0 * in_w / out_w
49 50

    out = np.zeros((n, c, out_h, out_w))
51 52 53 54 55 56 57 58 59 60 61 62 63

    if align_corners:
        for i in range(out_h):
            in_i = int(ratio_h * i + 0.5)
            for j in range(out_w):
                in_j = int(ratio_w * j + 0.5)
                out[:, :, i, j] = X[:, :, in_i, in_j]
    else:
        for i in range(out_h):
            in_i = int(ratio_h * i)
            for j in range(out_w):
                in_j = int(ratio_w * j)
                out[:, :, i, j] = X[:, :, in_i, in_j]
64 65 66 67

    return out.astype(X.dtype)


68
class TestNearestInterpOp(OpTest):
69 70
    def setUp(self):
        self.out_size = None
71
        self.actual_shape = None
72
        self.init_test_case()
73
        self.op_type = "nearest_interp"
74 75
        input_np = np.random.random(self.input_shape).astype("float32")

76
        output_np = nearest_neighbor_interp_np(input_np, self.out_h, self.out_w,
77 78
                                               self.out_size, self.actual_shape,
                                               self.align_corners)
79 80 81
        self.inputs = {'X': input_np}
        if self.out_size is not None:
            self.inputs['OutSize'] = self.out_size
82 83
        if self.actual_shape is not None:
            self.inputs['OutSize'] = self.actual_shape
84 85 86
        self.attrs = {
            'out_h': self.out_h,
            'out_w': self.out_w,
87 88
            'interp_method': self.interp_method,
            'align_corners': self.align_corners,
89 90 91 92 93 94 95 96 97 98
        }
        self.outputs = {'Out': output_np}

    def test_check_output(self):
        self.check_output()

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

    def init_test_case(self):
99
        self.interp_method = 'nearest'
100 101 102 103
        self.input_shape = [2, 3, 4, 4]
        self.out_h = 2
        self.out_w = 2
        self.out_size = np.array([3, 3]).astype("int32")
104
        self.align_corners = True
105 106


107
class TestNearestNeighborInterpCase1(TestNearestInterpOp):
108
    def init_test_case(self):
109
        self.interp_method = 'nearest'
110 111 112
        self.input_shape = [4, 1, 7, 8]
        self.out_h = 1
        self.out_w = 1
T
tink2123 已提交
113
        self.align_corners = True
114 115


116
class TestNearestNeighborInterpCase2(TestNearestInterpOp):
117
    def init_test_case(self):
118
        self.interp_method = 'nearest'
119 120 121
        self.input_shape = [3, 3, 9, 6]
        self.out_h = 12
        self.out_w = 12
122
        self.align_corners = True
123 124


125
class TestNearestNeighborInterpCase3(TestNearestInterpOp):
126
    def init_test_case(self):
127
        self.interp_method = 'nearest'
128 129 130
        self.input_shape = [1, 1, 128, 64]
        self.out_h = 64
        self.out_w = 128
131
        self.align_corners = True
132 133


134
class TestNearestNeighborInterpCase4(TestNearestInterpOp):
135
    def init_test_case(self):
136
        self.interp_method = 'nearest'
137 138 139 140
        self.input_shape = [4, 1, 7, 8]
        self.out_h = 1
        self.out_w = 1
        self.out_size = np.array([2, 2]).astype("int32")
141
        self.align_corners = True
142 143


144
class TestNearestNeighborInterpCase5(TestNearestInterpOp):
145
    def init_test_case(self):
146
        self.interp_method = 'nearest'
147 148 149 150
        self.input_shape = [3, 3, 9, 6]
        self.out_h = 12
        self.out_w = 12
        self.out_size = np.array([11, 11]).astype("int32")
151
        self.align_corners = True
152 153


154
class TestNearestNeighborInterpCase6(TestNearestInterpOp):
155
    def init_test_case(self):
156
        self.interp_method = 'nearest'
157 158 159 160
        self.input_shape = [1, 1, 128, 64]
        self.out_h = 64
        self.out_w = 128
        self.out_size = np.array([65, 129]).astype("int32")
161
        self.align_corners = True
162 163


164
class TestNearestNeighborInterpActualShape(TestNearestInterpOp):
165
    def init_test_case(self):
166
        self.interp_method = 'nearest'
167 168 169 170
        self.input_shape = [3, 2, 32, 16]
        self.out_h = 64
        self.out_w = 32
        self.out_size = np.array([66, 40]).astype("int32")
171
        self.align_corners = True
172 173


174
class TestNearestInterpOpUint8(OpTest):
175 176
    def setUp(self):
        self.out_size = None
177
        self.actual_shape = None
178
        self.init_test_case()
179
        self.op_type = "nearest_interp"
180 181
        input_np = np.random.randint(
            low=0, high=256, size=self.input_shape).astype("uint8")
182
        output_np = nearest_neighbor_interp_np(input_np, self.out_h, self.out_w,
183 184
                                               self.out_size, self.actual_shape,
                                               self.align_corners)
185 186 187 188 189 190
        self.inputs = {'X': input_np}
        if self.out_size is not None:
            self.inputs['OutSize'] = self.out_size
        self.attrs = {
            'out_h': self.out_h,
            'out_w': self.out_w,
191 192
            'interp_method': self.interp_method,
            'align_corners': self.align_corners
193 194 195 196 197 198 199
        }
        self.outputs = {'Out': output_np}

    def test_check_output(self):
        self.check_output_with_place(place=core.CPUPlace(), atol=1)

    def init_test_case(self):
200
        self.interp_method = 'nearest'
201 202 203
        self.input_shape = [1, 3, 9, 6]
        self.out_h = 10
        self.out_w = 9
204
        self.align_corners = True
205 206


207
class TestNearestNeighborInterpCase1Uint8(TestNearestInterpOpUint8):
208 209 210 211 212
    def init_test_case(self):
        self.interp_method = 'nearest'
        self.input_shape = [2, 3, 128, 64]
        self.out_h = 120
        self.out_w = 50
T
tink2123 已提交
213
        self.align_corners = True
214 215


216
class TestNearestNeighborInterpCase2Uint8(TestNearestInterpOpUint8):
217 218 219 220 221 222
    def init_test_case(self):
        self.interp_method = 'nearest'
        self.input_shape = [4, 1, 7, 8]
        self.out_h = 5
        self.out_w = 13
        self.out_size = np.array([6, 15]).astype("int32")
223 224 225 226 227 228
        self.align_corners = True


class TestNearestInterpWithoutCorners(TestNearestInterpOp):
    def set_align_corners(self):
        self.align_corners = False
229 230 231 232


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