This benchmark probes the intersectional fairness of computer vision models by evaluating their performance across diverse demographic attributes (e.g., skin tone, gender presentation, hair type) and person-related categories (e.g., occupations, hobbies). It measures whether models exhibit systematic performance disparities when detecting, classifying, or segmenting individuals with different attribute combinations. Use when the user wants to benchmark on FACET, or asks about evaluating this ...
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill facet-fairness-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Facet Fairness Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-facet-fairness-eval)More formats (shields.io, HTML) on the badges page.
---
name: facet-fairness-eval
description: This benchmark probes the intersectional fairness of computer vision models by evaluating their performance across diverse demographic attributes (e.g., skin tone, gender presentation, hair type) and person-related categories (e.g., occupations, hobbies). It measures whether models exhibit systematic performance disparities when detecting, classifying, or segmenting individuals with different attribute combinations. Use when the user wants to benchmark on FACET, or asks about evaluating this task. Reports accuracy / mAP / mIoU.
metadata:
skill_kind: dataset_eval
source_arxiv: 2309.00035
bibtex_key: gustafson2023facet
confidence: medium
---
# facet-fairness-eval
> FACET: Fairness in Computer Vision Evaluation Benchmark — Gustafson et al. (2023) (arXiv:2309.00035, 2023)
## What this evaluates
This benchmark probes the intersectional fairness of computer vision models by evaluating their performance across diverse demographic attributes (e.g., skin tone, gender presentation, hair type) and person-related categories (e.g., occupations, hobbies). It measures whether models exhibit systematic performance disparities when detecting, classifying, or segmenting individuals with different attribute combinations.
## Datasets
- **FACET** — total 32000; splits: test (-1)
## Metrics
- `accuracy / mAP / mIoU` **(primary)** — range: [0, 1]
- Standard computer vision metrics are computed for classification, detection, and segmentation tasks respectively. Performance is then stratified by 13 sensitive demographic attributes and their intersections to quantify disparity.
## Input / output format
**Input**: RGB images containing multiple people, each annotated with person-related categories (52 classes) and 13 sensitive demographic attributes, along with ground-truth bounding boxes and segmentation masks.
**Output**: Per-image predictions including class labels, bounding box coordinates, and/or segmentation masks for each detected person.
## Scoring recipe
```python
def compute_fairness_metrics(preds, gold, attrs):
results = {}
for attr, values in attrs.items():
for val in values:
subset_gold = [g for g in gold if attrs[g['id']][attr] == val]
subset_pred = [p for p in preds if attrs[p['id']][attr] == val]
results[f'{attr}_{val}'] = calculate_metric(subset_pred, subset_gold)
return results
```
## Common pitfalls
- Evaluating only single demographic attributes instead of intersectional combinations, which masks compounded biases.
- Ignoring the long-tailed distribution of the 52 person categories, which can skew aggregate performance metrics.
- Using image-level annotations instead of person-level bounding boxes/masks, leading to incorrect per-instance fairness calculations.
## Evidence (verbatim from paper)
> The goal of our benchmark is to evaluate and analyze how vision models perform across different demographic and additional attributes for different categories of people. This analysis requires (1) images that contain people with a diverse set of attributes and (2) images that contain people matching a variety of person-related categories.
## Citation
```bibtex
@misc{gustafson2023facet,
title={FACET: Fairness in Computer Vision Evaluation Benchmark},
author={Gustafson et al. (2023)},
year={2023},
note={arXiv:2309.00035}
}
```
- arXiv: 2309.00035
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!