Skip to main content

A utility and privacy evaluation library for synthetic data

Project description

Documentation Status PyPI Downloads GitHub stars

Synthetic Data: Utility, Regulatory compliance, and Ethical privacy

The SURE package is an open-source Python library intended to be used for the assessment of the utility and privacy performance of any tabular synthetic dataset.

The SURE library features multiple Python modules that can be easily imported and seamlessly integrated into any Python script after installing the library.

[!WARNING] This is a beta version of the library and only runs on Linux and MacOS for the moment.

[!IMPORTANT] Requires Python >= 3.10

Installation

To install the library run the following command in your terminal:

$ pip install clearbox-sure

Modules overview

The SURE library features the following modules:

  1. Preprocessor
  2. Statistical similarity metrics
  3. Model garden
  4. ML utility metrics
  5. Distance metrics
  6. Privacy attack sandbox
  7. Report generator

Preprocessor

The input datasets undergo manipulation by the preprocessor module, tailored to conform to the standard structure utilized across the subsequent processes. The Polars library used in the preprocessor makes this operation significantly faster compared to the use of other data processing libraries.

Utility

The statistical similarity metrics, the ML utility metrics and the model garden modules constitute the data utility evaluation part.

The statistical similarity module and the distance metrics module take as input the pre-processed datasets and carry out the operation to assess the statistical similarity between the datasets and how different the content of the synthetic dataset is from the one of the original dataset. In particular, The real and synthetic input datasets are used in the statistical similarity metrics module to assess how close the two datasets are in terms of statistical properties, such as mean, correlation, distribution.

The model garden executes a classification or regression task on the given dataset with multiple machine learning models, returning the performance metrics of each of the models tested on the given task and dataset.

The model garden module’s best performing models are employed in the machine learning utility metrics module to compute the usefulness of the synthetic data on a given ML task (classification or regression).

Privacy

The distance metrics and the privacy attack sandbox make up the synthetic data privacy assessment modules.

The distance metrics module computes the Gower distance between the two input datasets and the distance to the closest record for each line of the first dataset.

The ML privacy attack sandbox allows to simulate a Membership Inference Attack for re-identification of vulnerable records identified with the distance metrics module and evaluate how exposed the synthetic dataset is to this kind of assault.

Report

Eventually, the report generator provides a summary of the utility and privacy metrics computed in the previous modules, providing a visual digest with charts and tables of the results.

This following diagram serves as a visual representation of how each module contributes to the utility-privacy assessment process and highlights the seamless interconnection and synergy between individual blocks.

drawing

Usage

The library leverages Polars, which ensures faster computations compared to other data manipulation libraries. It supports both Polars and Pandas dataframes.

The user must provide both the original real training dataset (which was used to train the generative model that produced the synthetic dataset), the real holdout dataset (which was NOT used to train the generative model that produced the synthetic dataset) and the corresponding synthetic dataset to enable the library's modules to perform the necessary computations for evaluation.

Below is a code snippet example for the usage of the library:

# Import the necessary modules from the SURE library
from sure import Preprocessor, report
from sure.utility import (compute_statistical_metrics, compute_mutual_info,
			  compute_utility_metrics_class,
			  detection,
			  query_power)
from sure.privacy import (distance_to_closest_record, dcr_stats, number_of_dcr_equal_to_zero, validation_dcr_test, 
			  adversary_dataset, membership_inference_test)

# Assuming real_data, valid_data and synth_data are three pandas DataFrames

# Preprocessor initialization and query execution on the real, synthetic and validation datasets
preprocessor            = Preprocessor(real_data, num_fill_null='forward', scaling='standardize')

real_data_preprocessed  = preprocessor.transform(real_data)
valid_data_preprocessed = preprocessor.transform(valid_data)
synth_data_preprocessed = preprocessor.transform(synth_data)

# Statistical properties and mutual information
num_features_stats, cat_features_stats, temporal_feat_stats = compute_statistical_metrics(real_data, synth_data)
corr_real, corr_synth, corr_difference                      = compute_mutual_info(real_data_preprocessed, synth_data_preprocessed)

# ML utility: TSTR - Train on Synthetic, Test on Real
X_train      = real_data_preprocessed.drop("label", axis=1) # Assuming the datasets have a “label” column for the machine learning task they are intended for
y_train      = real_data_preprocessed["label"]
X_synth      = synth_data_preprocessed.drop("label", axis=1)
y_synth      = synth_data_preprocessed["label"]
X_test       = valid_data_preprocessed.drop("label", axis=1).limit(10000) # Test the trained models on a portion of the original real dataset (first 10k rows)
y_test       = valid_data_preprocessed["label"].limit(10000)
TSTR_metrics = compute_utility_metrics_class(X_train, X_synth, X_test, y_train, y_synth, y_test)

