test_squeeze_op.py 5.0 KB
Newer Older
1
#   Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14
#
# 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.

15 16
from __future__ import print_function

17 18
import unittest
import numpy as np
19 20
import paddle.fluid as fluid
from paddle.fluid import compiler, Program, program_guard
21
import paddle
22
from op_test import OpTest
23
paddle.enable_static()
24 25 26


# Correct: General.
C
chenweihang 已提交
27
class TestSqueezeOp(OpTest):
28
    def setUp(self):
29
        self.op_type = "squeeze"
C
chenweihang 已提交
30
        self.init_test_case()
31
        self.inputs = {"X": np.random.random(self.ori_shape).astype("float64")}
C
chenweihang 已提交
32
        self.init_attrs()
33
        self.outputs = {"Out": self.inputs["X"].reshape(self.new_shape), }
34 35

    def test_check_output(self):
36
        self.check_output()
37 38 39 40

    def test_check_grad(self):
        self.check_grad(["X"], "Out")

C
chenweihang 已提交
41
    def init_test_case(self):
Z
zhupengyang 已提交
42
        self.ori_shape = (1, 3, 1, 40)
C
chenweihang 已提交
43
        self.axes = (0, 2)
Z
zhupengyang 已提交
44
        self.new_shape = (3, 40)
45

C
chenweihang 已提交
46
    def init_attrs(self):
47
        self.attrs = {"axes": self.axes}
48 49


C
chenweihang 已提交
50 51 52
# Correct: There is mins axis.
class TestSqueezeOp1(TestSqueezeOp):
    def init_test_case(self):
Z
zhupengyang 已提交
53
        self.ori_shape = (1, 3, 1, 40)
C
chenweihang 已提交
54
        self.axes = (0, -2)
Z
zhupengyang 已提交
55
        self.new_shape = (3, 40)
56 57 58


# Correct: No axes input.
C
chenweihang 已提交
59 60
class TestSqueezeOp2(TestSqueezeOp):
    def init_test_case(self):
Z
zhupengyang 已提交
61
        self.ori_shape = (1, 20, 1, 5)
C
chenweihang 已提交
62
        self.axes = ()
Z
zhupengyang 已提交
63
        self.new_shape = (20, 5)
64 65 66


# Correct: Just part of axes be squeezed. 
C
chenweihang 已提交
67 68
class TestSqueezeOp3(TestSqueezeOp):
    def init_test_case(self):
Z
zhupengyang 已提交
69
        self.ori_shape = (6, 1, 5, 1, 4, 1)
C
chenweihang 已提交
70
        self.axes = (1, -1)
Z
zhupengyang 已提交
71
        self.new_shape = (6, 5, 1, 4)
72 73


L
Leo Chen 已提交
74 75 76 77 78 79 80 81
# Correct: The demension of axis is not of size 1 remains unchanged.
class TestSqueezeOp4(TestSqueezeOp):
    def init_test_case(self):
        self.ori_shape = (6, 1, 5, 1, 4, 1)
        self.axes = (1, 2)
        self.new_shape = (6, 5, 1, 4, 1)


82
class TestSqueezeOpError(unittest.TestCase):
83 84 85 86 87 88 89 90 91 92 93 94 95 96
    def test_errors(self):
        with program_guard(Program(), Program()):
            # The input type of softmax_op must be Variable.
            x1 = fluid.create_lod_tensor(
                np.array([[-1]]), [[1]], fluid.CPUPlace())
            self.assertRaises(TypeError, fluid.layers.squeeze, x1)
            # The input axes of squeeze must be list.
            x2 = fluid.layers.data(name='x2', shape=[4], dtype="int32")
            self.assertRaises(TypeError, fluid.layers.squeeze, x2, axes=0)
            # The input dtype of squeeze not support float16.
            x3 = fluid.layers.data(name='x3', shape=[4], dtype="float16")
            self.assertRaises(TypeError, fluid.layers.squeeze, x3, axes=0)


97 98 99 100 101
class API_TestSqueeze(unittest.TestCase):
    def test_out(self):
        with fluid.program_guard(fluid.Program(), fluid.Program()):
            data1 = fluid.layers.data(
                'data1', shape=[-1, 1, 10], dtype='float64')
L
Leo Chen 已提交
102
            result_squeeze = paddle.squeeze(data1, axis=[1])
103 104 105 106 107 108 109 110 111 112 113 114 115 116
            place = fluid.CPUPlace()
            exe = fluid.Executor(place)
            input1 = np.random.random([5, 1, 10]).astype('float64')
            result, = exe.run(feed={"data1": input1},
                              fetch_list=[result_squeeze])
            expected_result = np.squeeze(input1, axis=1)
            self.assertTrue(np.allclose(expected_result, result))


class API_TestDygraphSqueeze(unittest.TestCase):
    def test_out(self):
        with fluid.dygraph.guard():
            input_1 = np.random.random([5, 1, 10]).astype("int32")
            input = fluid.dygraph.to_variable(input_1)
L
Leo Chen 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
            output = paddle.squeeze(input, axis=[1])
            out_np = output.numpy()
            expected_out = np.squeeze(input_1, axis=1)
            self.assertTrue(np.allclose(expected_out, out_np))

    def test_axis_not_list(self):
        with fluid.dygraph.guard():
            input_1 = np.random.random([5, 1, 10]).astype("int32")
            input = fluid.dygraph.to_variable(input_1)
            output = paddle.squeeze(input, axis=1)
            out_np = output.numpy()
            expected_out = np.squeeze(input_1, axis=1)
            self.assertTrue(np.allclose(expected_out, out_np))

    def test_dimension_not_1(self):
        with fluid.dygraph.guard():
            input_1 = np.random.random([5, 1, 10]).astype("int32")
            input = fluid.dygraph.to_variable(input_1)
            output = paddle.squeeze(input, axis=(1, 2))
136 137 138 139 140
            out_np = output.numpy()
            expected_out = np.squeeze(input_1, axis=1)
            self.assertTrue(np.allclose(expected_out, out_np))


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