{% extends "base.html" %} {% block head %} {{ super() }} {% endblock %} {% block title %} Configure the Bias Audit {% endblock %} {% block description %}
Select attributes to audit and a method for determining the reference groups.
Configure the bias and fairness audit by selecting the fairness measures to audit and the fairness threshold to determine when the audit passes or fails.
{% endblock %} {% block flow %}
{% endblock %} {% block content %}

1. Select method for determining reference group:

Reference groups are used to calculate relative disparities in our Bias Audit. For example, you might select Male as the reference group for Gender. Aequitas will then use Male as the baseline to calculate any biases for other groups in the attribute Gender (for Female and Other for example).

Custom group (Select your own)

Majority group (Automatically select the largest group for every attribute)

Automatically select group with the lowest bias metric for every attribute


2. Select protected attributes that need to be audited for bias.

{% for cat in categories %} {% endfor %}
Attribute Reference Group
  {{cat}}
{% for cat in categories %} {% endfor %}
Attribute
  {{cat}}

3. Select Fairness Metrics to Compute:

{% for fm in fairness %}   {{fm}}
{% endfor %}

4. Enter your Disparity Intolerance (in %):

If a specific bias metric for a group is within this percentage of the reference group, this audit will pass

%



{% endblock %}