forked from 626_privacy/tensorflow_privacy
e566967ff6
The global state for DP query is intended for aspects of the query that change across samples under the query's own control. It was therefore unnecessary to wrap "l2_norm_clip" and "sum_stddev" in the namedtuple _GlobalState for the basic GaussianQuery classes. PiperOrigin-RevId: 237528962
204 lines
6.7 KiB
Python
204 lines
6.7 KiB
Python
# Copyright 2018, 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.
|
|
|
|
"""Implements DPQuery interface for Gaussian average queries.
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
import tensorflow as tf
|
|
|
|
from privacy.optimizers import dp_query
|
|
|
|
nest = tf.contrib.framework.nest
|
|
|
|
|
|
class GaussianSumQuery(dp_query.DPQuery):
|
|
"""Implements DPQuery interface for Gaussian sum queries.
|
|
|
|
Accumulates clipped vectors, then adds Gaussian noise to the sum.
|
|
"""
|
|
|
|
def __init__(self, l2_norm_clip, stddev, ledger=None):
|
|
"""Initializes the GaussianSumQuery.
|
|
|
|
Args:
|
|
l2_norm_clip: The clipping norm to apply to the global norm of each
|
|
record.
|
|
stddev: The stddev of the noise added to the sum.
|
|
ledger: The privacy ledger to which queries should be recorded.
|
|
"""
|
|
self._l2_norm_clip = tf.to_float(l2_norm_clip)
|
|
self._stddev = tf.to_float(stddev)
|
|
self._ledger = ledger
|
|
|
|
def initial_global_state(self):
|
|
"""Returns the initial global state for the GaussianSumQuery."""
|
|
return None
|
|
|
|
def derive_sample_params(self, global_state):
|
|
"""Given the global state, derives parameters to use for the next sample.
|
|
|
|
Args:
|
|
global_state: The current global state.
|
|
|
|
Returns:
|
|
Parameters to use to process records in the next sample.
|
|
"""
|
|
return self._l2_norm_clip
|
|
|
|
def initial_sample_state(self, global_state, tensors):
|
|
"""Returns an initial state to use for the next sample.
|
|
|
|
Args:
|
|
global_state: The current global state.
|
|
tensors: A structure of tensors used as a template to create the initial
|
|
sample state.
|
|
|
|
Returns: An initial sample state.
|
|
"""
|
|
if self._ledger:
|
|
dependencies = [
|
|
self._ledger.record_sum_query(self._l2_norm_clip, self._stddev)
|
|
]
|
|
else:
|
|
dependencies = []
|
|
with tf.control_dependencies(dependencies):
|
|
return nest.map_structure(tf.zeros_like, tensors)
|
|
|
|
def accumulate_record(self, params, sample_state, record):
|
|
"""Accumulates a single record into the sample state.
|
|
|
|
Args:
|
|
params: The parameters for the sample.
|
|
sample_state: The current sample state.
|
|
record: The record to accumulate.
|
|
|
|
Returns:
|
|
The updated sample state.
|
|
"""
|
|
l2_norm_clip = params
|
|
record_as_list = nest.flatten(record)
|
|
clipped_as_list, _ = tf.clip_by_global_norm(record_as_list, l2_norm_clip)
|
|
clipped = nest.pack_sequence_as(record, clipped_as_list)
|
|
return nest.map_structure(tf.add, sample_state, clipped)
|
|
|
|
def get_noised_result(self, sample_state, global_state):
|
|
"""Gets noised sum after all records of sample have been accumulated.
|
|
|
|
Args:
|
|
sample_state: The sample state after all records have been accumulated.
|
|
global_state: The global state.
|
|
|
|
Returns:
|
|
A tuple (estimate, new_global_state) where "estimate" is the estimated
|
|
sum of the records and "new_global_state" is the updated global state.
|
|
"""
|
|
def add_noise(v):
|
|
return v + tf.random_normal(tf.shape(v), stddev=self._stddev)
|
|
|
|
return nest.map_structure(add_noise, sample_state), global_state
|
|
|
|
|
|
class GaussianAverageQuery(dp_query.DPQuery):
|
|
"""Implements DPQuery interface for Gaussian average queries.
|
|
|
|
Accumulates clipped vectors, adds Gaussian noise, and normalizes.
|
|
|
|
Note that we use "fixed-denominator" estimation: the denominator should be
|
|
specified as the expected number of records per sample. Accumulating the
|
|
denominator separately would also be possible but would be produce a higher
|
|
variance estimator.
|
|
"""
|
|
|
|
def __init__(self,
|
|
l2_norm_clip,
|
|
sum_stddev,
|
|
denominator,
|
|
ledger=None):
|
|
"""Initializes the GaussianAverageQuery.
|
|
|
|
Args:
|
|
l2_norm_clip: The clipping norm to apply to the global norm of each
|
|
record.
|
|
sum_stddev: The stddev of the noise added to the sum (before
|
|
normalization).
|
|
denominator: The normalization constant (applied after noise is added to
|
|
the sum).
|
|
ledger: The privacy ledger to which queries should be recorded.
|
|
"""
|
|
self._numerator = GaussianSumQuery(l2_norm_clip, sum_stddev, ledger)
|
|
self._denominator = tf.to_float(denominator)
|
|
|
|
def initial_global_state(self):
|
|
"""Returns the initial global state for the GaussianAverageQuery."""
|
|
# GaussianAverageQuery has no global state beyond the numerator state.
|
|
return self._numerator.initial_global_state()
|
|
|
|
def derive_sample_params(self, global_state):
|
|
"""Given the global state, derives parameters to use for the next sample.
|
|
|
|
Args:
|
|
global_state: The current global state.
|
|
|
|
Returns:
|
|
Parameters to use to process records in the next sample.
|
|
"""
|
|
return self._numerator.derive_sample_params(global_state)
|
|
|
|
def initial_sample_state(self, global_state, tensors):
|
|
"""Returns an initial state to use for the next sample.
|
|
|
|
Args:
|
|
global_state: The current global state.
|
|
tensors: A structure of tensors used as a template to create the initial
|
|
sample state.
|
|
|
|
Returns: An initial sample state.
|
|
"""
|
|
# GaussianAverageQuery has no sample state beyond the sum state.
|
|
return self._numerator.initial_sample_state(global_state, tensors)
|
|
|
|
def accumulate_record(self, params, sample_state, record):
|
|
"""Accumulates a single record into the sample state.
|
|
|
|
Args:
|
|
params: The parameters for the sample.
|
|
sample_state: The current sample state.
|
|
record: The record to accumulate.
|
|
|
|
Returns:
|
|
The updated sample state.
|
|
"""
|
|
return self._numerator.accumulate_record(params, sample_state, record)
|
|
|
|
def get_noised_result(self, sample_state, global_state):
|
|
"""Gets noised average after all records of sample have been accumulated.
|
|
|
|
Args:
|
|
sample_state: The sample state after all records have been accumulated.
|
|
global_state: The global state.
|
|
|
|
Returns:
|
|
A tuple (estimate, new_global_state) where "estimate" is the estimated
|
|
average of the records and "new_global_state" is the updated global state.
|
|
"""
|
|
noised_sum, new_sum_global_state = self._numerator.get_noised_result(
|
|
sample_state, global_state)
|
|
def normalize(v):
|
|
return tf.truediv(v, self._denominator)
|
|
|
|
return nest.map_structure(normalize, noised_sum), new_sum_global_state
|