{{ data.metrics.fairness_score | format_number(3) }}
{{ data.group_results | length if data.group_results else 'N/A' }}
✓ EXCELLENT
The model provides equitable performance across demographic groups with minimal disparities.
{% elif data.metrics.fairness_score >= 0.6 %}⚠ ACCEPTABLE
The model shows reasonable fairness across groups with some notable disparities that warrant attention.
{% else %}✗ POOR
The model exhibits significant fairness disparities across groups and requires improvement.
{% endif %}| Group | Accuracy | Precision | Recall | F1 Score | Sample Size |
|---|---|---|---|---|---|
| {{ group.group_name }} | {{ group.accuracy | format_percentage(2) if group.get('accuracy') else 'N/A' }} | {{ group.precision | format_percentage(2) if group.get('precision') else 'N/A' }} | {{ group.recall | format_percentage(2) if group.get('recall') else 'N/A' }} | {{ group.f1_score | format_percentage(2) if group.get('f1_score') else 'N/A' }} | {{ group.size if group.get('size') else 'N/A' }} |
Showing 5 of {{ data.group_results | length }} groups. View full report for complete details.
{% endif %}✓ Model Fairness is Excellent
Your model demonstrates strong fairness across demographic groups. Recommendations:
⚠ Model Fairness Requires Attention
Your model shows acceptable fairness but with room for improvement. Recommendations:
✗ Model Fairness Needs Improvement
Your model exhibits significant fairness disparities. Immediate actions recommended:
| {{ key | replace('_', ' ') | title }} | {{ value }} |
|---|