VBoussot commited on
Commit
447c636
·
verified ·
1 Parent(s): 3a7efa2

Update CBCT/app.json

Browse files
Files changed (1) hide show
  1. CBCT/app.json +33 -1
CBCT/app.json CHANGED
@@ -3,5 +3,37 @@
3
  "short_description": "<b>Description:</b><br>Supervised CBCT synthesis model developed as part of the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 2)</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 CBCT synthesis model developed as part of the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 2)</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–CBCT volumes from the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 2)</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 CBCT synthesis model developed as part of the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 2)</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 CBCT synthesis model developed as part of the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 2)</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–CBCT volumes from the <a href=\"https://synthrad2025.grand-challenge.org/\">SynthRAD 2025 Challenge (Task 2)</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
+ "CBCT": {
9
+ "display_name": "CBCT",
10
+ "volume_type": "VOLUME",
11
+ "required": true
12
+ }
13
+ },
14
+
15
+ "outputs": {
16
+ "sCT": {
17
+ "display_name": "sCT",
18
+ "volume_type": "VOLUME",
19
+ "required": true
20
+ }
21
+ },
22
+
23
+ "inputs_evaluations": {
24
+ "Image": {
25
+ "Evaluation.yml": {
26
+ "sCT": {
27
+ "display_name": "sCT",
28
+ "volume_type": "VOLUME",
29
+ "required": true
30
+ },
31
+ "CT": {
32
+ "display_name": "CT",
33
+ "volume_type": "VOLUME",
34
+ "required": true
35
+ }
36
+ }
37
+ }
38
+ }
39
  }