test_dpsgd_op.py 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#   Copyright (c) 2018 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.

import unittest
16

17
import numpy as np
W
wanghuancoder 已提交
18
from eager_op_test import OpTest
19 20 21 22


class TestDpsgdOp(OpTest):
    def setUp(self):
23
        '''Test Dpsgd Operator with supplied attributes'''
24 25 26 27 28 29 30 31 32 33 34 35
        self.op_type = "dpsgd"
        param = np.random.uniform(-1, 1, (102, 105)).astype("float32")
        grad = np.random.uniform(-1, 1, (102, 105)).astype("float32")

        learning_rate = 0.001
        clip = 10000.0
        batch_size = 16.0
        sigma = 0.0

        self.inputs = {
            'Param': param,
            'Grad': grad,
36
            'LearningRate': np.array([learning_rate]).astype("float32"),
37 38 39 40 41 42 43 44 45
        }

        self.attrs = {'clip': clip, 'batch_size': batch_size, 'sigma': sigma}

        param_out = dpsgd_step(self.inputs, self.attrs)

        self.outputs = {'ParamOut': param_out}

    def test_check_output(self):
W
wanghuancoder 已提交
46
        self.check_output()
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70


def dpsgd_step(inputs, attributes):
    '''
    Simulate one step of the dpsgd optimizer
    :param inputs: dict of inputs
    :param attributes: dict of attributes
    :return tuple: tuple of output param, moment, inf_norm and
    beta1 power accumulator
    '''
    param = inputs['Param']
    grad = inputs['Grad']
    lr = inputs['LearningRate']

    clip = attributes['clip']
    batch_size = attributes['batch_size']
    sigma = attributes['sigma']

    param_out = param - lr * grad

    return param_out


if __name__ == "__main__":
71
    import paddle
72

73
    paddle.enable_static()
74
    unittest.main()