test_sequence_slice_op.py 2.0 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 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 16 17
import unittest
import numpy as np
import sys
18
from .op_test import OpTest
19

C
caoying03 已提交
20

21
class TestSequenceSliceOp(OpTest):
22
    def set_data(self):
23
        self.init_test_case()
24
        # only supprot one level LoD
25 26
        x = np.random.random(self.x_dim).astype('float32')
        lod = self.x_lod
27 28
        offset = np.array(self.offset).astype("int64")
        length = np.array(self.length).astype("int64")
29

30
        self.inputs = {'X': (x, lod), 'Offset': offset, 'Length': length}
C
caoying03 已提交
31
        outs = []  #np.zeros((100, 3, 2)).astype('float32')
32 33
        out_lod = [[]]
        lod_offset = 0
34
        for i in range(len(offset)):
35
            sub_x = x[lod_offset + offset[i, 0]:lod_offset + offset[i, 0] +
C
caoying03 已提交
36
                      length[i, 0], :]
37
            outs.append(sub_x)
38 39
            out_lod[0].append(len(sub_x))
            lod_offset += lod[0][i]
40
        outs = np.concatenate(outs, axis=0)
41
        self.outputs = {'Out': (outs, out_lod)}
42

43 44
    def init_test_case(self):
        self.x_dim = (100, 3, 2)
45
        self.x_lod = [[20, 20, 20, 20, 20]]
46 47
        self.offset = [[1], [2], [3], [4], [5]]
        self.length = [[10], [8], [6], [4], [2]]
48

49
    def setUp(self):
50
        self.op_type = "sequence_slice"
51 52 53 54 55 56 57 58
        self.set_data()

    def test_check_output(self):
        self.check_output()

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

C
caoying03 已提交
59

60 61
if __name__ == '__main__':
    unittest.main()