test_cross_entropy2_op.py 3.4 KB
Newer Older
S
sneaxiy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# 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.

from op_test import OpTest
import unittest
import numpy as np
import six


class CrossEntropy2OpTestBase(OpTest):
22

S
sneaxiy 已提交
23
    def initParameters(self):
24
        return [32, 64], 'float64', -100, False
S
sneaxiy 已提交
25 26 27

    def calc_output(self, logits, label, ignore_index):
        ret = np.zeros(shape=label.shape, dtype=logits.dtype)
S
sneaxiy 已提交
28
        match_x = np.zeros(shape=label.shape, dtype=logits.dtype)
S
sneaxiy 已提交
29 30 31
        for idx in six.moves.range(label.shape[0]):
            if label[idx] == ignore_index:
                continue
S
sneaxiy 已提交
32 33 34
            match_x[idx] = logits[idx][label[idx]]
            ret[idx] = -np.log(match_x[idx])
        return ret, match_x
S
sneaxiy 已提交
35 36

    def setUp(self):
37 38
        self.shape, self.dtype, self.ignore_index, self.drop_last_dim = self.initParameters(
        )
S
sneaxiy 已提交
39 40 41 42
        self.op_type = 'cross_entropy2'
        feature_size = int(self.shape[-1])
        batch_size = int(np.prod(self.shape) / feature_size)
        logits = (np.random.random(size=self.shape) + 1).astype(self.dtype)
43 44 45 46 47
        label_shape = self.shape[
            0:-1] if self.drop_last_dim else self.shape[0:-1] + [1]
        label = np.random.random_integers(low=0,
                                          high=feature_size - 1,
                                          size=label_shape).astype('int64')
S
sneaxiy 已提交
48
        outputs, match_x = self.calc_output(
S
sneaxiy 已提交
49 50 51
            np.reshape(logits, [batch_size, feature_size]),
            np.reshape(label, [batch_size, 1]), self.ignore_index)
        self.inputs = {'X': logits, 'Label': label}
52
        out_shape = label_shape
S
sneaxiy 已提交
53
        self.outputs = {
54 55
            'Y': np.reshape(outputs, out_shape),
            'MatchX': np.reshape(match_x, self.shape[:-1] + [1]),
56
            'XShape': np.zeros(shape=logits.shape, dtype=logits.dtype)
S
sneaxiy 已提交
57 58 59 60 61 62 63
        }
        self.attrs = {'ignore_index': self.ignore_index}

    def test_check_output(self):
        self.check_output(no_check_set=['XShape'])

    def test_check_grad(self):
64 65 66
        self.check_grad(inputs_to_check=['X'],
                        output_names=['Y'],
                        no_grad_set=['XShape', 'MatchX', 'Label'])
S
sneaxiy 已提交
67 68 69


class CrossEntropy2OpTest2(CrossEntropy2OpTestBase):
70

S
sneaxiy 已提交
71
    def initParameters(self):
72 73 74 75
        return [32, 64], 'float64', 3, False


class CrossEntropy2OpTest2RemoveLastDim(CrossEntropy2OpTestBase):
76

77 78
    def initParameters(self):
        return [32, 64], 'float64', 3, True
S
sneaxiy 已提交
79 80 81


class CrossEntropy2OpTest3(CrossEntropy2OpTestBase):
82

S
sneaxiy 已提交
83
    def initParameters(self):
84
        return [4, 8, 16, 32], 'float64', -100, False
85 86 87


class CrossEntropy2OpTest3RemoveLastDim(CrossEntropy2OpTestBase):
88

89
    def initParameters(self):
90
        return [4, 8, 16, 32], 'float64', -100, True
S
sneaxiy 已提交
91 92 93


class CrossEntropy2OpTest4(CrossEntropy2OpTestBase):
94

S
sneaxiy 已提交
95
    def initParameters(self):
96
        return [4, 8, 16, 32], 'float64', 3, False
S
sneaxiy 已提交
97 98 99 100


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