Update config.json with indentation
Browse files- config.json +37 -1
config.json
CHANGED
@@ -1 +1,37 @@
|
|
1 |
-
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"spec_version": "1.0",
|
3 |
+
"architecture": "resnet34",
|
4 |
+
"num_classes": 2,
|
5 |
+
"class_names": [
|
6 |
+
"notumor",
|
7 |
+
"tumor"
|
8 |
+
],
|
9 |
+
"patch_size_pixels": 350,
|
10 |
+
"spacing_um_px": 0.25,
|
11 |
+
"transform": [
|
12 |
+
{
|
13 |
+
"name": "Resize",
|
14 |
+
"arguments": {
|
15 |
+
"size": 224
|
16 |
+
}
|
17 |
+
},
|
18 |
+
{
|
19 |
+
"name": "ToTensor"
|
20 |
+
},
|
21 |
+
{
|
22 |
+
"name": "Normalize",
|
23 |
+
"arguments": {
|
24 |
+
"mean": [
|
25 |
+
0.7238,
|
26 |
+
0.5716,
|
27 |
+
0.6779
|
28 |
+
],
|
29 |
+
"std": [
|
30 |
+
0.112,
|
31 |
+
0.1459,
|
32 |
+
0.1089
|
33 |
+
]
|
34 |
+
}
|
35 |
+
}
|
36 |
+
]
|
37 |
+
}
|