Evaluates a deep learning object detection and classification system for identifying malignant lesions in mammographic images. It probes the model's ability to handle high-resolution medical imaging data and diverse lesion morphologies (e.g., microcalcifications, masses) using deformable convolutions. Use when the user wants to benchmark on Optimam, or asks about evaluating this task. Reports AUC.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill optimam-mammography-cad-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Optimam Mammography Cad Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-optimam-mammography-cad-eval)More formats (shields.io, HTML) on the badges page.
---
name: optimam-mammography-cad-eval
description: Evaluates a deep learning object detection and classification system for identifying malignant lesions in mammographic images. It probes the model's ability to handle high-resolution medical imaging data and diverse lesion morphologies (e.g., microcalcifications, masses) using deformable convolutions. Use when the user wants to benchmark on Optimam, or asks about evaluating this task. Reports AUC.
metadata:
skill_kind: dataset_eval
source_arxiv: 1902.07323
bibtex_key: morrell2019largescale
confidence: medium
---
# optimam-mammography-cad-eval
> Large-scale mammography CAD with Deformable Conv-Nets — Morrell et al. (2019) (arXiv:1902.07323, 2019)
## What this evaluates
Evaluates a deep learning object detection and classification system for identifying malignant lesions in mammographic images. It probes the model's ability to handle high-resolution medical imaging data and diverse lesion morphologies (e.g., microcalcifications, masses) using deformable convolutions.
## Datasets
- **Optimam** — total ?; splits: train (-1)
## Metrics
- `AUC` **(primary)** — range: [0, 1]
- Area Under the Receiver Operating Characteristic Curve, measuring the trade-off between true positive rate and false positive rate across classification thresholds.
## Input / output format
**Input**: Whole mammographic images (CC and MLO views) at high resolution (~2545x2545 pixels), potentially augmented via rotations and flips.
**Output**: Probability of malignancy lesion per image/view, aggregated across views and augmentations by taking the mean per laterality and then the maximum over both sides.
## Scoring recipe
```python
fpr, tpr, _ = roc_curve(gold, predictions)
auc = auc(fpr, tpr)
return auc
```
## Common pitfalls
- Aggregation rule is specific: mean over views/augmentations per laterality, then max over sides, not a simple global average.
- High-resolution input (~2545x2545) requires careful memory management and downsampling, affecting feature extraction compared to standard natural image CNNs.
## Evidence (verbatim from paper)
> Each subjects’s probability of malignancy lesion was calculated by computing the mean over views and augmentations for each laterality, and then taking the maximum over the two sides... enabling superior detection performance on the Optimam dataset with an AUC of 0.879 in the DREAMS challenge
## Citation
```bibtex
@misc{morrell2019largescale,
title={Large-scale mammography CAD with Deformable Conv-Nets},
author={Morrell et al. (2019)},
year={2019},
note={arXiv:1902.07323}
}
```
- arXiv: 1902.07323
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!