Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -26,4 +26,104 @@ configs:
|
|
| 26 |
data_files:
|
| 27 |
- split: train
|
| 28 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
data_files:
|
| 27 |
- split: train
|
| 28 |
path: data/train-*
|
| 29 |
+
license: cc-by-nc-sa-4.0
|
| 30 |
+
task_categories:
|
| 31 |
+
- image-classification
|
| 32 |
+
language:
|
| 33 |
+
- en
|
| 34 |
+
tags:
|
| 35 |
+
- mri
|
| 36 |
+
- medical
|
| 37 |
+
- cardiac
|
| 38 |
+
- imaging
|
| 39 |
+
pretty_name: Automated Cardiac Diagnosis Challenge
|
| 40 |
+
size_categories:
|
| 41 |
+
- 10K<n<100K
|
| 42 |
---
|
| 43 |
+
|
| 44 |
+
# Automated Cardiac Diagnosis Challenge (ACDC)
|
| 45 |
+
|
| 46 |
+
This dataset contains materials from the *Automated Cardiac Diagnosis Challenge (ACDC)* introduced during MICCAI 2017 by Bernard et al., designed to advance research in **cardiac MRI analysis, representation learning, and automated cardiac disease understanding**.
|
| 47 |
+
|
| 48 |
+
The dataset includes cine cardiac MRI acquisitions from healthy subjects and patients with multiple cardiac pathologies.
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
## 🫀 Dataset Description
|
| 52 |
+
|
| 53 |
+
This repository provides a **2D slice-based version** of the original ACDC cardiac MRI dataset, designed for efficient deep learning and representation learning workflows.
|
| 54 |
+
|
| 55 |
+
Each entry corresponds to a **single 2D cardiac MRI slice** extracted from a cine cardiac MRI sequence.
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
## 📦 Dataset Structure
|
| 59 |
+
|
| 60 |
+
Each dataset entry contains:
|
| 61 |
+
|
| 62 |
+
- `volume_id` → Unique identifier for the MRI volume/patient
|
| 63 |
+
- `time_id` → Temporal frame index within the cardiac cycle
|
| 64 |
+
- `slice_id` → Slice index within the volume
|
| 65 |
+
- `image` → 2D cardiac MRI slice
|
| 66 |
+
- `width` → Image width
|
| 67 |
+
- `height` → Image height
|
| 68 |
+
|
| 69 |
+
## Split
|
| 70 |
+
The original dataset marks patients from 1 to 100 as training and 101 to 150 as testing.
|
| 71 |
+
In this dataset the train split contains all the patients and it is for the user to decide the split.
|
| 72 |
+
|
| 73 |
+
## ❤️ Clinical Categories
|
| 74 |
+
|
| 75 |
+
The original ACDC dataset includes subjects from the following groups:
|
| 76 |
+
|
| 77 |
+
- Healthy controls (NOR) (20 Training + 10 Testing)
|
| 78 |
+
- Myocardial infarction (MINF) (20 Training + 10 Testing)
|
| 79 |
+
- Dilated cardiomyopathy (DCM) (20 Training + 10 Testing)
|
| 80 |
+
- Hypertrophic cardiomyopathy (HCM) (20 Training + 10 Testing)
|
| 81 |
+
- Abnormal right ventricle (RV) (20 Training + 10 Testing)
|
| 82 |
+
|
| 83 |
+
|
| 84 |
+
## Use
|
| 85 |
+
|
| 86 |
+
```python
|
| 87 |
+
from datasets import load_dataset
|
| 88 |
+
import matplotlib.pyplot as plt
|
| 89 |
+
|
| 90 |
+
dataset = load_dataset("chehablaborg/acdc_2d", split="train")
|
| 91 |
+
|
| 92 |
+
sample_id = 314
|
| 93 |
+
|
| 94 |
+
image = dataset[sample_id]["image"]
|
| 95 |
+
time_id = dataset[sample_id]["time_id"]
|
| 96 |
+
slice_id = dataset[sample_id]["slice_id"]
|
| 97 |
+
|
| 98 |
+
plt.imshow(image, cmap="gray")
|
| 99 |
+
plt.title(f"time={time_id}, slice={slice_id}")
|
| 100 |
+
plt.axis("off")
|
| 101 |
+
plt.show()
|
| 102 |
+
```
|
| 103 |
+
|
| 104 |
+
|
| 105 |
+
## 📚 Citation
|
| 106 |
+
|
| 107 |
+
If you use this dataset, please mention us https://chehablab.com in an acknowledgement and cite the original publication:
|
| 108 |
+
|
| 109 |
+
```bibtex
|
| 110 |
+
@article{bernard2018deep,
|
| 111 |
+
title={Deep Learning Techniques for Automatic MRI Cardiac Multi-structures Segmentation and Diagnosis: Is the Problem Solved?},
|
| 112 |
+
author={Bernard, Olivier and Lalande, Alain and Zotti, Cl{\'e}ment and Cervenansky, Fr{\'e}d{\'e}ric and others},
|
| 113 |
+
journal={IEEE Transactions on Medical Imaging},
|
| 114 |
+
volume={37},
|
| 115 |
+
number={11},
|
| 116 |
+
pages={2514--2525},
|
| 117 |
+
year={2018},
|
| 118 |
+
month={nov},
|
| 119 |
+
doi={10.1109/TMI.2018.2837502}
|
| 120 |
+
}
|
| 121 |
+
```
|
| 122 |
+
|
| 123 |
+
|
| 124 |
+
### License
|
| 125 |
+
This work is licensed under a [Creative Commons CC BY-NC-SA 4.0 License](https://creativecommons.org/licenses/by-nc-sa/4.0/).
|
| 126 |
+
[](https://creativecommons.org/licenses/by-nc-sa/4.0/)
|
| 127 |
+
|
| 128 |
+
|
| 129 |
+
[Chehab Lab](https://chehablab.com) @ 2026
|