---
title: Multisite Breast DCE-MRI Dataset
url: https://www.emergentmind.com/topics/multisite-breast-dce-mri-dataset
type: topic
---

# Multisite Breast DCE-MRI Dataset

A multisite breast DCE-MRI dataset is a compiled resource of dynamic contrast-enhanced magnetic resonance imaging from multiple clinical centers, designed to enable robust development, validation, and benchmarking of machine learning and radiomics models for breast cancer imaging. These datasets integrate pre-treatment T1-weighted DCE-MRI from various international trials or institutions, combining imaging, expert annotations, and harmonized clinical metadata to address tumor segmentation, treatment response prediction, and other clinically relevant tasks. Among such resources, the MAMA-MIA “Multisite Breast DCE-MRI Dataset” has become the current publicly available benchmark for large-scale, high-quality, expert-annotated datasets in this domain [2406.13844].

## 1. Cohort Composition and Site Diversity

The MAMA-MIA dataset aggregates 1,506 pretreatment DCE-MRI studies from four major TCIA collections: ISPY1 (n=171), ISPY2 (n=980), Duke (n=291), and NACT-Pilot (n=64). These source collections span nine or more hospitals and capture heterogeneity in acquisition hardware and protocols representative of real-world clinical practice. The full dataset retains the native distribution of centers and protocols, with no additional balancing or synthetic reweighting applied [2406.13844]. 

Participants include women undergoing neoadjuvant chemotherapy for biopsy-confirmed breast cancer, with inclusion criteria centered on the availability of pre-treatment T1-weighted DCE-MRI and expert-annotated segmentations of the index tumor. The patient-level metadata span demographic, clinical, and imaging-acquisition variables; however, some papers leveraging the dataset (e.g., [2508.01831]) do not further stratify results by site, age, or molecular subtype, while others reference harmonized clinical variables available in the master metadata table [2406.13844].

## 2. Acquisition Protocols and Imaging Parameters

Heterogeneity in image acquisition is a key characteristic and challenge of multisite DCE-MRI datasets. Among MAMA-MIA centers, SIEMENS, GE, and Philips scanners are represented, with field strengths spanning 1.5 T (72%) and 3 T (28%). Acquisition planes vary (ISPY1/NACT sagittal, ISPY2/Duke axial). Up to 11 dynamic phases per study are available, with mean numbers of phases: 3 (ISPY1), 7 (ISPY2), 4 (Duke), 3 (NACT). 

Table of core acquisition details (from master dataset release [2406.13844]):

| Parameter                   | ISPY1        | ISPY2         | Duke         | NACT         | Overall    |
|-----------------------------|--------------|---------------|--------------|--------------|------------|
| Acquisition plane           | Sagittal     | Axial         | Axial        | Sagittal     | –          |
| Field strength              | 1.5 T (100%) | 1.5/3 T       | 1.5/3 T      | 1.5 T (100%) | 1.5/3 T    |
| Mean # phases [min,max]     | 3 [3,6]      | 7 [4,11]      | 4 [3,6]      | 3 [3,7]      | 6 [3,11]   |
| Mean # slices [min,max]     | 64 [44,256]  | 106 [52,256]  | 169 [60,256] | 60 [46,64]   | 111 [44,256]|
| Slice thickness (mm)        | 2.4 [1.5,4.0]| 2.0 [0.8,3.0] | 1.1 [1.0,2.5]| 2.0 [2.0,2.4]| 1.9 [0.8,4.0]|
| Pixel spacing (mm)          | 0.8 [0.4,1.2]| 0.7 [0.3,1.4] | 0.7 [0.5,1.3]| 0.7 [0.4,0.9]| 0.7 [0.3,1.4]|

Specific parameters such as TR, TE, flip angle, injection rates, and coil type are not uniformly reported in summary tables but are available in original DICOM headers. No harmonization of contrast protocols was enforced; agent, dose, and rate vary by trial [2406.13844, 2511.16498]. *This suggests that model robustness to protocol variance is needed and is a focus of recent methodological studies* [2511.16498].

## 3. Annotation Protocols and Ground Truth

Primary tumor and non-mass enhancement regions were annotated by a panel of 16 experts from nine centers, with an average of 9 years’ experience. The workflow involved initial nnU-Net-based automated segmentations within a 3D volume-of-interest (VOI), which were then manually corrected by the experts using Mango (v4.1). Inclusion criteria for annotation focused on the index lesion (mass/NME), explicitly excluding nodes, clips, and benign regions. Each annotator processed approximately 70 cases, with guidelines and consensus criteria enforced for consistency [2406.13844]. 

