You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.0 KiB
62 lines
2.0 KiB
7 years ago
|
# Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
||
7 years ago
|
#
|
||
7 years ago
|
# 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
|
||
7 years ago
|
#
|
||
7 years ago
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
7 years ago
|
#
|
||
7 years ago
|
# 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.
|
||
|
|
||
7 years ago
|
import unittest
|
||
|
import numpy as np
|
||
|
import sys
|
||
|
from op_test import OpTest
|
||
|
|
||
7 years ago
|
|
||
7 years ago
|
class TestSequenceSliceOp(OpTest):
|
||
7 years ago
|
def set_data(self):
|
||
7 years ago
|
self.init_test_case()
|
||
7 years ago
|
# only supprot one level LoD
|
||
7 years ago
|
x = np.random.random(self.x_dim).astype('float32')
|
||
|
lod = self.x_lod
|
||
7 years ago
|
offset = np.array(self.offset).astype("int64")
|
||
|
length = np.array(self.length).astype("int64")
|
||
7 years ago
|
|
||
7 years ago
|
self.inputs = {'X': (x, lod), 'Offset': offset, 'Length': length}
|
||
7 years ago
|
outs = [] #np.zeros((100, 3, 2)).astype('float32')
|
||
7 years ago
|
out_lod = [[0]]
|
||
|
out_lod_offset = 0
|
||
7 years ago
|
for i in range(len(offset)):
|
||
7 years ago
|
sub_x = x[lod[0][i] + offset[i, 0]:lod[0][i] + offset[i, 0] +
|
||
|
length[i, 0], :]
|
||
7 years ago
|
out_lod_offset = out_lod_offset + len(sub_x)
|
||
7 years ago
|
outs.append(sub_x)
|
||
7 years ago
|
out_lod[0].append(out_lod_offset)
|
||
7 years ago
|
outs = np.concatenate(outs, axis=0)
|
||
7 years ago
|
self.outputs = {'Out': (outs, out_lod)}
|
||
7 years ago
|
|
||
7 years ago
|
def init_test_case(self):
|
||
|
self.x_dim = (100, 3, 2)
|
||
|
self.x_lod = [[0, 20, 40, 60, 80, 100]]
|
||
7 years ago
|
self.offset = [[1], [2], [3], [4], [5]]
|
||
|
self.length = [[10], [8], [6], [4], [2]]
|
||
7 years ago
|
|
||
7 years ago
|
def setUp(self):
|
||
7 years ago
|
self.op_type = "sequence_slice"
|
||
7 years ago
|
self.set_data()
|
||
|
|
||
|
def test_check_output(self):
|
||
|
self.check_output()
|
||
|
|
||
|
def test_check_grad(self):
|
||
|
self.check_grad(['X'], 'Out')
|
||
|
|
||
7 years ago
|
|
||
7 years ago
|
if __name__ == '__main__':
|
||
|
unittest.main()
|