Danger

You are looking at the documentation for an older version of the SDV! We are no longer supporting or maintaining this version of the software

Click here to go to the new docs pages.

sdv.metrics.tabular.CategoricalPrivacyMetric

class sdv.metrics.tabular.CategoricalPrivacyMetric[source]

Base class for Categorical Privacy metrics on single tables.

These metrics fit an adversial attacker model on the synthetic data and then evaluate its accuracy (or probability of making the correct attack) on the real data.

name

Name to use when reports about this metric are printed.

Type

str

goal

The goal of this metric.

Type

sdmetrics.goal.Goal

min_value

Minimum value or values that this metric can take.

Type

Union[float, tuple[float]]

max_value

Maximum value or values that this metric can take.

Type

Union[float, tuple[float]]

model

Model class to use for the prediction.

model_kwargs

Keyword arguments to use to create the model instance.

accuracy_base

True if the privacy score should be based on the accuracy of the attacker, False if it should be based on the probability of making the correct attack.

Type

bool

__init__()

Initialize self. See help(type(self)) for accurate signature.

Methods

__init__()

Initialize self.

compute(real_data, synthetic_data[, …])

Compute this metric.

compute_breakdown(real_data, synthetic_data)

Compute this metric breakdown.

get_subclasses([include_parents])

Recursively find subclasses of this metric.

normalize(raw_score)

Compute the normalized value of the metric.

Attributes

ACCURACY_BASE

MODEL

MODEL_KWARGS

goal

max_value

min_value

name