Skip to content

Commit

Permalink
added one liner documentation for examples in README.md (#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnabanita7 committed Apr 10, 2021
1 parent b1d6ba6 commit 1483ccd
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,23 @@

#### Carrots Demo

This is the first example using the PyDP, about animals using the library to aggregate their data (about how many carrots they have eaten) before reporting it to their owner. More about it [here](carrots_demo/README.md).
This is the first example using the PyDP, about animals using the library to aggregate their data (about how many carrots they have eaten) before reporting it to their owner. More about it [here](Tutorial_1-carrots_demo/README.md).

#### Restaurant Demo

A restaurant owner would share business statistics with her visitors or potential clients, uses the PyDP library to preserve privacy of visitors while keeping track of number of visitors entering the restaurant and how much time and money they spend there. More about it [here](Tutorial_2-restaurant_demo/README.md).

#### Titanic Demo

This example uses the infamous Titanic dataset and finds what sorts of people were more likely to survive by finding demographic of people on the ship using differentially private statistical methods. More about it [here](Tutorial_3-Titanic_demo/Titanic_notebook.ipynb).

#### Launch Demo

In this example, two copies of one database are created where they differ by one record. This is for demonstrating the general principle used by all differentially private algorithms to protect users from MIA(Membership Inference Attack). More about it [here](Tutorial_4-Launch_demo/DP proof.ipynb).

#### Laplace Demo

This demo shows it is required to add noise to make data private. Laplace distribution makes it easy to satisfy ε-differential privacy by setting the b parameter to 1/ε. Hence, Laplace noise is used for making the data differentially private. More about it [here](laplace_demo/laplace.ipynb).

### Example

Expand Down

0 comments on commit 1483ccd

Please sign in to comment.