Inferensys

Glossary

Rényi Differential Privacy (RDP)

A relaxation of differential privacy based on the Rényi divergence that provides tighter composition bounds for tracking cumulative privacy loss across iterative algorithms like DP-SGD.
Knowledge engineer constructing knowledge base on laptop, document hierarchy visible, casual office setup.
PRIVACY ACCOUNTING

What is Rényi Differential Privacy (RDP)?

A relaxation of differential privacy based on the Rényi divergence that provides tighter composition bounds for tracking cumulative privacy loss across iterative algorithms like DP-SGD.

Rényi Differential Privacy (RDP) is a privacy definition that bounds the Rényi divergence of order α between the output distributions of a mechanism run on two neighboring datasets. Unlike (ε, δ)-DP, which uses a single privacy loss parameter, RDP provides a curve of privacy guarantees parameterized by the order α, enabling significantly tighter accounting of the cumulative privacy budget during iterative training.

RDP's primary advantage is its tight composition theorem, which states that the RDP parameters simply add up across sequential mechanisms. This property makes it the standard accounting tool for DP-SGD, where it tracks privacy loss more accurately than the Moments Accountant by converting the RDP guarantee back to an (ε, δ)-DP bound only at the end of training.

PROBABILISTIC PRIVACY ACCOUNTING

Key Properties of Rényi Differential Privacy

Rényi Differential Privacy (RDP) provides a tighter, more accurate composition framework than standard (ε, δ)-DP by tracking the Rényi divergence of privacy loss random variables, making it essential for deep learning with DP-SGD.

01

Rényi Divergence Foundation

RDP is defined using the Rényi divergence of order α between the output distributions of a mechanism on neighboring datasets. A mechanism M satisfies (α, ε)-RDP if:

  • Dα(M(D) || M(D')) ≤ ε
  • The parameter α > 1 controls the moment order being tracked
  • As α → ∞, RDP converges to pure ε-differential privacy
  • For α = 1, it reduces to the KL divergence

This divergence-based definition captures the entire privacy loss distribution rather than just its tail bound, enabling significantly tighter composition.

02

Gaussian Mechanism Under RDP

The Gaussian mechanism achieves a clean RDP guarantee that scales naturally with sensitivity. For a query with L2 sensitivity Δ₂, adding noise with variance σ² yields:

  • (α, α·Δ₂²/(2σ²))-RDP for all α > 1
  • This linear dependence on α makes composition analysis straightforward
  • Contrasts with (ε, δ)-DP where the Gaussian mechanism requires the tail bound approximation via δ

This property makes RDP the natural accounting framework for DP-SGD, which applies the Gaussian mechanism at each training step.

03

Composition Theorem

RDP's primary advantage is its simple additive composition. For k adaptive mechanisms M₁, M₂, ..., Mₖ where each Mᵢ satisfies (α, εᵢ)-RDP:

  • The composed mechanism satisfies (α, Σ εᵢ)-RDP
  • No advanced composition theorem or δ accumulation is needed
  • This exact additivity avoids the looseness of standard composition theorems

In DP-SGD with T training steps, the total RDP cost is simply T × ε_step(α), where ε_step depends on the noise multiplier and sampling rate. This tight accounting allows more training iterations under a fixed privacy budget.

04

Conversion to (ε, δ)-DP

RDP guarantees can be converted to standard (ε, δ)-DP for interpretability and compliance reporting. For an (α, ε_RDP)-RDP mechanism:

  • It satisfies (ε_RDP + log(1/δ)/(α-1), δ)-DP for any δ ∈ (0, 1)
  • The optimal conversion finds the α that minimizes ε for a target δ
  • This conversion is tight — it achieves the best possible (ε, δ)-DP bound from the RDP characterization

This property allows practitioners to use RDP for internal accounting while reporting final guarantees in the more widely recognized (ε, δ)-DP framework.

05

Privacy Amplification by Subsampling

RDP interacts elegantly with Poisson subsampling, the standard technique in DP-SGD where each example is included with probability q. The amplified RDP guarantee is:

  • ε'(α) = (1/(α-1)) · log(1 + q²·(α choose 2)·min{4(e^{ε(2)}-1), 2e^{ε(2)}} + ...)
  • For small q, this provides a ~q² reduction in privacy cost
  • The exact RDP analysis captures the amplification more tightly than (ε, δ)-DP composition

This tight subsampling analysis is critical for deep learning, where large datasets and small batch sizes yield substantial amplification gains.

06

Moments Accountant Connection

RDP generalizes and formalizes the moments accountant technique introduced by Abadi et al. (2016) for DP-SGD. The relationship:

  • The moments accountant tracks the log-moment generating function of the privacy loss
  • RDP at order α corresponds exactly to the α-th moment bound
  • RDP provides a unified framework that simplifies the analysis
  • The moments accountant can be seen as computing RDP bounds numerically

This connection means RDP provides the theoretical foundation for the empirical privacy accounting used in production DP-SGD implementations like TensorFlow Privacy and Opacus.

PRIVACY ACCOUNTING COMPARISON

RDP vs. Moments Accountant vs. Standard DP

A technical comparison of privacy accounting methods used to track cumulative privacy loss during iterative training algorithms like DP-SGD.

FeatureRényi DP (RDP)Moments AccountantStandard DP Composition

Underlying Divergence Metric

Rényi divergence of order α

Moments of privacy loss random variable

Hockey-stick divergence (ε, δ)

Composition Tightness

Tighter than moments accountant for heterogeneous mechanisms

Tighter than standard strong composition

Loose; overestimates privacy loss

Conversion to (ε, δ)-DP

Supports Poisson Subsampling

Numerical Stability

High; avoids moment integral computation

Moderate; requires numerical integration

High; simple additive composition

Privacy Loss Tracking Granularity

Continuous function of α

Discrete moment orders

Single (ε, δ) pair

Introduced By

Mironov (2017)

Abadi et al. (2016)

Dwork et al. (2006)

Computational Overhead

Low; closed-form for Gaussian mechanism

Moderate; grid search over moments

Negligible; simple summation

RÉNYI DIFFERENTIAL PRIVACY

Frequently Asked Questions

Clarifying the nuances of Rényi Differential Privacy, its operational advantages over classical definitions, and its critical role in modern machine learning privacy accounting.

Rényi Differential Privacy (RDP) is a relaxation of differential privacy based on the Rényi divergence that provides tighter composition bounds for tracking cumulative privacy loss. Unlike standard (ε, δ)-DP, which bounds the maximum divergence between outputs on neighboring datasets, RDP measures the moment of the privacy loss random variable at a specific order α. This allows RDP to capture the entire spectrum of privacy loss distributions rather than just the worst-case tail bound. The key operational advantage is that RDP composes cleanly: the RDP parameters (α, ε) simply add up when mechanisms are combined, avoiding the complex advanced composition theorems required for (ε, δ)-DP. This makes RDP the preferred accounting method for iterative algorithms like DP-SGD, where thousands of steps must be tracked. At the end of training, RDP guarantees are converted back to (ε, δ)-DP for reporting.

Prasad Kumkar

About the author

Prasad Kumkar

CEO & MD, Inference Systems

Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.

His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.