No formal inter-reader variability metrics (e.g., Dice/ICC) are provided for the final masks, but two radiologists separately rated the quality of automatic masks, and standard distance metrics such as Dice coefficient and 95th-percentile Hausdorff Distance were used [2406.13844]. Protocols for segmentation coverage, exclusion/inclusion, and VOI extent are documented in the dataset release.

## 4. Data Preprocessing and Harmonization

Standardization steps include:
- Resampling all studies to isotropic 1×1×1 mm³ using appropriate interpolation.
- Consistent orientation mapping (sagittal: PSR; axial: LAS).
- Cropping VOIs around the tumor region.
- Z-score intensity normalization over all phases for model input.

No explicit bias-field correction (e.g., N4) or advanced site-harmonization such as ComBat is applied in the master release [2406.13844]. For model development, preprocessing frequently includes 3D patch extraction (e.g., 128×128×128 voxels), random flips, and spatial augmentations [2508.01831]. *A plausible implication is that further harmonization research could mitigate remaining domain shifts.*

## 5. Evaluation Metrics and Benchmarking Procedures

Segmentation and classification are evaluated using well-defined, widely accepted quantitative metrics:

- **Dice coefficient**: 
  $$
  \mathrm{Dice}(P, G) = \frac{2|P \cap G|}{|P| + |G|}
  $$
  where $P$ is the prediction and $G$ is the ground truth [2508.01831].
  
- **Normalized Hausdorff Distance (NormHD)**:
  $$
  \mathrm{NormHD}(P, G) = \frac{1}{D_{\max}} \max \left\{ \sup_{p \in P} \inf_{g \in G} d(p, g), \sup_{g \in G} \inf_{p \in P} d(g, p) \right\}
  $$
  where $d(\cdot,\cdot)$ is Euclidean distance and $D_{\max}$ is the image diagonal [2508.01831].
  
- **Balanced Accuracy** (for pCR classification): 
  $$
  \mathrm{BalancedAccuracy} = \frac{1}{2}\left( \frac{\mathrm{TP}}{\mathrm{TP}+\mathrm{FN}} + \frac{\mathrm{TN}}{\mathrm{TN}+\mathrm{FP}} \right)
  $$
  [2508.01831].

A baseline 3D nnU-Net trained with 5-fold cross-validation achieves mean Dice scores of 0.7620±0.2113 for tumor segmentation [2406.13844]. More recent methods applying large-kernel MedNeXt models report mean Dice of 0.67 (ensemble) and normalized HD of 0.24 in challenge-style validation [2508.01831]. For pCR classification, balanced accuracy averaged 57%, with subgroup performance up to 75% [2508.01831]. No studies report fixed, public splits beyond cross-validation and live leaderboard evaluation.

## 6. Clinical and Imaging Metadata

The dataset includes a harmonized table of 49 variables per patient, spanning:
- Demographic variables: age, ethnicity, BMI, breast implants, bilateral/multifocal cancer.
- Clinical variables: tumor subtype, ER/PR/HER2 status, T/N staging, treatment and outcome metrics.
- Imaging-acquisition variables: scanner manufacturer, field strength, matrix size, number of phases, timing of phases, slice thickness, pixel spacing, orientation, and protocol identifiers [2406.13844].

A subset of studies and model evaluations stratify performance by clinical features such as age or breast density, but many modeling reports focus on aggregate results.

## 7. Limitations, Heterogeneity, and Applications

Heterogeneity in scanner hardware, acquisition protocol, and dynamic sequence timing is intrinsic to the multisite design. This heterogeneity complicates model robustness and domain generalization—justifying techniques such as explicit modeling of phase acquisition times (e.g., via FiLM layers [2511.16498]) and in-depth harmonization [2406.13844, 2511.16498].

Annotation protocols enforce stringent inclusion but inter-reader agreement is not explicitly quantified. No pharmacokinetic mapping (e.g., Tofts parameter images) is included, though all DICOM headers and raw dynamic series support such secondary analyses. The primary use cases are:
- Benchmarking of tumor segmentation algorithms.
- Training and evaluation of radiomics or deep learning models for pCR and survival prediction.
- Cross-domain transfer learning, harmonization studies, and protocol sensitivity analyses.
- Quality control and generative data synthesis [2406.13844, 2508.01831].

## References

- "A large-scale multicenter breast cancer DCE-MRI benchmark dataset with expert segmentations" [2406.13844]
- "Large Kernel MedNeXt for Breast Tumor Segmentation and Self-Normalizing Network for pCR Classification in Magnetic Resonance Images" [2508.01831]
- "Acquisition Time-Informed Breast Tumor Segmentation from Dynamic Contrast-Enhanced MRI" [2511.16498]

Source: https://www.emergentmind.com/topics/multisite-breast-dce-mri-dataset