Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Smaller fixes for DP Auditorium README links #268

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions python/dp_auditorium/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ guarantees as described in the introductory paper
The root directory is structured as follows. It contains four main folders and a
runner module described below:

* [Testers](testers/): Contains modules introducing `PropertyTesters` that
* [Testers](dp_auditorium/testers/): Contains modules introducing `PropertyTesters` that
check if there is evidence to reject the hypothesis that a privacy guarantee
holds on a fixed pair of datasets.
* [Generators](generators/): Contains modules introducing `DatasetGenerators`
* [Generators](dp_auditorium/generators/): Contains modules introducing `DatasetGenerators`
that output pairs of neighboring datasets, for example under the add/remove
neighboring relation.
* [Mechanisms](mechanims/): Contains examples of private and non-private
* [Mechanisms](dp_auditorium/mechanisms/): Contains examples of private and non-private
mechanisms used to exemplify testers.
* `privacy_test_runner.py`: Module with runner that specializes to a tester
and generator and instantiates the `PropertyTester` on several datasets'
trials generated by the `DatasetGenerator`.
* [Examples](examples/): Folder containing examples on how to combine the
* [Examples](dp_auditorium/examples/): Folder containing examples on how to combine the
above tools.

Details on the signature of the above objects, can be found in the
Expand Down
Loading