File size: 2,702 Bytes
0527fcd d018b56 0527fcd d018b56 a153c7e d018b56 a153c7e d018b56 | 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 | ---
license: cc-by-sa-4.0
tags:
- mri
- medical-imaging
- image-reconstruction
- accelerated-mri
- pytorch
- monai
library_name: pytorch
---
# VSSR: View-Specialized Sequential Refinement for Accelerated MRI
**Post-Reconstruction Volumetric Refinement for Accelerated MRI via Cross-Plane Consistency**
*IEEE Engineering in Medicine and Biology Conference (EMBC) 2026 β Paper ID: 4868*
Alexander Nazarov, Nahum Kiryati, Dani Roizen, Gahl Greenberg, Arnaldo Mayer
*Tel-Aviv University & Sheba Medical Center*
---
## Overview
VSSR is a post-reconstruction refinement framework for accelerated MRI. Three view-specialized expert networks refine the volume sequentially β one per anatomical plane (sagittal, axial, coronal) β each correcting the residual artifacts left by the previous stage.
**Code & instructions:** [github.com/MR-Nazarov/VSSR](https://github.com/MR-Nazarov/VSSR)
---
## Model Weights
```
Lexer1/VSSR/
βββ vssr_stage1_sagittal.pth β RDUNet SAC cascade, Stage 1
βββ vssr_stage2_axial.pth β RDUNet SAC cascade, Stage 2
βββ vssr_stage3_coronal.pth β RDUNet SAC cascade, Stage 3 (final output)
βββ baselines/
β βββ sunet_sagittal_8x.pth β Single-view SUNet baseline
β βββ sunet_axial_8x.pth
β βββ sunet_coronal_8x.pth
βββ cascades_8x/
β βββ SAC_final.pth β Best cascade 8Γ (PSNR 31.28 dB on IXI)
βββ cascades_4x/
βββ SAC_final.pth β Best cascade 4Γ
```
### Download
```python
from huggingface_hub import hf_hub_download
path = hf_hub_download(repo_id="Lexer1/VSSR", filename="cascades_8x/SAC_final.pth")
```
Or download all weights at once:
```bash
hf download Lexer1/VSSR --local-dir ./models
```
---
## Training Data
- **IXI dataset** β publicly available at [brain-development.org/ixi-dataset](https://brain-development.org/ixi-dataset/), 8Γ retrospective undersampling
- **Sheba Medical Center** β prospectively accelerated in-house dataset (not publicly available)
---
## Citation
```bibtex
@inproceedings{nazarov2026vssr,
title = {Post-Reconstruction Volumetric Refinement for Accelerated {MRI} via Cross-Plane Consistency},
author = {Nazarov, Alexander and Kiryati, Nahum and Roizen, Dani and Greenberg, Gahl and Mayer, Arnaldo},
booktitle = {2026 IEEE Engineering in Medicine and Biology Conference (EMBC)},
year = {2026},
note = {Paper ID: 4868}
}
```
---
## License
Model weights are licensed under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/).
Code is licensed under MIT β see the [GitHub repository](https://github.com/MR-Nazarov/VSSR).
|