test_sequence_slice_op.py 2.0 KB
Newer Older
D
dzhwinter 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#  Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserve.
#
#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.
14 15 16 17 18
import unittest
import numpy as np
import sys
from op_test import OpTest

C
caoying03 已提交
19

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

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

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

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

    def test_check_output(self):
        self.check_output()

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

C
caoying03 已提交
58

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