test_dropout_op.py 2.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.
14 15
import unittest
import numpy as np
16
from op_test import OpTest
17 18


19
class TestDropoutOp(OpTest):
20
    def setUp(self):
21
        self.op_type = "dropout"
22
        self.inputs = {'X': np.random.random((32, 64)).astype("float32")}
23
        self.attrs = {'dropout_prob': 0.0, 'is_test': False}
Y
Yu Yang 已提交
24 25 26 27
        self.outputs = {
            'Out': self.inputs['X'],
            'Mask': np.ones((32, 64)).astype('float32')
        }
28

29 30 31 32 33
    def test_check_output(self):
        self.check_output()

    def test_check_grad_normal(self):
        self.check_grad(['X'], 'Out', max_relative_error=0.05)
34 35


36
class TestDropoutOp2(TestDropoutOp):
37
    def setUp(self):
38
        self.op_type = "dropout"
39
        self.inputs = {'X': np.random.random((32, 64)).astype("float32")}
40
        self.attrs = {'dropout_prob': 1.0, 'is_test': False}
Y
Yu Yang 已提交
41 42 43 44
        self.outputs = {
            'Out': np.zeros((32, 64)).astype('float32'),
            'Mask': np.zeros((32, 64)).astype('float32')
        }
45 46


47
class TestDropoutOp3(TestDropoutOp):
48
    def setUp(self):
49 50
        self.op_type = "dropout"
        self.inputs = {'X': np.random.random((32, 64, 2)).astype("float32")}
51
        self.attrs = {'dropout_prob': 0.0, 'is_test': False}
Y
Yu Yang 已提交
52 53 54 55
        self.outputs = {
            'Out': self.inputs['X'],
            'Mask': np.ones((32, 64, 2)).astype('float32')
        }
56 57


58 59 60 61
class TestDropoutOp4(OpTest):
    def setUp(self):
        self.op_type = "dropout"
        self.inputs = {'X': np.random.random((32, 64)).astype("float32")}
62
        self.attrs = {'dropout_prob': 0.35, 'is_test': True}
63 64 65
        self.outputs = {
            'Out': self.inputs['X'] * (1.0 - self.attrs['dropout_prob'])
        }
66 67 68 69 70 71 72 73 74

    def test_check_output(self):
        self.check_output()


class TestDropoutOp5(OpTest):
    def setUp(self):
        self.op_type = "dropout"
        self.inputs = {'X': np.random.random((32, 64, 3)).astype("float32")}
75
        self.attrs = {'dropout_prob': 0.75, 'is_test': True}
76 77 78
        self.outputs = {
            'Out': self.inputs['X'] * (1.0 - self.attrs['dropout_prob'])
        }
79 80 81 82 83

    def test_check_output(self):
        self.check_output()


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