-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
19 lines (15 loc) · 810 Bytes
/
Makefile
File metadata and controls
19 lines (15 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# k-anonymity
disable-dp:
python3 src/main.py --filename example.csv --sample-size 200 --delta 40 --k 10 --beta 10 --l 1 --disable-dp --display --seed 42 --history
# l-diversity
ldiverse:
python3 src/main.py --filename example.csv --sample-size 200 --delta 40 --k 10 --beta 10 --l 5 --disable-dp --display --seed 42 --history
# Differential privacy
enable-dp:
python3 src/main.py --filename example.csv --sample-size 200 --delta 40 --k 10 --beta 10 --l 5 --phi 100 --display --seed 42 --history
# Issues with a small phi
small-phi:
python3 src/main.py --filename example.csv --sample-size 200 --delta 40 --k 10 --beta 10 --l 5 --phi 1 --display --seed 42 --history
# Nice graph
demo:
python3 src/main.py --filename example.csv --sample-size 1000 --k 10 --l 5 --delta 200 --seed 42 --display --history