Instructions to use sid512206/CardioNet-XL with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use sid512206/CardioNet-XL with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://sid512206/CardioNet-XL") - Notebooks
- Google Colab
- Kaggle
File size: 10,132 Bytes
3f35d86 9bbd9c4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | ---
license: mit
language:
- en
tags:
- medical
---
# CardioNet-XL π«
[](https://huggingface.co/sid512206/CardioNet-XL)
[](https://www.tensorflow.org/)
[](https://physionet.org/content/ptb-xl/)
**CardioNet-XL** is a specialized 1D Convolutional Neural Network (CNN) designed for multi-label classification of cardiac abnormalities from ECG signal data. Trained on the **PTB-XL dataset**, the model is optimized to detect five specific classes, providing a high-precision screening tool for clinical decision support.
---
## π Table of Contents
- [Features](#-features)
- [Dataset](#-dataset)
- [Model Architecture](#-model-architecture)
- [Performance Metrics](#-performance-metrics)
- [Installation](#-installation)
- [Quick Start](#-quick-start)
- [Training Details](#-training-details)
- [Clinical Applications](#-clinical-applications)
- [Citation](#-citation)
- [License](#-license)
---
## β¨ Features
- **Multi-label Classification**: Simultaneously detects 5 cardiac abnormalities
- **Optimized Thresholds**: Class-specific decision boundaries for clinical use
- **High Specificity**: Excellent performance on ST/T Change (AUC: 0.918) and Normal rhythm (AUC: 0.915)
- **Lightweight Architecture**: 4.1M parameters, suitable for edge deployment
- **Clinical Ready**: Designed with medical decision support in mind
- **Trained on Large-Scale Data**: Leverages the comprehensive PTB-XL dataset
---
## π Dataset
### PTB-XL: Large Publicly Available Electrocardiography Dataset
CardioNet-XL is trained on the **PTB-XL database**, one of the largest publicly available ECG datasets for machine learning applications.
#### Dataset Characteristics
- **Size**: 21,837 clinical 12-lead ECG records
- **Duration**: 10 seconds per record
- **Sampling Rates**: 100 Hz and 500 Hz available
- **Patients**: 18,885 unique patients
- **Annotations**: Expert-validated diagnostic labels
- **Source**: Physikalisch-Technische Bundesanstalt (PTB), Germany
- **Time Period**: October 1989 to June 1996
#### Clinical Labels
The dataset includes comprehensive annotations for:
- **Diagnostic Classes**: Normal ECG, Myocardial Infarction, ST/T Changes, Conduction Disturbances, Hypertrophy, and more
- **Form Annotations**: Detailed morphological descriptions
- **Rhythm Annotations**: Heart rhythm classifications
- **Demographics**: Age, sex, and clinical metadata
#### Access the Dataset
```bash
# Download from PhysioNet
wget -r -N -c -np https://physionet.org/files/ptb-xl/1.0.3/
```
**Citation for PTB-XL Dataset**:
```bibtex
@article{wagner2020ptbxl,
title={PTB-XL, a large publicly available electrocardiography dataset},
author={Wagner, Patrick and Strodthoff, Nils and Bousseljot, Ralf-Dieter and Kreiseler, Dieter and Lunze, Fatima I and Samek, Wojciech and Schaeffter, Tobias},
journal={Scientific Data},
volume={7},
number={1},
pages={154},
year={2020},
publisher={Nature Publishing Group}
}
```
**Dataset Link**: [PTB-XL on PhysioNet](https://physionet.org/content/ptb-xl/)
---
## ποΈ Model Architecture
CardioNet-XL utilizes a deep 1D-CNN architecture with **4.1M trainable parameters**. The model processes raw ECG signals through three convolutional blocks followed by a dense classification head.
### Architecture Overview
| Layer Type | Output Shape | Parameters |
|------------|--------------|------------|
| **Conv1D Block 1** (32 filters) | (None, 1000, 32) | 2,720 |
| BatchNormalization | (None, 1000, 32) | 128 |
| MaxPooling1D | (None, 500, 32) | 0 |
| **Conv1D Block 2** (64 filters) | (None, 500, 64) | 10,304 |
| BatchNormalization | (None, 500, 64) | 256 |
| MaxPooling1D | (None, 250, 64) | 0 |
| **Conv1D Block 3** (128 filters) | (None, 250, 128) | 24,704 |
| BatchNormalization | (None, 250, 128) | 512 |
| MaxPooling1D | (None, 125, 128) | 0 |
| Flatten | (None, 16000) | 0 |
| **Dense** (256 units) | (None, 256) | 4,096,256 |
| Dropout (0.5) | (None, 256) | 0 |
| **Output Dense** (5 units) | (None, 5) | 1,285 |
**Total Trainable Parameters**: 4,135,717 (15.78 MB)
---
## π Performance Metrics
### Classification Report
The model demonstrates strong discriminative performance across major cardiac conditions:
| Class | Precision | Recall | F1-Score | Support |
|-------|-----------|--------|----------|---------|
| **NORM** (Normal) | 0.86 | 0.70 | 0.77 | 963 |
| **MI** (Myocardial Infarction) | 0.86 | 0.26 | 0.39 | 550 |
| **STTC** (ST/T Change) | 0.87 | 0.38 | 0.53 | 506 |
| **CD** (Conduction Disturbance) | 0.93 | 0.35 | 0.51 | 496 |
| **HYP** (Hypertrophy) | 1.00 | 0.01 | 0.02 | 262 |
| **Micro Average** | 0.87 | 0.43 | 0.57 | 2777 |
| **Macro Average** | 0.90 | 0.34 | 0.44 | 2777 |
### Optimal Decision Thresholds
Class-specific thresholds optimized for clinical sensitivity-specificity balance:
- **NORM**: 0.17
- **MI**: 0.34
- **STTC**: 0.43
- **CD**: 0.41
- **HYP**: 0.33
### ROC-AUC Scores
- **STTC**: 0.918
- **NORM**: 0.915
- **MI**: Strong performance
- **CD**: Strong performance
---
## π§ Installation
### Prerequisites
```bash
pip install tensorflow>=2.0.0 numpy pandas scikit-learn matplotlib wfdb
```
### Clone Repository
```bash
git clone https://github.com/yourusername/CardioNet-XL.git
cd CardioNet-XL
```
---
## π Quick Start
### Load Model and Predict
```python
import tensorflow as tf
import numpy as np
# Load the pre-trained model
model = tf.keras.models.load_model('cardionet_xl.h5')
# Define optimal thresholds for each class
thresholds = np.array([0.17, 0.34, 0.43, 0.41, 0.33])
class_labels = ['NORM', 'MI', 'STTC', 'CD', 'HYP']
# Load your ECG data (shape: [batch_size, 1000, channels])
ecg_data = np.load('your_ecg_data.npy')
# Get model predictions
predictions = model.predict(ecg_data)
# Apply optimal thresholds
binary_predictions = (predictions > thresholds).astype(int)
# Display results
for i, sample in enumerate(binary_predictions):
detected_conditions = [class_labels[j] for j, pred in enumerate(sample) if pred == 1]
print(f"Sample {i}: {', '.join(detected_conditions) if detected_conditions else 'No abnormalities detected'}")
```
### Input Data Format
- **Shape**: `(batch_size, 1000, channels)`
- **Type**: Normalized ECG signal (recommend z-score normalization)
- **Sampling Rate**: 500 Hz (downsampled from PTB-XL)
- **Duration**: 2 seconds per sample
### Loading PTB-XL Data
```python
import wfdb
import pandas as pd
# Load PTB-XL metadata
metadata = pd.read_csv('ptb-xl/ptbxl_database.csv')
# Load a single record
record = wfdb.rdsamp('ptb-xl/records500/00000/00001_hr')
ecg_signal = record[0] # ECG data
```
---
## π Training Details
### Training Configuration
- **Dataset**: PTB-XL (500 Hz sampling rate)
- **Train/Test Split**: Standard PTB-XL split (stratified by patient)
- **Optimizer**: Adam
- **Loss Function**: Binary Crossentropy
- **Epochs**: Early stopping at Epoch 4 (optimal generalization)
- **Batch Size**: 32
- **Validation Split**: 20%
- **Data Augmentation**: Optional noise injection and time shifting
### Training Observations
- Consistent decrease in training loss
- Validation loss begins to rise after Epoch 4, indicating optimal stopping point
- Model achieves peak performance early in training
- Class imbalance addressed through weighted loss function
---
## π₯ Clinical Applications
CardioNet-XL is designed for:
- **Automated ECG Screening**: First-line triage in clinical settings
- **Remote Monitoring**: Wearable device integration
- **Emergency Departments**: Rapid preliminary assessment
- **Telemedicine**: Remote cardiac evaluation support
- **Research**: Large-scale ECG analysis
- **Education**: Teaching tool for ECG interpretation
**β οΈ Important**: This model is intended for research and clinical decision *support* only. It should not replace professional medical diagnosis.
---
## π Citation
If you use CardioNet-XL in your research, please cite:
```bibtex
@software{cardionet_xl_2024,
title={CardioNet-XL: Multi-label ECG Classification using 1D CNNs},
author={Your Name},
year={2024},
url={https://huggingface.co/sid512206/CardioNet-XL}
}
@article{wagner2020ptbxl,
title={PTB-XL, a large publicly available electrocardiography dataset},
author={Wagner, Patrick and Strodthoff, Nils and Bousseljot, Ralf-Dieter and Kreiseler, Dieter and Lunze, Fatima I and Samek, Wojciech and Schaeffter, Tobias},
journal={Scientific Data},
volume={7},
number={1},
pages={154},
year={2020},
publisher={Nature Publishing Group}
}
```
---
## π License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
**Note**: The PTB-XL dataset is licensed under the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).
---
## π€ Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
### Areas for Contribution
- Model architecture improvements
- Additional cardiac condition classifications
- Explainability and visualization tools
- Deployment scripts for clinical environments
- Documentation improvements
---
## π§ Contact
For questions or collaborations, please reach out via:
- GitHub Issues
- Email: [your.email@example.com]
---
## π Acknowledgments
- **Dataset**: [PTB-XL ECG Database](https://physionet.org/content/ptb-xl/) - Wagner et al., 2020
- **PhysioNet**: For hosting and maintaining open medical datasets
- **Framework**: TensorFlow/Keras
- **Inspiration**: Clinical need for automated ECG interpretation
- **Community**: All contributors and researchers advancing cardiac AI
---
## π Related Resources
- [PTB-XL Dataset Paper](https://www.nature.com/articles/s41597-020-0495-6)
- [PhysioNet](https://physionet.org/)
- [ECG Interpretation Guide](https://litfl.com/ecg-library/)
- [TensorFlow Documentation](https://www.tensorflow.org/)
---
**Dataset**: [PTB-XL on PhysioNet](https://physionet.org/content/ptb-xl/) |