Ethical Fairness Monitoring

Introduction

Organizations need visibility into how models are forming predictions, in particular if the model is generating unfair and partial results to certain protected classes. Bias monitors should be run routinely against batches of labeled and scored data to ensure that the model is performing within specifications. If the production bias metrics deviate beyond/below set thresholds, then the appropriate alerts are raised for the data scientist or ModelOps engineer to investigate.

ModelOp Center provides bias monitors out-of-the-box (OOTB) but also allows you to write your own custom bias/fairness/group metrics to monitor your model. The subsequent sections describe how to add a bias monitor - assuming an OOTB monitor - and the detailed makeup of a bias monitor.

 

Adding Bias Monitors

As background on the terminology and concepts used below, please read the Monitoring Concepts section of the Model overview documentation.

To add bias monitoring to your business model, you will add an existing “Monitor” to a snapshot (deployable model) of the business model under consideration. Below are the steps to accomplish this. For tutorial purposes, these instructions use all out-of-the-box and publicly available content provided by ModelOp, focusing on the German Credit Model and its related assets.

The "German Credit Data" dataset classifies people described by a set of attributes as good or bad credit risks. Among the twenty attributes is gender (reported as a hybrid status_sex attribute), which is considered a protected attribute in most financial risk models. It is therefore of the utmost importance that any machine learning model aiming to assign risk levels to lessees is not biased against a particular gender.

It is important to note that simply excluding gender from the training step does not guarantee an unbiased model, as gender could be highly correlated to other unprotected attributes, such as annual income.

Open-source Python libraries developed to address the problem of Bias and Fairness in AI are available. Among these, Aequitas can be easily leveraged to calculate Bias and Fairness metrics of a particular ML model, given a labeled and scored data set, as well as a set of protected attributes. In the case of German Credit Data, ground truths are provided and predictions can be generated by, say, a logistic regression model. Scores (predictions), label values (ground truths), and protected attributes (e.g. gender) can then be given as inputs to the Aequitas library. Aequitas's Group() class calculates commonly used metrics such as false-positive rate (FPR) and false omission rate (FOR), as well as counts by group and group prevalence among the sample population. It returns group counts and group value bias metrics in a dataframe.

For instance, one could discover that under the trained logistic regression model, females have an FPR=0.32, whereas males have an FPR=0.16. This means that women are twice as likely to be falsely labeled as high-risk as men. The Aequitas Bias() class calculates disparities between groups, where a disparity is a ratio of a metric for a group of interest compared to a reference group. For example, the FPR-disparity for the example above between males and females, where males are the reference group, is equal to 32/16 = 2. Disparities are computed for each bias metric and are returned by Aequitas in a dataframe.

Associate a Monitor to a Snapshot of a Business Model

  1. In MOC, navigate to the business model to be monitored. In our case, that’s the German Credit Model.

  2. Navigate to the specific snapshot of the business model. If no snapshots exist, create one.

    1. On the Monitors widget click on + Add

    2. Search for (or select) the Bias Monitor: Disparity and Group Metrics from the list of OOTB monitors.

    3. Select a snapshot of the monitor. By default, a snapshot is created for each OOTB monitor. 

    4. On the Input Assets page, you’ll notice that the only asset that is required is sample data. This is because a bias monitor computes metrics on 1 dataset only, and thus does not do a comparison to a baseline/reference dataset. For our example, select df_sample_scored.json as the Sample Data Asset. Since the file is already an asset of the business model, we can find it under Select Existing.

       

    5. On the Threshold page, click on ADD A THRESHOLD, then select the .dmn file bias_disparity_DMN.dmn. Since the file is already an asset of the business model, we can find it under Select Existing. If the business model does not have a .dmn asset, the user may upload on from a local directory during the monitor association process. Note: threshold files are optional; if absent, a monitoring job will not be considered a Pass or Fail. More on thresholds and decision tables in the next section.

       

    6. The last step in adding a monitor is adding an optional schedule. To do so, click on ADD A SCHEDULE. The Schedule Name field is free-form. The Signal Name field is a dropdown. Choose a signal that corresponds to your ticketing system (Jira, ServiceNow). Lastly, set the frequency of the monitoring job. This can be done either by the wizard or by entering a cron expression. Note: schedules are optional; a monitor may be run on-demand from the business model’s snapshot page, or by a curl command.

       

    7. On the Review page click SAVE.

      To run a monitor on demand, click on COPY CURL TO RUN JOB EXTERNALLY. The CURL command can then be run from the application of your choosing.

Define thresholds for your model

As mentioned in the Monitoring Concepts article, ModelOp Center uses decision tables to define the thresholds within which the model should operate for the given monitor.

  • The first step is to define these thresholds. For this tutorial, we will leverage the example bias_disparity_DMN.dmn decision table. Specifically, this decision table ensures that the gender_female_statistical_parity and gender_female_impact_parity metrics of the German Credit Model are within specification.

  • The gender_female_statistical_parity and gender_female_impact_parity values can be accessed directly from the Monitoring Test Result by design. More metrics are produced OOTB by the bias monitor. We will discuss this in more detail later.

  • In our example, the .dmn file is already an asset of the business model and versioned/managed along with the source code in the same Github repo. This is considered best practice, as the decision tables are closely tied to the specific business model under consideration. However, it is not a requirement that the .dmn files are available as model assets ahead of time.

Monitoring Results and Notifications


Sample Standard Output of Performance Monitors

