This project introduces a Y-Net super-resolution neural network that generates high-resolution sodium (Β²Β³Na) images from simultaneously acquired ΒΉH MRF/Β²Β³Na MRI data. The method addresses the challenge of low resolution in sodium MRI, which has been a major barrier to its clinical translation despite its valuable metabolic information content.
β
Super-resolution for Sodium MRI: Enhances low-resolution Β²Β³Na images using simultaneously acquired high-resolution ΒΉH data
β
Y-Net Architecture: Dual-encoder design leveraging both ΒΉH multi-contrast and Β²Β³Na information
β
Clinical Translation: Enables practical sodium MRI with improved resolution for clinical applications
β
Comprehensive Framework: Built on Lightning-Hydra template for robust experimentation
Sodium (Β²Β³Na) MRI can reveal valuable metabolic information, making it potentially useful for clinical diagnosis. However, its low natural abundance in the human body and low gyromagnetic ratio practically prohibit the acquisition of high-resolution (HR) Β²Β³Na images.
This work addresses this limitation by developing a post-processing method that leverages simultaneously acquired ΒΉH MRF data to enhance Β²Β³Na image resolution, making sodium MRI more viable for clinical practice.
Gonzalo Gabriel RodriguezΒΉ,Β², Hector Lise de MouraΒ², Ilias GiannakopoulosΒ², Riccardo LattanziΒ²,Β³,β΄, Ravinder RegatteΒ²,Β³, and Guillaume MadelinΒ²,Β³
ΒΉ NMR Signal Enhancement, Max Planck Institute for Multidisciplinary Sciences, GΓΆttingen, Germany
Β² Bernard and Irene Schwartz Center for Biomedical Imaging, Department of Radiology, New York University School of Medicine, New York, NY, United States
Β³ Vilcek Institute of Graduate Biomedical Sciences, New York University School of Medicine, New York, NY, United States
β΄ Center for Advanced Imaging Innovation and Research, New York University School of Medicine, New York, NY, United States
| Method | SSIM | RMSE | PSNR |
|---|---|---|---|
| Y-Net (Ours) | 0.935 | 0.034 | 28.8 |
| PLS | 0.916 | 0.040 | 28.0 |
| Bi-cubic Interpolation | 0.928 | 0.058 | 24.3 |
- High Similarity: SSIM of 0.935 compared to ground truth HR Β²Β³Na images
- Superior Performance: Outperforms both PLS and bi-cubic interpolation methods
- Fast Inference: ~1.2s on A100 GPU vs ~616s for PLS method
- Clinical Viability: Enables online implementation for clinical use
Schematic diagram of the Y-Net super-resolution architecture showing the dual-encoder design with ΒΉH multi-contrast and Β²Β³Na inputs.
Center slice showing the initial ΒΉH and Β²Β³Na data acquired with 3D simultaneous ΒΉH MRF/Β²Β³Na MRI and the ground truth HR Β²Β³Na acquired with 3D stack-of-stars GRE.
Comparison of acquired LR and HR (ground truth) Β²Β³Na images, the generated HR Β²Β³Na images, and the differences between ground truth and generated HR images for four central slices of the test subject.
Comparison between the Y-Net, PLS and bi-cubic interpolation methods for the central slice of the test subject.
Statistical parameters calculated for each method over the 3D volume showing the superior performance of the Y-Net approach.
The Y-Net is a deep convolutional neural network architecture similar to U-Net but with two encoder paths:
- ΒΉH Path: Processes multi-contrast images (proton density, Tβ, Tβ maps)
- Β²Β³Na Path: Processes low-resolution sodium density images
- Shared Decoder: Combines features from both paths with skip connections
- Acquisition: 7T MAGNETOM (Siemens) with 16-channel-Tx/Rx dual-tuned head coil
- Subjects: 8 healthy volunteers (2 females, 32Β±12 years old)
- Resolution: ΒΉH: 1.5Γ1.5Γ5 mmΒ³, Β²Β³Na: 2.85Γ2.85Γ5 mmΒ³
- Training/Validation: 7 subjects (1540 images: 1386 training, 154 validation)
- Testing: 1 subject (22 images)
- Resolution Ratio: 1.9Γ enhancement in both in-plane directions
- Input Size: 160Γ160 patches
- Optimizer: AdamW with learning rate 0.01
- Scheduler: 20% reduction every 10 epochs
- Epochs: 300 total
- Loss Function: Structural Similarity Index Measure (SSIM)
- Data Augmentation: Rotation and additive Gaussian noise
βββ configs/ # Hydra configuration files
β βββ callbacks/ # Callback configurations
β βββ data/ # Data module configurations
β βββ experiment/ # Experiment configurations
β βββ logger/ # Logger configurations
β βββ model/ # Model configurations
β βββ trainer/ # Trainer configurations
β βββ ...
βββ data/ # Project data directory
βββ logs/ # Training logs and outputs
βββ notebooks/ # Jupyter notebooks for analysis
βββ src/ # Source code
β βββ data/ # Data loading and processing
β βββ models/ # Model implementations
β βββ utils/ # Utility functions
β βββ train.py # Training script
β βββ eval.py # Evaluation script
βββ tests/ # Unit tests
βββ mnf_readme/ # Figures and documentation
β βββ fig1.jpg # Network architecture diagram
β βββ fig2.jpg # Input data visualization
β βββ fig3.jpg # Super-resolution results
β βββ fig4.jpg # Method comparison
β βββ fig5.jpg # Statistical analysis
βββ README.md # This file
# Clone the repository
git clone <repository-url>
cd MNF_SR_hydra
# Create conda environment
conda env create -f environment.yaml
conda activate mnf_sr
# Or install with pip
pip install -r requirements.txt# Train with default configuration
python src/train.py
# Train with specific experiment config
python src/train.py experiment=ynet_super_resolution
# Train with custom parameters
python src/train.py model.lr=1e-4 trainer.max_epochs=300# Evaluate trained model
python src/eval.py ckpt_path="/path/to/checkpoint.ckpt"
# Evaluate with specific metrics
python src/eval.py experiment=eval_super_resolution# Run hyperparameter search
python src/train.py -m hparams_search=ynet_optuna experiment=ynetThe project includes several pre-configured experiments:
ynet: Main Y-Net training configurationablation_single_ynet: Single Y-Net (non-cascaded) ablation study
- Dual-Modal Learning: Leverages both ΒΉH and Β²Β³Na information simultaneously
- Cascaded Refinement: Two-stage processing for enhanced quality
- Clinical Optimization: Fast inference suitable for clinical workflow
- Robust Framework: Built on proven Lightning-Hydra architecture
- Comprehensive Evaluation: Thorough comparison with existing methods
This super-resolution method enables:
- Enhanced Sodium MRI Resolution: From 2.85Γ2.85Γ5 mmΒ³ to effective 1.5Γ1.5Γ5 mmΒ³
- Clinical Translation: Fast inference times suitable for clinical implementation
- Improved Diagnostics: Better visualization of metabolic processes
- Reduced Scan Time: No need for additional high-resolution sodium acquisitions
# Train with custom data module
python src/train.py data=custom_sodium_data
# Use different loss functions
python src/train.py model.loss_fn=l1_loss
# Multi-GPU training
python src/train.py trainer=ddp trainer.devices=4# Train with Weights & Biases logging
python src/train.py logger=wandb
# Train with TensorBoard
python src/train.py logger=tensorboardIf you use this work in your research, please cite:
@article{rodriguez2025super,
title={Super-resolution Y-Net for simultaneous ΒΉH MRF/Β²Β³Na MRI},
author={Rodriguez, Gonzalo Gabriel and de Moura, Hector Lise and Giannakopoulos, Ilias and Lattanzi, Riccardo and Regatte, Ravinder and Madelin, Guillaume},
journal={Magnetic Resonance in Medicine},
year={2025},
note={In preparation}
}The research reported in this publication was supported by the NIH/NIBIB grant R01 EB026456, and performed under the rubric of the Center for Advanced Imaging Innovation and Research, a NIBIB Biomedical Technology Resource Center (P41 EB017183).
-
Madelin G, & Regatte R R. Biomedical applications of sodium MRI in vivo. J. Magn. Reson. Imag., 2013;38:511-529.
-
Yu, Z., Hodono, S., Dergachyova, O., et al. Simultaneous 3D acquisition of ΒΉH MRF and Β²Β³Na MRI. Mag. Res. in Med., 2021, 83(6), 00:1-14.
-
Wang, B, Zhang, B., Yu, Z., et al. A radially interleaved sodium and proton coil array for brain MRI at 7T. NMR Biomed. 2021, e4608.
-
Do W., Seo S., Han Y., et al. Reconstruction of multicontrast MR images through deep learning. Med. Phys., 2020, 47 (3).
-
Wang, Z., Bovik, A.C., Sheikh, H.R., Simoncelli, E.P. Image quality assessment: from error visibility to structural similarity. IEEE Trans. on Imag. Process. 2004;13(4),600β612.
-
Rodriguez G.G., Yu Z., Shaykevich S., et al. Super-resolution of sodium images from simultaneous ΒΉH MRF/Β²Β³Na MRI acquisition. NMR Biomed., 2023, vol 36, e4959.
For questions and collaboration:
- Hector Lise de Moura: [hector.demoura@nyulangone.org]
- Guillaume Madelin: [guillaume.madelin@nyulangone.org]