test_momentum_op.py 2.1 KB
Newer Older
S
sidgoyal78 已提交
1 2 3 4 5
import unittest
import numpy as np
from op_test import OpTest


K
kavyasrinet 已提交
6
class TestMomentumOp1(OpTest):
S
sidgoyal78 已提交
7 8 9 10 11 12 13 14
    def setUp(self):
        self.op_type = "momentum"

        param = np.random.random((123, 321)).astype("float32")
        grad = np.random.random((123, 321)).astype("float32")
        velocity = np.zeros((123, 321)).astype("float32")
        learning_rate = np.array([0.001]).astype("float32")
        mu = 0.0001
K
kavyasrinet 已提交
15
        use_nesterov = False
S
sidgoyal78 已提交
16 17 18 19 20 21 22 23 24 25

        self.inputs = {
            'Param': param,
            'Grad': grad,
            'Velocity': velocity,
            'LearningRate': learning_rate
        }

        self.attrs = {'mu': mu}

S
sidgoyal78 已提交
26
        velocity_out = mu * velocity + grad
K
kavyasrinet 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
        if use_nesterov:
            param_out = param - grad * learning_rate + \
                        velocity_out * mu * learning_rate
        else:
            param_out = param - learning_rate * velocity_out

        self.outputs = {'ParamOut': param_out, 'VelocityOut': velocity_out}

    def test_check_output(self):
        self.check_output()


class TestMomentumOp2(OpTest):
    '''Test Momentum with defaukt values for attributes
    '''

    def setUp(self):
        self.op_type = "momentum"

        param = np.random.random((123, 321)).astype("float32")
        grad = np.random.random((123, 321)).astype("float32")
        velocity = np.zeros((123, 321)).astype("float32")
        learning_rate = np.array([0.001]).astype("float32")
        mu = 0.0001
        use_nesterov = True

        self.inputs = {
            'Param': param,
            'Grad': grad,
            'Velocity': velocity,
            'LearningRate': learning_rate
        }

        self.attrs = {'mu': mu, 'useNesterov': use_nesterov}

        velocity_out = mu * velocity + grad
        if use_nesterov:
            param_out = param - grad * learning_rate + \
                        velocity_out * mu * learning_rate
        else:
            param_out = param - learning_rate * velocity_out
S
sidgoyal78 已提交
68 69 70 71 72 73 74 75 76

        self.outputs = {'ParamOut': param_out, 'VelocityOut': velocity_out}

    def test_check_output(self):
        self.check_output()


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