test_crop_op.py 4.4 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
# 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.
14

W
wanghaoshuang 已提交
15 16
import unittest
import numpy as np
17
from op_test import OpTest
P
PuQing 已提交
18 19
import paddle
import paddle.fluid as fluid
W
wanghaoshuang 已提交
20 21


22 23 24 25 26 27 28 29 30 31 32 33 34 35
def crop(data, offsets, crop_shape):
    def indexOf(shape, index):
        result = []
        for dim in reversed(shape):
            result.append(index % dim)
            index = index / dim
        return result[::-1]

    result = []
    for i, value in enumerate(data.flatten()):
        index = indexOf(data.shape, i)
        selected = True
        if len(index) == len(offsets):
            for j, offset in enumerate(offsets):
36 37 38 39 40
                selected = (
                    selected
                    and index[j] >= offset
                    and index[j] < crop_shape[j] + offset
                )
41 42 43 44 45
            if selected:
                result.append(value)
    return np.array(result).reshape(crop_shape)


46
class TestCropOp(OpTest):
W
wanghaoshuang 已提交
47
    def setUp(self):
48 49
        self.op_type = "crop"
        self.crop_by_input = False
50
        self.offset_by_input = False
W
wanghaoshuang 已提交
51
        self.attrs = {}
52 53 54
        self.initTestCase()
        if self.crop_by_input:
            self.inputs = {
55
                'X': np.random.random(self.x_shape).astype("float64"),
56
                'Y': np.random.random(self.crop_shape).astype("float64"),
57 58 59 60
            }
        else:
            self.attrs['shape'] = self.crop_shape
            self.inputs = {
61
                'X': np.random.random(self.x_shape).astype("float64"),
62
            }
63 64 65 66
        if self.offset_by_input:
            self.inputs['Offsets'] = np.array(self.offsets).astype('int32')
        else:
            self.attrs['offsets'] = self.offsets
P
PuQing 已提交
67 68 69 70 71
        if self.offsets is None:
            self.offsets = [0] * len(self.crop_shape)
        if self.crop_shape is None:
            self.crop_shape = self.x_shape

72 73 74
        self.outputs = {
            'Out': crop(self.inputs['X'], self.offsets, self.crop_shape)
        }
W
wanghaoshuang 已提交
75

76
    def initTestCase(self):
Z
zhupengyang 已提交
77
        self.x_shape = (10, 10)
78
        self.crop_shape = (2, 2)
79 80 81
        self.offsets = [1, 2]

    def test_check_output(self):
82
        self.check_output(check_eager=True)
83 84

    def test_check_grad_normal(self):
85
        self.check_grad(['X'], 'Out', check_eager=True)
86 87 88 89 90 91 92 93 94 95 96


class TestCase1(TestCropOp):
    def initTestCase(self):
        self.x_shape = (16, 8, 32)
        self.crop_shape = [2, 2, 3]
        self.offsets = [1, 5, 3]


class TestCase2(TestCropOp):
    def initTestCase(self):
Z
zhupengyang 已提交
97 98
        self.x_shape = (15, 8)
        self.crop_shape = [15, 8]
99 100 101 102 103 104 105 106 107 108 109 110 111
        self.offsets = [0, 0]


class TestCase3(TestCropOp):
    def initTestCase(self):
        self.x_shape = (4, 8, 16)
        self.crop_shape = [2, 2, 3]
        self.offsets = [1, 5, 3]
        self.crop_by_input = True


class TestCase4(TestCropOp):
    def initTestCase(self):
Z
zhupengyang 已提交
112 113
        self.x_shape = (10, 10)
        self.crop_shape = [10, 10]
114 115
        self.offsets = [0, 0]
        self.crop_by_input = True
116

W
wanghaoshuang 已提交
117

118 119
class TestCase5(TestCropOp):
    def initTestCase(self):
Z
zhupengyang 已提交
120
        self.x_shape = (3, 4, 10)
121 122 123 124 125 126 127 128 129 130 131 132 133 134
        self.crop_shape = [2, 2, 3]
        self.offsets = [1, 0, 2]
        self.offset_by_input = True


class TestCase6(TestCropOp):
    def initTestCase(self):
        self.x_shape = (10, 9, 14)
        self.crop_shape = [3, 3, 5]
        self.offsets = [3, 5, 4]
        self.crop_by_input = True
        self.offset_by_input = True


P
PuQing 已提交
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
class TestCropNoneOffset(unittest.TestCase):
    def test_crop_none_offset(self):
        x = fluid.data(name="input1", shape=[3, 6, 6], dtype="float32")
        crop_shape = [2, 2, 2]
        crop = paddle.crop(x, crop_shape, None)
        self.assertEqual(crop.shape, (2, 2, 2))


class TestCropNoneShape(unittest.TestCase):
    def test_crop_none_shape(self):
        x = fluid.data(name="input1", shape=[3, 6, 6], dtype="float32")
        crop = paddle.crop(x)
        self.assertEqual(crop.shape, (3, 6, 6))


W
wanghaoshuang 已提交
150
if __name__ == '__main__':
151
    import paddle
152

153
    paddle.enable_static()
W
wanghaoshuang 已提交
154
    unittest.main()