test_crop_op.py 4.6 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
import unittest
16

W
wanghaoshuang 已提交
17
import numpy as np
W
wanghuancoder 已提交
18
from eager_op_test import OpTest
19

P
PuQing 已提交
20 21
import paddle
import paddle.fluid as fluid
W
wanghaoshuang 已提交
22 23


24 25 26 27 28 29 30 31 32 33 34 35 36 37
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):
38 39 40 41 42
                selected = (
                    selected
                    and index[j] >= offset
                    and index[j] < crop_shape[j] + offset
                )
43 44 45 46 47
            if selected:
                result.append(value)
    return np.array(result).reshape(crop_shape)


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

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

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

    def test_check_output(self):
W
wanghuancoder 已提交
84
        self.check_output()
85 86

    def test_check_grad_normal(self):
W
wanghuancoder 已提交
87
        self.check_grad(['X'], 'Out')
88 89 90 91 92 93 94 95 96 97 98


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 已提交
99 100
        self.x_shape = (15, 8)
        self.crop_shape = [15, 8]
101 102 103 104 105 106 107 108 109 110 111 112 113
        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 已提交
114 115
        self.x_shape = (10, 10)
        self.crop_shape = [10, 10]
116 117
        self.offsets = [0, 0]
        self.crop_by_input = True
118

W
wanghaoshuang 已提交
119

120 121
class TestCase5(TestCropOp):
    def initTestCase(self):
Z
zhupengyang 已提交
122
        self.x_shape = (3, 4, 10)
123 124 125 126 127 128 129 130 131 132 133 134 135 136
        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 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
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))


152 153 154 155 156 157 158
class TestCropError(unittest.TestCase):
    def test_neg_offset_error(self):
        with self.assertRaises(ValueError):
            x = fluid.data(name='input2', shape=[1], dtype="float32")
            out = paddle.crop(x, offsets=[-1])


W
wanghaoshuang 已提交
159
if __name__ == '__main__':
160
    paddle.enable_static()
W
wanghaoshuang 已提交
161
    unittest.main()