Every time a machine-learning model touches your data during training, it leaks a tiny sliver of information. Differential privacy (DP) gives us a mathematical guarantee: no matter what an adversary does, training on your data versus leaving it out produces outputs that are nearly indistinguishable.
The core parameter measures how much the outputs can differ in the worst case. Add a small dose of random noise to each gradient update and you get a DP-SGD algorithm. The trouble is accounting: training runs for thousands of steps, and the privacy cost accumulates with every one of them.
The naive approach — basic composition — simply adds values step by step. It works, but it is pessimistic: it assumes every step hits the worst case simultaneously, which almost never happens in practice. You end up with an enormous stated that makes results look far less private than they actually are.
Rényi differential privacy (RDP), introduced by Ilya Mironov in 2017, threads a better ledger through the problem. By measuring divergence not with a single worst-case ratio but with a Rényi divergence — a whole family of divergences parameterized by an order — it tracks privacy loss in a way that composes almost perfectly across steps. The result is a tighter, more honest estimate for the same noise level, unlocking models that would otherwise be declared too leaky to release.
Comments
Loading comments...