-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataset.example.json
More file actions
47 lines (47 loc) · 1.3 KB
/
Copy pathdataset.example.json
File metadata and controls
47 lines (47 loc) · 1.3 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
44
45
46
47
{
"name": "DatasetName",
"description": "Dataset Description",
"reference": "Dataset Reference (Where is data from?)",
"licence": "CC-BY-SA 4.0",
"release": "1.0 06/08/2018",
"tensorImageSize": "3D",
"modality": {
"0": "CT"
},
"labels": {
"0": "background",
"1": "class1"
},
"numTraining": 6,
"numTest": 2,
"training": [
{
"image": "./relative/path/to/image_1.nii.gz",
"label": "./relative/path/to/label_1.nii.gz"
},
{
"image": "./relative/path/to/image_2.nii.gz",
"label": "./relative/path/to/label_2.nii.gz"
},
{
"image": "./relative/path/to/image_3.nii.gz",
"label": "./relative/path/to/label_3.nii.gz"
},
{
"image": "./relative/path/to/image_4.nii.gz",
"label": "./relative/path/to/label_4.nii.gz"
},
{
"image": "./relative/path/to/image_5.nii.gz",
"label": "./relative/path/to/label_5.nii.gz"
},
{
"image": "./relative/path/to/image_6.nii.gz",
"label": "./relative/path/to/label_6.nii.gz"
}
],
"test": [
"./relative/path/to/image_7.nii.gz",
"./relative/path/to/image_8.nii.gz"
]
}