add configuration file
Browse files- config.json +29 -0
config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"spec_version": "1.0",
|
3 |
+
"architecture": "resnet50",
|
4 |
+
"num_classes": 9,
|
5 |
+
"class_names": [
|
6 |
+
"background",
|
7 |
+
"normal_colon_mucosa",
|
8 |
+
"debris",
|
9 |
+
"colorectal_adenocarcinoma_epithelium",
|
10 |
+
"adipose",
|
11 |
+
"mucus",
|
12 |
+
"smooth_muscle",
|
13 |
+
"cancer_associated_stroma",
|
14 |
+
"lymphocytes"
|
15 |
+
],
|
16 |
+
"patch_size_pixels": 224,
|
17 |
+
"spacing_um_px": 0.5,
|
18 |
+
"transform": [
|
19 |
+
{
|
20 |
+
"name": "Resize",
|
21 |
+
"arguments": {
|
22 |
+
"size": 224
|
23 |
+
}
|
24 |
+
},
|
25 |
+
{
|
26 |
+
"name": "ToTensor"
|
27 |
+
}
|
28 |
+
]
|
29 |
+
}
|