forked from 626_privacy/tensorflow_privacy
c7ca8092fb
PiperOrigin-RevId: 262414086
204 lines
7.6 KiB
Python
204 lines
7.6 KiB
Python
# Copyright 2019, The TensorFlow Authors.
|
|
#
|
|
# 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.
|
|
"""Tests for differentially private optimizers."""
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
from absl.testing import parameterized
|
|
import mock
|
|
import numpy as np
|
|
import tensorflow as tf
|
|
|
|
from privacy.optimizers import dp_optimizer_vectorized
|
|
from privacy.optimizers.dp_optimizer_vectorized import VectorizedDPAdagrad
|
|
from privacy.optimizers.dp_optimizer_vectorized import VectorizedDPAdam
|
|
from privacy.optimizers.dp_optimizer_vectorized import VectorizedDPSGD
|
|
|
|
|
|
class DPOptimizerTest(tf.test.TestCase, parameterized.TestCase):
|
|
|
|
def _loss(self, val0, val1):
|
|
"""Loss function that is minimized at the mean of the input points."""
|
|
return 0.5 * tf.reduce_sum(tf.squared_difference(val0, val1), axis=1)
|
|
|
|
# Parameters for testing: optimizer, num_microbatches, expected answer.
|
|
@parameterized.named_parameters(
|
|
('DPGradientDescent 1', VectorizedDPSGD, 1, [-2.5, -2.5]),
|
|
('DPGradientDescent 2', VectorizedDPSGD, 2, [-2.5, -2.5]),
|
|
('DPGradientDescent 4', VectorizedDPSGD, 4, [-2.5, -2.5]),
|
|
('DPAdagrad 1', VectorizedDPAdagrad, 1, [-2.5, -2.5]),
|
|
('DPAdagrad 2', VectorizedDPAdagrad, 2, [-2.5, -2.5]),
|
|
('DPAdagrad 4', VectorizedDPAdagrad, 4, [-2.5, -2.5]),
|
|
('DPAdam 1', VectorizedDPAdam, 1, [-2.5, -2.5]),
|
|
('DPAdam 2', VectorizedDPAdam, 2, [-2.5, -2.5]),
|
|
('DPAdam 4', VectorizedDPAdam, 4, [-2.5, -2.5]))
|
|
def testBaseline(self, cls, num_microbatches, expected_answer):
|
|
with self.cached_session() as sess:
|
|
var0 = tf.Variable([1.0, 2.0])
|
|
data0 = tf.Variable([[3.0, 4.0], [5.0, 6.0], [7.0, 8.0], [-1.0, 0.0]])
|
|
|
|
opt = cls(
|
|
l2_norm_clip=1.0e9,
|
|
noise_multiplier=0.0,
|
|
num_microbatches=num_microbatches,
|
|
learning_rate=2.0)
|
|
|
|
self.evaluate(tf.global_variables_initializer())
|
|
# Fetch params to validate initial values
|
|
self.assertAllClose([1.0, 2.0], self.evaluate(var0))
|
|
|
|
# Expected gradient is sum of differences divided by number of
|
|
# microbatches.
|
|
gradient_op = opt.compute_gradients(self._loss(data0, var0), [var0])
|
|
grads_and_vars = sess.run(gradient_op)
|
|
self.assertAllCloseAccordingToType(expected_answer, grads_and_vars[0][0])
|
|
|
|
@parameterized.named_parameters(
|
|
('DPGradientDescent', VectorizedDPSGD),
|
|
('DPAdagrad', VectorizedDPAdagrad),
|
|
('DPAdam', VectorizedDPAdam))
|
|
def testClippingNorm(self, cls):
|
|
with self.cached_session() as sess:
|
|
var0 = tf.Variable([0.0, 0.0])
|
|
data0 = tf.Variable([[3.0, 4.0], [6.0, 8.0]])
|
|
|
|
opt = cls(l2_norm_clip=1.0,
|
|
noise_multiplier=0.,
|
|
num_microbatches=1,
|
|
learning_rate=2.0)
|
|
|
|
self.evaluate(tf.global_variables_initializer())
|
|
# Fetch params to validate initial values
|
|
self.assertAllClose([0.0, 0.0], self.evaluate(var0))
|
|
|
|
# Expected gradient is sum of differences.
|
|
gradient_op = opt.compute_gradients(self._loss(data0, var0), [var0])
|
|
grads_and_vars = sess.run(gradient_op)
|
|
self.assertAllCloseAccordingToType([-0.6, -0.8], grads_and_vars[0][0])
|
|
|
|
@parameterized.named_parameters(
|
|
('DPGradientDescent', VectorizedDPSGD),
|
|
('DPAdagrad', VectorizedDPAdagrad),
|
|
('DPAdam', VectorizedDPAdam))
|
|
def testNoiseMultiplier(self, cls):
|
|
with self.cached_session() as sess:
|
|
var0 = tf.Variable([0.0])
|
|
data0 = tf.Variable([[0.0]])
|
|
|
|
opt = cls(l2_norm_clip=4.0,
|
|
noise_multiplier=8.0,
|
|
num_microbatches=1,
|
|
learning_rate=2.0)
|
|
|
|
self.evaluate(tf.global_variables_initializer())
|
|
# Fetch params to validate initial values
|
|
self.assertAllClose([0.0], self.evaluate(var0))
|
|
|
|
gradient_op = opt.compute_gradients(self._loss(data0, var0), [var0])
|
|
grads = []
|
|
for _ in range(1000):
|
|
grads_and_vars = sess.run(gradient_op)
|
|
grads.append(grads_and_vars[0][0])
|
|
|
|
# Test standard deviation is close to l2_norm_clip * noise_multiplier.
|
|
self.assertNear(np.std(grads), 4.0 * 8.0, 0.5)
|
|
|
|
@mock.patch.object(tf, 'logging')
|
|
def testComputeGradientsOverrideWarning(self, mock_logging):
|
|
|
|
class SimpleOptimizer(tf.train.Optimizer):
|
|
|
|
def compute_gradients(self):
|
|
return 0
|
|
|
|
dp_optimizer_vectorized.make_vectorized_optimizer_class(SimpleOptimizer)
|
|
mock_logging.warning.assert_called_once_with(
|
|
'WARNING: Calling make_optimizer_class() on class %s that overrides '
|
|
'method compute_gradients(). Check to ensure that '
|
|
'make_optimizer_class() does not interfere with overridden version.',
|
|
'SimpleOptimizer')
|
|
|
|
def testEstimator(self):
|
|
"""Tests that DP optimizers work with tf.estimator."""
|
|
|
|
def linear_model_fn(features, labels, mode):
|
|
preds = tf.keras.layers.Dense(
|
|
1, activation='linear', name='dense').apply(features['x'])
|
|
|
|
vector_loss = tf.squared_difference(labels, preds)
|
|
scalar_loss = tf.reduce_mean(vector_loss)
|
|
optimizer = VectorizedDPSGD(
|
|
l2_norm_clip=1.0,
|
|
noise_multiplier=0.,
|
|
num_microbatches=1,
|
|
learning_rate=1.0)
|
|
global_step = tf.train.get_global_step()
|
|
train_op = optimizer.minimize(loss=vector_loss, global_step=global_step)
|
|
return tf.estimator.EstimatorSpec(
|
|
mode=mode, loss=scalar_loss, train_op=train_op)
|
|
|
|
linear_regressor = tf.estimator.Estimator(model_fn=linear_model_fn)
|
|
true_weights = np.array([[-5], [4], [3], [2]]).astype(np.float32)
|
|
true_bias = 6.0
|
|
train_data = np.random.normal(scale=3.0, size=(200, 4)).astype(np.float32)
|
|
|
|
train_labels = np.matmul(train_data,
|
|
true_weights) + true_bias + np.random.normal(
|
|
scale=0.1, size=(200, 1)).astype(np.float32)
|
|
|
|
train_input_fn = tf.estimator.inputs.numpy_input_fn(
|
|
x={'x': train_data},
|
|
y=train_labels,
|
|
batch_size=20,
|
|
num_epochs=10,
|
|
shuffle=True)
|
|
linear_regressor.train(input_fn=train_input_fn, steps=100)
|
|
self.assertAllClose(
|
|
linear_regressor.get_variable_value('dense/kernel'),
|
|
true_weights,
|
|
atol=1.0)
|
|
|
|
@parameterized.named_parameters(
|
|
('DPGradientDescent', VectorizedDPSGD),
|
|
('DPAdagrad', VectorizedDPAdagrad),
|
|
('DPAdam', VectorizedDPAdam))
|
|
def testDPGaussianOptimizerClass(self, cls):
|
|
with self.cached_session() as sess:
|
|
var0 = tf.Variable([0.0])
|
|
data0 = tf.Variable([[0.0]])
|
|
|
|
opt = cls(
|
|
l2_norm_clip=4.0,
|
|
noise_multiplier=2.0,
|
|
num_microbatches=1,
|
|
learning_rate=2.0)
|
|
|
|
self.evaluate(tf.global_variables_initializer())
|
|
# Fetch params to validate initial values
|
|
self.assertAllClose([0.0], self.evaluate(var0))
|
|
|
|
gradient_op = opt.compute_gradients(self._loss(data0, var0), [var0])
|
|
grads = []
|
|
for _ in range(1000):
|
|
grads_and_vars = sess.run(gradient_op)
|
|
grads.append(grads_and_vars[0][0])
|
|
|
|
# Test standard deviation is close to l2_norm_clip * noise_multiplier.
|
|
self.assertNear(np.std(grads), 2.0 * 4.0, 0.5)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
tf.test.main()
|