Evaluates an automated rule-based pipeline's ability to extract clinical observations from free-text radiology reports. It specifically tests the system's capacity to classify mentions as positive, negative, or uncertain, and to aggregate them into structured labels for 14 predefined observations. Use when the user wants to benchmark on CheXpert, or asks about evaluating this task. Reports F1 score.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill chexpert-label-extraction-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Chexpert Label Extraction Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-chexpert-label-extraction-eval)More formats (shields.io, HTML) on the badges page.
---
name: chexpert-label-extraction-eval
description: Evaluates an automated rule-based pipeline's ability to extract clinical observations from free-text radiology reports. It specifically tests the system's capacity to classify mentions as positive, negative, or uncertain, and to aggregate them into structured labels for 14 predefined observations. Use when the user wants to benchmark on CheXpert, or asks about evaluating this task. Reports F1 score.
metadata:
skill_kind: dataset_eval
source_arxiv: 1901.07031
bibtex_key: irvin2019chexpert
confidence: high
---
# chexpert-label-extraction-eval
> CheXpert: A Large Chest Radiograph Dataset with Uncertainty Labels and Expert Comparison — Irvin et al. (2019) (arXiv:1901.07031, 2019)
## What this evaluates
Evaluates an automated rule-based pipeline's ability to extract clinical observations from free-text radiology reports. It specifically tests the system's capacity to classify mentions as positive, negative, or uncertain, and to aggregate them into structured labels for 14 predefined observations.
## Datasets
- **CheXpert** — total 224316; splits: evaluation (1000)
## Metrics
- `F1 score` **(primary)** — range: [0, 1]
- Harmonic mean of precision and recall for mention extraction, negation detection, and uncertainty classification. Macro- and micro-averages are computed across all 14 observations.
## Input / output format
**Input**: Free-text radiology reports (specifically the Impression section)
**Output**: Structured labels for 14 observations: positive (1), negative, uncertain (u), or blank.
## Scoring recipe
```python
def compute_f1(predictions, gold):
tp = sum(1 for p, g in zip(predictions, gold) if p == g == 1)
fp = sum(1 for p, g in zip(predictions, gold) if p == 1 and g == 0)
fn = sum(1 for p, g in zip(predictions, gold) if p == 0 and g == 1)
precision = tp / (tp + fp) if (tp + fp) > 0 else 0
recall = tp / (tp + fn) if (tp + fn) > 0 else 0
return 2 * precision * recall / (precision + recall) if (precision + recall) > 0 else 0
```
## Common pitfalls
- Uncertainty and blank labels are frequently misclassified as negative or ignored in downstream tasks.
- The 1,000-report evaluation set is used only for labeler feasibility testing, not as a comprehensive benchmark.
## Evidence (verbatim from paper)
> We retrospectively collected chest radiographic studies from Stanford Hospital, performed between October 2002 and July 2017 in both inpatient and outpatient centers, along with their associated radiology reports. From these, we sampled a set of 1000 reports for manual review by a board-certified radiologist to determine feasibility for extraction of observations. Table 2: Performance of the labeler of NIH and our labeler on the report evaluation set on tasks of mention extraction, uncertainty detection, and negation detection, as measured by the F1 score.
## Citation
```bibtex
@misc{irvin2019chexpert,
title={CheXpert: A Large Chest Radiograph Dataset with Uncertainty Labels and Expert Comparison},
author={Irvin et al. (2019)},
year={2019},
note={arXiv:1901.07031}
}
```
- arXiv: 1901.07031
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!