test_sequence_reshape.py 3.3 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
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
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# 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
import sys
16
import unittest
17

18
import numpy as np
19

G
GGBond8488 已提交
20 21
import paddle

22
sys.path.append("../")
23
from op_test import OpTest
24

25 26
import paddle.fluid as fluid

27 28

class TestSequenceReshape(OpTest):
29 30 31
    def init_data(self):
        self.dimension = 12
        self.x_lod = [[4, 1, 3, 3]]
32
        self.x = np.random.uniform(0.1, 1, [11, 24]).astype('float64')
33

34
    def setUp(self):
35
        self.init_data()
36
        self.op_type = 'sequence_reshape'
37 38 39
        self.inputs = {'X': (self.x, self.x_lod)}
        self.attrs = {'new_dim': self.dimension}
        out, out_lod = self.compute_output(self.x, self.x_lod, self.dimension)
40 41 42 43
        self.outputs = {'Out': (out, out_lod)}

    def compute_output(self, x, x_lod, dimension):
        x_width = x.shape[1]
44
        out_lod = [[]]
45
        for i in range(len(x_lod[0])):
46
            seq_len = x_lod[0][i]
47 48
            offset = (seq_len * x_width) / dimension
            assert int(offset) * dimension == seq_len * x_width
49
            out_lod[0].append(int(offset))
50
        out = np.zeros(shape=(sum(out_lod[0]), dimension)).astype('float64')
Y
yangyaming 已提交
51
        out.ravel()[:] = x.ravel()[:]
52 53 54 55 56 57 58 59 60 61
        return out, out_lod

    def test_check_output(self):
        self.check_output()

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


class TestSequenceReshape_reduce(TestSequenceReshape):
62 63 64
    def init_data(self):
        self.dimension = 24
        self.x_lod = [[4, 2, 2, 4]]
65
        self.x = np.random.uniform(0.1, 1, [12, 12]).astype('float64')
66 67


Y
yangyaming 已提交
68
class TestSequenceReshape_same(TestSequenceReshape):
69 70 71
    def init_data(self):
        self.dimension = 12
        self.x_lod = [[4, 2, 2, 4]]
72
        self.x = np.random.uniform(0.1, 1, [12, 12]).astype('float64')
Y
yangyaming 已提交
73 74


75 76 77 78
class TestSequenceReshape_reduce_seq_len0(TestSequenceReshape):
    def init_data(self):
        self.dimension = 24
        self.x_lod = [[0, 6, 0, 2, 4]]
79
        self.x = np.random.uniform(0.1, 1, [12, 12]).astype('float64')
Y
yangyaming 已提交
80

81 82 83 84 85

class TestSequenceReshape_reduce_seq_len0_case1(TestSequenceReshape):
    def init_data(self):
        self.dimension = 24
        self.x_lod = [[0, 2, 8, 2, 0]]
86
        self.x = np.random.uniform(0.1, 1, [12, 12]).astype('float64')
Y
yangyaming 已提交
87 88


89 90 91 92 93 94 95 96 97
class TestSequenceReshapeOpError(unittest.TestCase):
    def test_error(self):
        def test_variable():
            x = np.random.random((2, 4)).astype("float32")
            fluid.layers.sequence_reshape(x=x, new_dim=4)

        self.assertRaises(TypeError, test_variable)

        def test_dtype():
G
GGBond8488 已提交
98
            x1 = paddle.static.data(
99
                name='x1',
G
GGBond8488 已提交
100
                shape=[-1, 2, 6],
101 102 103
                dtype='float16',
                lod_level=1,
            )
104 105 106 107 108
            fluid.layers.sequence_reshape(x=x1, new_dim=4)

        self.assertRaises(TypeError, test_dtype)


109 110
if __name__ == '__main__':
    unittest.main()