Skip to Content
Hands-On Differential Privacy
book

Hands-On Differential Privacy

by Ethan Cowan, Michael Shoemate, Mayana Pereira
May 2024
Intermediate to advanced
362 pages
8h 47m
English
O'Reilly Media, Inc.
Audio summary available
Content preview from Hands-On Differential Privacy

Chapter 6. Fearless Combinators

In the context of DP, the term combinators encompasses algorithms that build new stable transformations and private mechanisms from other functions. Many algorithms in differential privacy can be expressed this way, making it a useful qualifier to describe a class of DP algorithms. While the name combinator may seem complex at first, the concept is completely approachable. You are already familiar with chaining and composition, which are two examples of combinators. The main topics discussed in this chapter are:

  • Chaining

  • Privacy measure conversion

  • Generalized composition

  • Privacy amplification

  • Sample and aggregate

  • Private selection from private candidates

Along the way, you’ll learn about some new mechanisms that can be built up from previous mechanisms, through the use of these combinators:

  • Bounds estimation (chaining/postprocessing)

  • B-Trees (chaining/postprocessing)

  • Sparse vector technique (adaptive composition)

  • Multi-quantiles (parallel composition)

  • Shuffle-DP (amplification)

  • k-means (private selection from private candidates)

Chaining

Chaining is another word for functional composition, where a new function is constructed that iteratively applies two functions to an input:1

fc(x)=f2(f1(x))

The combinator representation doesn’t fix the initial argument x, instead opting to delay application:

def make_chain_mt(f_2, f_1):
    """Construct a new measurement representing f_c(x) = f_2(f_1(x))"""
    # check that f_1 is a transformation ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

The Three Traps That Stymie Reinvention

The Three Traps That Stymie Reinvention

Ryan Raffaelli
Exploring GPT-3

Exploring GPT-3

Steve Tingiris
The Human Factor in AI-Based Decision-Making

The Human Factor in AI-Based Decision-Making

Philip Meissner, Christoph Keding

Publisher Resources

ISBN: 9781492097730Errata Page