The output of the performance monitoring job can be viewed by clicking on the monitor from “Model Test Results” as shown in the previous section. In this section, you can view the results in a graphical format or in the raw format.

  1. Bias/Disparity Metrics

    Raw JSON:

    { "bias": [ { "test_name": "Aequitas Bias", "test_category": "bias", "test_type": "bias", "protected_class": "gender", "test_id": "bias_bias_gender", "reference_group": "male", "thresholds": { "min": 0.8, "max": 1.25 }, "values": [ { "attribute_name": "gender", "attribute_value": "female", "ppr_disparity": 0.5, "pprev_disparity": 0.8889, "precision_disparity": 1.36, "fdr_disparity": 0.7568, "for_disparity": 1.6098, "fpr_disparity": 0.7648, "fnr_disparity": 1.32, "tpr_disparity": 0.8976, "tnr_disparity": 1.15, "npv_disparity": 0.9159 }, { "attribute_name": "gender", "attribute_value": "male", "ppr_disparity": 1.0, "pprev_disparity": 1.0, "precision_disparity": 1.0, "fdr_disparity": 1.0, "for_disparity": 1.0, "fpr_disparity": 1.0, "fnr_disparity": 1.0, "tpr_disparity": 1.0, "tnr_disparity": 1.0, "npv_disparity": 1.0 } ] } ], "gender_female_impact_parity": 0.8889, "gender_female_statistical_parity": 0.5, "gender_male_impact_parity": 1.0, "gender_male_statistical_parity": 1.0 }
  2. Group Metrics

    Raw JSON:

    { "bias": [ { "test_name": "Aequitas Group", "test_category": "bias", "test_type": "group", "protected_class": "gender", "test_id": "bias_group_gender", "reference_group": null, "values": [ { "attribute_name": "gender", "attribute_value": "female", "tpr": 0.68, "tnr": 0.7021, "for": 0.1951, "fdr": 0.4516, "fpr": 0.2979, "fnr": 0.32, "npv": 0.8049, "precision": 0.5484, "ppr": 0.3333, "pprev": 0.4306, "prev": 0.3472 }, { "attribute_name": "gender", "attribute_value": "male", "tpr": 0.7576, "tnr": 0.6105, "for": 0.1212, "fdr": 0.5968, "fpr": 0.3895, "fnr": 0.2424, "npv": 0.8788, "precision": 0.4032, "ppr": 0.6667, "pprev": 0.4844, "prev": 0.2578 } ] } ] }

Bias Monitors Details

Model Assumptions

Business Models considered for bias monitoring have a few requirements:

  1. An extended schema asset for the input data.

  2. Model type is classification.

  3. Protected classes under consideration are categorical features.

  4. Input data contains columns for label (ground truth), score (model output), and at least 1 protected class.

Protected Classes with Numerical Values

While not supported out of the box, a bias monitor can be easily edited to allow protected protected classes with numerical values, such as a continuous age column. Consider the following example:

import pandas from modelop.monitors.bias import BiasMonitor dataframe = pandas.DataFrame( [ {"gender": "male", "age": 10, "prediction": 0, "label": 0}, {"gender": "male", "age": 18, "prediction": 0, "label": 0}, {"gender": "female", "age": 20, "prediction": 0, "label": 0}, {"gender": "female", "age": 25, "prediction": 0, "label": 0}, {"gender": "male", "age": 30, "prediction": 1, "label": 1}, {"gender": "female", "age": 40, "prediction": 1, "label": 1}, {"gender": "female", "age": 42, "prediction": 1, "label": 1}, {"gender": "male", "age": 50, "prediction": 0, "label": 1}, {"gender": "male", "age": 55, "prediction": 0, "label": 1}, {"gender": "female", "age": 60, "prediction": 0, "label": 1}, {"gender": "male", "age": 70, "prediction": 1, "label": 0}, {"gender": "female", "age": 80, "prediction": 1, "label": 1}, ] ) # List to bucket numerical protected class age_cutoffs = [40] # Instantiate Bias Monitor numerical_bias_monitor = BiasMonitor( dataframe=dataframe, score_column="prediction", label_column="label", protected_class="age", numerical_cutoffs=age_cutoffs, ) numerical_bias_monitor.compute_bias_metrics(pre_defined_test='aequitas_bias')

In this example, the cutoff list on line 22, passed to the monitor instance on line 30, tells the BiasMonitor to split the age values on 40. This produces an artificial age_bucketed column, with two categorical values: (-inf, 40) and [40, +inf). The Bias metrics are then computed on the engineered categorical feature:

To split on more than one value, simply add all interval endpoints to the numerical_cutoffs list. For example,

Model Execution

During execution, bias monitors execute the following steps:

  1. init function extracts extended input schema (corresponding to the BUSINESS_MODEL being monitored) from job JSON.

  2. Monitoring parameters are set based on the schema above. protected_classes, label_column, and score_column are determined accordingly.

  3. metrics function runs an Aequitas Bias test and/or an Aequitas Group test for each protected class in the list of protected classes. A reference group for each protected class is chosen by default (first occurrence).

    • The combination of bias and group metrics to be computed depends on the specific flavor of the bias monitor:

      • Bias Monitor: Group Metrics computes group metrics only for each protected class: tpr, tnr, for, fdr, fpr, fnr, npv, precision, ppr, pprev, prev

      • Bias Monitor: Disparity Metrics computes disparity metrics only for each protected class: ppr_disparity, pprev_disparity, precision_disparity, fdr_disparity, for_disparity, fpr_disparity, fnr_disparity, tpr_disparity, tnr_disparity, npv_disparity

      • Bias Monitor: Disparity and Group Metrics computes both group and disparity metrics for each protected class

  4. Test results are appended to the list of bias tests to be returned by the model.

For a deeper look at OOTB bias monitors, see the GitHub READMEs:

Next Article: Model Governance: Standard Model Definition >