test_crop_op.py 3.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 15

from __future__ import print_function
D
dzhwinter 已提交
16

W
wanghaoshuang 已提交
17 18
import unittest
import numpy as np
19
from op_test import OpTest
W
wanghaoshuang 已提交
20 21


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


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

68
    def initTestCase(self):
Z
zhupengyang 已提交
69
        self.x_shape = (10, 10)
70
        self.crop_shape = (2, 2)
71 72 73 74
        self.offsets = [1, 2]

    def test_check_output(self):
        self.check_output()
75 76

    def test_check_grad_normal(self):
77
        self.check_grad(['X'], 'Out')
78 79 80 81 82 83 84 85 86 87 88


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 已提交
89 90
        self.x_shape = (15, 8)
        self.crop_shape = [15, 8]
91 92 93 94 95 96 97 98 99 100 101 102 103
        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 已提交
104 105
        self.x_shape = (10, 10)
        self.crop_shape = [10, 10]
106 107
        self.offsets = [0, 0]
        self.crop_by_input = True
108

W
wanghaoshuang 已提交
109

110 111
class TestCase5(TestCropOp):
    def initTestCase(self):
Z
zhupengyang 已提交
112
        self.x_shape = (3, 4, 10)
113 114 115 116 117 118 119 120 121 122 123 124 125 126
        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


W
wanghaoshuang 已提交
127 128
if __name__ == '__main__':
    unittest.main()