@@ -51,7 +51,7 @@ def _compute_dp_sgd_user_privacy(
5151
5252 Args:
5353 num_epochs: The number of passes over the data. May be fractional.
54- noise_multiplier: The ratio of the noise to the l2 sensitivity.
54+ noise_multiplier: The ratio of the noise stddev to the l2 sensitivity.
5555 user_delta: The target user-level delta.
5656 max_examples_per_user: Upper bound on the number of examples per user.
5757 used_microbatching: If true, increases sensitivity by a factor of two.
@@ -183,7 +183,7 @@ def _compute_dp_sgd_example_privacy(
183183
184184 Args:
185185 num_epochs: The number of passes over the data.
186- noise_multiplier: The ratio of the noise to the l2 sensitivity.
186+ noise_multiplier: The ratio of the noise stddev to the l2 sensitivity.
187187 example_delta: The target delta.
188188 used_microbatching: If true, increases sensitivity by a factor of two.
189189 poisson_subsampling_probability: If not None, gives the probability that
@@ -244,9 +244,10 @@ def compute_dp_sgd_privacy_statement(
244244 examples in a batch, *regardless of whether/how they are grouped into
245245 microbatches*.
246246 num_epochs: The number of epochs of training. May be fractional.
247- noise_multiplier: The ratio of the Gaussian noise to the clip norm at each
248- round. It is assumed that the noise_multiplier is constant although the
249- clip norm may be variable if, for example, adaptive clipping is used.
247+ noise_multiplier: The ratio of the Gaussian noise stddev to the l2 clip norm
248+ at each round. It is assumed that the noise_multiplier is constant
249+ although the clip norm may be variable if, for example, adaptive clipping
250+ is used.
250251 delta: The target delta.
251252 used_microbatching: Whether microbatching was used (with microbatch size
252253 greater than one). Microbatching inflates sensitivity by a factor of two
0 commit comments