# Distance to closest record
dcr_synth_train       = distance_to_closest_record("synth_train", synth_data, real_data)
dcr_synth_valid       = distance_to_closest_record("synth_val", synth_data, valid_data)
dcr_stats_synth_train = dcr_stats("synth_train", dcr_synth_train)
dcr_stats_synth_valid = dcr_stats("synth_val", dcr_synth_valid)
dcr_zero_synth_train  = number_of_dcr_equal_to_zero("synth_train", dcr_synth_train)
dcr_zero_synth_valid  = number_of_dcr_equal_to_zero("synth_val", dcr_synth_valid)
share                 = validation_dcr_test(dcr_synth_train, dcr_synth_valid)

# Detection Score
detection_score = detection(real_data, synth_data, preprocessor)

# Query Power
query_power_score = query_power(real_data, synth_data, preprocessor)

# ML privacy attack sandbox initialization and simulation
adversary_df = adversary_dataset(real_data, valid_data)
# The function adversary_dataset adds a column "privacy_test_is_training" to the adversary dataset, indicating whether the record was part of the training set or not
adversary_guesses_ground_truth = adversary_df["privacy_test_is_training"] 
MIA = membership_inference_test(adversary_df, synth_data, adversary_guesses_ground_truth)

# Report generation as HTML page
report(real_data, synth_data)

Follow the step-by-step guide to test the library.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

clearbox_sure-0.2.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

clearbox_sure-0.2.16-cp312-cp312-macosx_10_13_universal2.whl (374.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

clearbox_sure-0.2.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

clearbox_sure-0.2.16-cp311-cp311-macosx_10_9_universal2.whl (380.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

clearbox_sure-0.2.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

clearbox_sure-0.2.16-cp310-cp310-macosx_10_9_universal2.whl (377.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file clearbox_sure-0.2.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for clearbox_sure-0.2.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c404c3bf554d0d2916d423bb2f2de7647e3802a6a90e8e673da62f79649314ed
MD5 84dac10875d61e470d6bcd2ccae27431
BLAKE2b-256 c3b796c63f782565d1d5af801875e72b8531e8873dc038b1f8b96e7f855e2b97

See more details on using hashes here.

File details

Details for the file clearbox_sure-0.2.16-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for clearbox_sure-0.2.16-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 564abe9a3f632ce5ac454eee14c15eac991ccaad09128b997c360fa9446846b3
MD5 3b2e169fd5bc9e88854a6db9d1258540
BLAKE2b-256 c955bed66082dfd6d0a691eebd2e6064e63da4f7fd14190cdc600d498450fb25

See more details on using hashes here.

File details

Details for the file clearbox_sure-0.2.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for clearbox_sure-0.2.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 dbba173527cc8a08b92e66da75deb12fa38ef022e9ed3f313475c227907cb51e
MD5 0596d69b2ac8b64cfb5d1e5a66f32c6f
BLAKE2b-256 6b2e986d5564ca6d30488702779f357b22a46114e4e6f0695af97bb939901d63

See more details on using hashes here.

File details

Details for the file clearbox_sure-0.2.16-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for clearbox_sure-0.2.16-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cd815f719238b9adc44b74b74b6077c0657466db8c9d738ad1be715b8bac8710
MD5 7278d36d36f9d30208ddd4cf08a2447c
BLAKE2b-256 6a05ca353724ab6db5b47cb4f10627927da9a12562a77e85872743ede5ef7f68

See more details on using hashes here.

File details

Details for the file clearbox_sure-0.2.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for clearbox_sure-0.2.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a7c763a4e8d4925b9819ad12d1a261716561b87b8c21b4bb459fe73177eb2c9e
MD5 22b44c4b15560cfda3b7d3a547067de4
BLAKE2b-256 fde918c7514ae401d134f29321631361ceb5ffc14ffa65ae22e1ae7033572a79

See more details on using hashes here.

File details

Details for the file clearbox_sure-0.2.16-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for clearbox_sure-0.2.16-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 02c54d677a32487e710783b805360cf6ad84ed74fa45b033eacfe895bbcbcdf0
MD5 403306de5fd90072a99c89f50a30f7c9
BLAKE2b-256 142d10efc04b743bc2360f1bb56cde1c1c59aeafd5cca297b31f9fe2e13d76a4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page