cilvento / b2_exponential_mechanism

A reference implementation of the exponential mechanism.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implementing the Exponential Mechanism with Base-2 DP

Author: Christina Ilvento The latest version of this code can be found at https://github.com/cilvento/b2dp. This repository is for archival purposes only.

Paper

Code and supplemental materials.

Abstract

Despite excellent theoretical support, Differential Privacy (DP) can still be a challenge to implement in practice. In part, this challenge is due to the very real concerns associated with converting arbitrary or infinite-precision theoretical mechanisms to the often messy realities of floating point or fixed-precision. Beginning with the troubling result of Mironov demonstrating the security issues of using floating point for implementing the Laplace mechanism, there have been many reasonable concerns raised on the vulnerabilities of real-world implementations of DP.

In this work, we examine the practicalities of implementing the exponential mechanism of McSherry and Talwar. We demonstrate that naive or malicious implementations can result in catastrophic privacy failures. To address these problems, we show that the mechanism can be implemented exactly for a rich set of values of the privacy parameter epsilon and utility functions with limited practical overhead in running time and minimal code complexity.

How do we achieve this result? We employ a simple trick of switching from base e to base 2, allowing us to perform precise base 2 arithmetic. A short, precise expression is always available for epsilon, and the only approximation error we incur is the conversion of the base-2 privacy parameter back to base e for reporting purposes. The core base e arithmetic of the mechanism can be simply and efficiently implemented using open-source high precision floating point libraries. Furthermore, the exact nature of the implementation lends itself to simple monitoring of correctness and proofs of privacy.

Supplemental Materials

Code

Rust

  • Crate overview: rust/b2dp/src/lib.rs contains example usage and helpful re-exports.
  • Base-2 exponential mechanism: see rust/b2dp/src/mechanisms/exponential.rs for mechanism logic, rust/b2dp/utilities/exactarithmetic.rs for normalized sampling and exact arithmetic logic and rust/b2dp/src/utilities/params.rs for base-e to base-2 parameter conversions.
  • Naive mechanism: rust/b2dp/src/mechanisms/exponential.rs
  • Benchmarks: rust/b2dp/benches/

Python

  • Naive implementation of the exponential mechanism: see python/naive.py
  • Base-2 implementation of the exponential mechanism: see python/expmech.py
  • Timing tests: python/timing_tests.py
  • Accuracy bounds (randomized rounding): python/accuracy_comparison.py

Benchmarks

The timing benchmarks presented in the paper are generated from a combination of the Rust Criterion benchmarks in rust/b2dp/src/benchmarks/ and the custom timing script in python/timing_tests.py. To run the Rust benchmarks,

cd rust/b2dp
cargo bench

The benchmark results can then be found in the rust/b2dp/target/Criterion directory.

For Python,

python3 python/timing_tests.py > output.csv

Dependencies

About

A reference implementation of the exponential mechanism.


Languages

Language:Jupyter Notebook 51.2%Language:Rust 33.3%Language:Python 15.5%