Lexer1 commited on
Commit
d018b56
Β·
verified Β·
1 Parent(s): 308598e

Add model card

Browse files
Files changed (1) hide show
  1. README.md +85 -1
README.md CHANGED
@@ -1,3 +1,87 @@
1
  ---
2
- license: cc-by-nc-sa-4.0
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-sa-4.0
3
+ tags:
4
+ - mri
5
+ - medical-imaging
6
+ - image-reconstruction
7
+ - accelerated-mri
8
+ - pytorch
9
+ - monai
10
+ library_name: pytorch
11
  ---
12
+
13
+ # VSSR: View-Specialized Sequential Refinement for Accelerated MRI
14
+
15
+ **Post-Reconstruction Volumetric Refinement for Accelerated MRI via Cross-Plane Consistency**
16
+
17
+ *IEEE Engineering in Medicine and Biology Conference (EMBC) 2026 β€” Paper ID: 4868*
18
+
19
+ Alexander Nazarov, Nahum Kiryati, Dani Roizen, Gahl Greenberg, Arnaldo Mayer
20
+ *Tel-Aviv University & Sheba Medical Center*
21
+
22
+ ---
23
+
24
+ ## Overview
25
+
26
+ 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.
27
+
28
+ **Code & instructions:** [github.com/MR-Nazarov/VSSR](https://github.com/MR-Nazarov/VSSR)
29
+
30
+ ---
31
+
32
+ ## Model Weights
33
+
34
+ ```
35
+ Lexer1/VSSR/
36
+ β”œβ”€β”€ vssr_stage1_sagittal.pth ← RDUNet SAC cascade, Stage 1
37
+ β”œβ”€β”€ vssr_stage2_axial.pth ← RDUNet SAC cascade, Stage 2
38
+ β”œβ”€β”€ vssr_stage3_coronal.pth ← RDUNet SAC cascade, Stage 3 (final output)
39
+ β”œβ”€β”€ baselines/
40
+ β”‚ β”œβ”€β”€ sunet_sagittal_8x.pth ← Single-view SUNet baseline
41
+ β”‚ β”œβ”€β”€ sunet_axial_8x.pth
42
+ β”‚ └── sunet_coronal_8x.pth
43
+ └── cascades_8x/
44
+ └── SAC_final.pth ← Best cascade (PSNR 31.28 dB on IXI 8Γ—)
45
+ ```
46
+
47
+ ### Download
48
+
49
+ ```python
50
+ from huggingface_hub import hf_hub_download
51
+
52
+ path = hf_hub_download(repo_id="Lexer1/VSSR", filename="vssr_stage3_coronal.pth")
53
+ ```
54
+
55
+ Or download all weights at once:
56
+
57
+ ```bash
58
+ hf download Lexer1/VSSR --local-dir ./models
59
+ ```
60
+
61
+ ---
62
+
63
+ ## Training Data
64
+
65
+ - **IXI dataset** β€” publicly available at [brain-development.org/ixi-dataset](https://brain-development.org/ixi-dataset/), 8Γ— retrospective undersampling
66
+ - **Sheba Medical Center** β€” prospectively accelerated in-house dataset (not publicly available)
67
+
68
+ ---
69
+
70
+ ## Citation
71
+
72
+ ```bibtex
73
+ @inproceedings{nazarov2026vssr,
74
+ title = {Post-Reconstruction Volumetric Refinement for Accelerated {MRI} via Cross-Plane Consistency},
75
+ author = {Nazarov, Alexander and Kiryati, Nahum and Roizen, Dani and Greenberg, Gahl and Mayer, Arnaldo},
76
+ booktitle = {2026 IEEE Engineering in Medicine and Biology Conference (EMBC)},
77
+ year = {2026},
78
+ note = {Paper ID: 4868}
79
+ }
80
+ ```
81
+
82
+ ---
83
+
84
+ ## License
85
+
86
+ Model weights are licensed under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/).
87
+ Code is licensed under MIT β€” see the [GitHub repository](https://github.com/MR-Nazarov/VSSR).