test_prelu_op.py 1.7 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.
Z
zchen0211 已提交
14 15 16 17 18
import unittest
import numpy as np
from op_test import OpTest


Z
zchen0211 已提交
19
class PReluTest(OpTest):
Z
zchen0211 已提交
20 21
    def setUp(self):
        self.op_type = "prelu"
Z
zchen0211 已提交
22
        x_np = np.random.normal(size=(10, 10)).astype("float32")
Y
Yu Yang 已提交
23 24 25 26 27 28 29 30

        for pos, val in np.ndenumerate(x_np):
            # Since zero point in prelu is not differentiable, avoid randomize
            # zero.
            while abs(val) < 1e-3:
                x_np[pos] = np.random.normal()
                val = x_np[pos]

Z
zchen0211 已提交
31 32
        x_np_sign = np.sign(x_np)
        x_np = x_np_sign * np.maximum(x_np, .005)
Y
Yu Yang 已提交
33
        alpha_np = np.array([.1], dtype="float32")
Z
zchen0211 已提交
34
        self.inputs = {'X': x_np, 'Alpha': alpha_np}
Z
zchen0211 已提交
35
        out_np = np.maximum(self.inputs['X'], 0.)
Z
zchen0211 已提交
36 37
        out_np = out_np + np.minimum(self.inputs['X'],
                                     0.) * self.inputs['Alpha']
Z
zchen0211 已提交
38 39
        assert out_np is not self.inputs['X']
        self.outputs = {'Out': out_np}
Z
zchen0211 已提交
40

41
    def test_check_output(self):
Z
zchen0211 已提交
42 43
        self.check_output()

44
    def test_check_grad(self):
Z
zchen0211 已提交
45 46 47 48 49
        self.check_grad(['X'], 'Out')


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