forked from FraggeGaming/ThesisInferenceServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.json
More file actions
43 lines (43 loc) · 1.29 KB
/
models.json
File metadata and controls
43 lines (43 loc) · 1.29 KB
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
[
{
"id": 1,
"title": "CT-to-PET (CL_ff)",
"description": "Converts CT scans to synthetic PET images. Trained with curriculum learning with a forgetting factor",
"inputModality": "CT",
"outputModality": "PET",
"region": "Total Body",
"modelPath": "CL_ff_0.8_v2",
"networkName": "BEST_final_400"
},
{
"id": 2,
"title": "CT-to-PET (Total Body)",
"description": "Converts full-body CT scans to PET.",
"inputModality": "CT",
"outputModality": "PET",
"region": "Total Body",
"modelPath": "Test_switch",
"networkName": "BEST_final_200"
},
{
"id": 3,
"title": "CT-to-PET (Curriculum learning)",
"description": "Converts full-body CT scans to PET. Trained with a curriculum learning strategy",
"inputModality": "CT",
"outputModality": "PET",
"region": "Total Body",
"modelPath": "CL_baseline",
"networkName": "BEST_final_400"
}
,
{
"id": 4,
"title": "CT-to-PET (CL_sampling)",
"description": "Converts full-body CT scans to PET. Trained with a sampling strategy",
"inputModality": "CT",
"outputModality": "PET",
"region": "Total Body",
"modelPath": "CL_sampling",
"networkName": "BEST_final_400"
}
]