test_sequence_slice_op.py 1.4 KB
Newer Older
1 2 3 4 5
import unittest
import numpy as np
import sys
from op_test import OpTest

C
caoying03 已提交
6

7
class TestSequenceSliceOp(OpTest):
8
    def set_data(self):
9
        self.init_test_case()
10
        # only supprot one level LoD
11 12
        x = np.random.random(self.x_dim).astype('float32')
        lod = self.x_lod
13 14
        offset = np.array(self.offset).astype("int64")
        length = np.array(self.length).astype("int64")
15

16
        self.inputs = {'X': (x, lod), 'Offset': offset, 'Length': length}
C
caoying03 已提交
17
        outs = []  #np.zeros((100, 3, 2)).astype('float32')
18 19
        out_lod = [[0]]
        out_lod_offset = 0
20
        for i in range(len(offset)):
C
caoying03 已提交
21 22
            sub_x = x[lod[0][i] + offset[i, 0]:lod[0][i] + offset[i, 0] +
                      length[i, 0], :]
23
            out_lod_offset = out_lod_offset + len(sub_x)
24
            outs.append(sub_x)
25
            out_lod[0].append(out_lod_offset)
26
        outs = np.concatenate(outs, axis=0)
27
        self.outputs = {'Out': (outs, out_lod)}
28

29 30 31
    def init_test_case(self):
        self.x_dim = (100, 3, 2)
        self.x_lod = [[0, 20, 40, 60, 80, 100]]
32 33
        self.offset = [[1], [2], [3], [4], [5]]
        self.length = [[10], [8], [6], [4], [2]]
34

35
    def setUp(self):
36
        self.op_type = "sequence_slice"
37 38 39 40 41 42 43 44
        self.set_data()

    def test_check_output(self):
        self.check_output()

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

C
caoying03 已提交
45

46 47
if __name__ == '__main__':
    unittest.main()