VBoussot commited on
Commit
6dc4717
·
verified ·
1 Parent(s): 447c636

Update MR/app.json

Browse files
Files changed (1) hide show
  1. MR/app.json +31 -1
MR/app.json CHANGED
@@ -3,5 +3,35 @@
3
  "short_description": "<b>Description:</b><br>Supervised MRI (T1-weighted) synthesis model developed as part of the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 1)</a>.<br><br><b>How to cite:</b><br><cite>V. Boussot et al., <i>Why Registration Quality Matters: Enhancing sCT Synthesis with IMPACT-Based Registration</i>, arXiv preprint arXiv:2510.21358, <a href=\"https://doi.org/10.48550/arXiv.2510.21358\">https://doi.org/10.48550/arXiv.2510.21358</a>.</cite>",
4
  "description": "<b>Description:</b><br>Supervised MRI (T1-weighted) synthesis model developed as part of the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 1)</a>.<br><br><b>Architecture:</b><br>Based on a 2.5D UNet++ with a ResNet34 encoder, the model was optimized using the <b>IMPACT-Synth loss</b>, a perceptual loss leveraging semantic priors from <b>SAM 2.1-s</b>. Training was conducted with the <b>KonfAI</b> deep learning framework.<br><br><b>Training data:</b><br>Paired CT–MRI (T1-weighted) volumes from the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 1)</a>, <b>aligned using IMPACT-based registration</b>. Corresponding B-spline deformation fields are available in the <a href=\"https://huggingface.co/datasets/VBoussot/synthrad2025-impact-registration\">SynthRAD2025-IMPACT (aligned)</a> dataset repository.<br><br><b>How to cite:</b><br><cite>V. Boussot et al., <i>Why Registration Quality Matters: Enhancing sCT Synthesis with IMPACT-Based Registration</i>, arXiv preprint arXiv:2510.21358, <a href=\"https://doi.org/10.48550/arXiv.2510.21358\">https://doi.org/10.48550/arXiv.2510.21358</a>.</cite>",
5
  "tta": 2,
6
- "mc_dropout": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }
 
3
  "short_description": "<b>Description:</b><br>Supervised MRI (T1-weighted) synthesis model developed as part of the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 1)</a>.<br><br><b>How to cite:</b><br><cite>V. Boussot et al., <i>Why Registration Quality Matters: Enhancing sCT Synthesis with IMPACT-Based Registration</i>, arXiv preprint arXiv:2510.21358, <a href=\"https://doi.org/10.48550/arXiv.2510.21358\">https://doi.org/10.48550/arXiv.2510.21358</a>.</cite>",
4
  "description": "<b>Description:</b><br>Supervised MRI (T1-weighted) synthesis model developed as part of the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 1)</a>.<br><br><b>Architecture:</b><br>Based on a 2.5D UNet++ with a ResNet34 encoder, the model was optimized using the <b>IMPACT-Synth loss</b>, a perceptual loss leveraging semantic priors from <b>SAM 2.1-s</b>. Training was conducted with the <b>KonfAI</b> deep learning framework.<br><br><b>Training data:</b><br>Paired CT–MRI (T1-weighted) volumes from the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 1)</a>, <b>aligned using IMPACT-based registration</b>. Corresponding B-spline deformation fields are available in the <a href=\"https://huggingface.co/datasets/VBoussot/synthrad2025-impact-registration\">SynthRAD2025-IMPACT (aligned)</a> dataset repository.<br><br><b>How to cite:</b><br><cite>V. Boussot et al., <i>Why Registration Quality Matters: Enhancing sCT Synthesis with IMPACT-Based Registration</i>, arXiv preprint arXiv:2510.21358, <a href=\"https://doi.org/10.48550/arXiv.2510.21358\">https://doi.org/10.48550/arXiv.2510.21358</a>.</cite>",
5
  "tta": 2,
6
+ "mc_dropout": false,
7
+ "inputs": {
8
+ "MR": {
9
+ "display_name": "MR",
10
+ "volume_type": "VOLUME",
11
+ "required": true
12
+ }
13
+ },
14
+ "outputs": {
15
+ "sCT": {
16
+ "display_name": "sCT",
17
+ "volume_type": "VOLUME",
18
+ "required": true
19
+ }
20
+ },
21
+ "inputs_evaluations": {
22
+ "Image": {
23
+ "Evaluation.yml": {
24
+ "sCT": {
25
+ "display_name": "sCT",
26
+ "volume_type": "VOLUME",
27
+ "required": true
28
+ },
29
+ "CT": {
30
+ "display_name": "CT",
31
+ "volume_type": "VOLUME",
32
+ "required": true
33
+ }
34
+ }
35
+ }
36
+ }
37
  }