Views
No views yet
.
├── MICCAI2026_submission_results/ # Directory containing submission prediction files and plots
│ ├── bimamba_code15/ # Proposed Model (sex-conditioned) results on CODE-15%
│ ├── bimamba_code15_agnostic/ # Proposed Model (sex-agnostic) results on CODE-15%
│ ├── bimamba_samitrop/ # Proposed Model (sex-conditioned) results on SaMi-Trop
│ ├── bimamba_samitrop_agnostic/ # Proposed Model (sex-agnostic) results on SaMi-Trop
│ ├── resnet_code15/ # 1D-ResNet Baseline results on CODE-15%
│ └── resnet_samitrop/ # 1D-ResNet Baseline results on SaMi-Trop
├── architecture.svg # SVG visualization of the model architecture
├── LICENSE # MIT License
├── model.pth # Pretrained model weights (Proposed Model - sex-conditioned)MICCAI2026_submission_results/ directory, you will find:inference_predictions.csv: Per-exam predictions containing exam IDs, ground-truth chronological ages, and predicted biological ages.inference_history.csv: Summarized regression evaluation metrics (loss, MAE, RMSE, $R^2$, etc.).patient_predicted_chronological_age.csv & patient_median_predicted_chronological_age.csv: Patient-level consolidated predictions.plots/: Bland-Altman, scatter plots, and age-gap distribution histograms.survival/: Summary text files and adjusted survival curves generated using Cox proportional hazards models.model.pth)model.pth contains the pretrained PyTorch weights for the Proposed Model (sex-conditioned).1import torch
2from model import MultimodalDeepMambaECG
3
4# 1. Instantiate the model matching the submission configuration
5model = MultimodalDeepMambaECG(
6 num_layers=4,
7 hidden_dim=128,
8 num_leads=12,
9 num_sex_classes=2,
10 downsample_factor=8
11)
12
13# 2. Load the state dictionary from model.pth
14checkpoint = torch.load("model.pth", map_location="cpu")
15state_dict = checkpoint["model"]
16model.load_state_dict(state_dict, strict=False)
17model.eval()
18
19# Ready for inference!
20# Input traces shape: [batch_size, 12, seq_len] (e.g., [B, 12, 4096] at 400Hz)
21# Input sex shape: [batch_size] (0 = Female, 1 = Male)
22# Outputs: predicted_age (0-1 range), temporal_attention, lead_attention
23# Multiply predicted_age by 100.0 to obtain age in years.| Dataset / Metric | 1D-ResNet Baseline | Proposed Model (sex-conditioned) | Proposed Model (sex-agnostic) |
|---|---|---|---|
| CODE-15% Dataset1 | |||
| MAE ± STD | 8.44 ± 7.12 | 6.72 ± 5.81 | 6.87 ± 5.88 |
| $R$ ; $R^2$ | 0.84 ; 0.69 | 0.90 ; 0.80 | 0.89 ; 0.79 |
| Pred. Mean ± STD | 52.1 ± 18.7 | 51.6 ± 18.3 | 52.2 ± 18.1 |
| SaMi-Trop Dataset2 | |||
| MAE ± STD | 9.96 ± 7.61 | 7.83 ± 6.30 | 8.06 ± 6.31 |
| $R$ ; $R^2$ | 0.60 ; 0.04 | 0.70 ; 0.38 | 0.69 ; 0.35 |
| Pred. Mean ± STD | 62.6 ± 14.1 | 62.0 ± 12.3 | 62.7 ± 12.0 |
| Model / Age-Gap Group | CODE-15% HR (95% CI) | CODE-15% p-value | SaMi-Trop HR (95% CI) | SaMi-Trop p-value |
|---|---|---|---|---|
| 1D-ResNet Baseline | ||||
| Underestimation | 0.81 (0.76–0.86) | < 0.005 | 0.95 (0.55–1.64) | 0.86 |
| Overestimation | 1.80 (1.68–1.92) | < 0.005 | 2.38 (1.51–3.74) | < 0.005 |
| Proposed Model (sex-conditioned) | ||||
| Underestimation | 0.78 (0.73–0.83) | < 0.005 | 0.86 (0.49–1.50) | 0.59 |
| Overestimation | 2.06 (1.92–2.21) | < 0.005 | 1.76 (1.10–2.80) | 0.02 |
| Proposed Model (sex-agnostic) | ||||
| Underestimation | 0.79 (0.74–0.84) | < 0.005 | 0.67 (0.36–1.23) | 0.19 |
| Overestimation | 1.99 (1.85–2.13) | < 0.005 | 1.32 (0.81–2.13) | 0.26 |
1@inproceedings{bracke2026demographic,
2 title = {Demographic-Conditioned State Space Models for ECG-Based Age Estimation},
3 author = {Bracke, Benjamin and Stang, Andreas and Schmidt, B{\"o}rge and Friedrich, Christoph M.},
4 booktitle = {Medical Image Computing and Computer Assisted Intervention -- MICCAI 2026},
5 year = {2026},
6 publisher = {Springer}
7}