A differentially private data synthesizer and fairness intervention benchmark framework
Project description
DP+Fair Benchmarking Framework
This repository provides a Python framework for benchmarking fairness mechanisms on Differentially Private Synthetic Data.
Features
- ⚡ Simple, reproducible setup for benchmarking algorithms
- 🧩 Flexible API to plug in any classifier implementing
fit,predict, andpredict_proba - 📊 Pre-offered datasets included under
data/ - 🔬 Configurable experiment settings: dataset schema, dataset synthesizer, seeds, privacy-budget, input/outputs, classifier, data pre-processing.
Installation
First, we strongly recommend creating a new Python environment before installing the package. This helps maintain a clean and reproducible setup, facilitates dependency and version management and update, and minimises potential conflicts with previously installed libraries.
python3 -m venv dpfair-env
source dpfair-env/bin/activate # On Windows: dpfair-env\\Scripts\\activate
# Installation approach via PyPi or source installation
If you are a Windows or Linux user, please install PyTorch CPU-only dependencies: [Step not required for Mac users]
pip install torch --index-url https://download.pytorch.org/whl/cpu
Users on MacOS are required to install llvm-openmp, either using conda or brew, as below:
Conda:
conda install -c conda-forge llvm-openmp
Brew:
brew install libomp
Then, the library installation can proceed as per usual.
Our recommended method is via PyPI. With a Python 3.9+ and <3.13 environment:
pip install BenchmarkDPFair
Alternatively, there is the possibility to install from source, which also gives access to the data/, example/, and notebook/ directories (be aware that these may consume more resources on your disk given the data provided):
git clone https://github.com/vinicius-verona/dp-fair-intervention-benchmark.git
cd dp-fair-intervention-benchmark
pip install -e .
Repository Structure
├── data/ # Pre-offered datasets
├── src/ # Core source code
├── example/ # Files used in the main paper and a dummy example.
└── README.md
Quick Start
Here is a dummy example:
import argparse
from typing import List, Union
from BenchmarkDPFair.DataGenerator import generate_data, DatasetGeneratorConfig
from BenchmarkDPFair.Benchmark import benchmark, BenchmarkInfo, BenchmarkDatasetConfig
from sklearn.linear_model import LogisticRegression
ESTIMATOR_PARAMS = {
'max_iter': 10000,
'solver': 'saga',
'l1_ratio': 0.5,
'C': 0.8
}
lr = LogisticRegression
classifiers = [lr]
ckwargs = [
ESTIMATOR_PARAMS,
]
classifier_name = ["LR"]
combinations = [
(0, 0),
(0, 1),
]
synths = ["aim", "mst"]
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Arguments of Data Generation for Adult")
parser.add_argument(
"--seeds", "-s",
nargs="+", # 1 or more values
type=int # convert automatically to int
)
args = parser.parse_args()
seeds = args.seeds
eps : List[Union[int,float]] = [.05, .1]
for synthesizer in synths:
for s in seeds:
data_conf = DatasetGeneratorConfig(
name = "Compas",
target= "two_year_recid",
synthesizer = synthesizer,
root_dir="./data",
sensitive_attr = "race",
categorical_cols = ['race', 'score_text', 'c_charge_degree','age', 'sex', 'two_year_recid'],
sensitive_cols = ['race', 'sex'],
ordinal_cols = ['priors_count'],
privacy_budgets=eps,
binary_encoder=binary_encode,
seed = s,
test_split_size=0.4,
data_filter = filter_compas
)
generate_data(f"compas.csv", "", data_conf, "./data", verbose=True)
for clf_idx, syn_idx in combinations:
classifier = classifiers[clf_idx]
synth = synths[syn_idx]
benchmark_config = BenchmarkInfo(
dp_method=synth,
output_dir=f"./output/Dummy-Compas/{classifier_name[clf_idx]}/",
seeds=seeds,
eps = eps,
classifier=classifier,
classifier_kwargs=ckwargs[clf_idx]
)
benchmark_dataset = BenchmarkDatasetConfig(
name = "Compas",
target= "two_year_recid",
root_dir="./data",
sensitive_attr = "race",
index_col="Unnamed: 0",
categorical_cols = ['race', 'score_text', 'c_charge_degree','age', 'sex', 'two_year_recid'],
ordinal_cols=["priors_count"],
sensitive_cols = ['race', 'sex'],
)
benchmark(benchmark_info=benchmark_config, data_conf=benchmark_dataset)
More detailed examples can be found in the example/ directory.
License
License: MIT
Contributing
Contributions are welcome:
- Open an issue for bug reports or feature requests
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file benchmarkdpfair-0.2.6.tar.gz.
File metadata
- Download URL: benchmarkdpfair-0.2.6.tar.gz
- Upload date:
- Size: 23.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
695ff00f1646063cf379eab8fe1a458906502de906a3bac5f9d1c96c1bc7d613
|
|
| MD5 |
263a6ceb1ab856b41af775f565a5bac5
|
|
| BLAKE2b-256 |
b847cb7ee2869ddc392e588a370fd4f047ef7743ba8dfb4b2d54e937c994ccd7
|
File details
Details for the file benchmarkdpfair-0.2.6-py3-none-any.whl.
File metadata
- Download URL: benchmarkdpfair-0.2.6-py3-none-any.whl
- Upload date:
- Size: 27.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eafd97a440982b714ae62419d1b5871d49a9568112cbc60217977f8dffdf6dd1
|
|
| MD5 |
da7accce40bc3450f4bcf60ba4a5f0df
|
|
| BLAKE2b-256 |
1b3f045169e3fe82b582a768ffcd6b69edf242cf782a51b711e8d8191bb82070
|