Create config.json
Browse filesThis configuration includes the minimum information needed to run this model. The spec of this configuration may change in the future.
- config.json +22 -0
config.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"num_classes": 2,
|
| 3 |
+
"patch_size_pixels": 350,
|
| 4 |
+
"spacing_um_px": 0.25,
|
| 5 |
+
"class_names": [
|
| 6 |
+
"notumor",
|
| 7 |
+
"tumor"
|
| 8 |
+
],
|
| 9 |
+
"transform": {
|
| 10 |
+
"resize_size": 224,
|
| 11 |
+
"mean": [
|
| 12 |
+
0.7238,
|
| 13 |
+
0.5716,
|
| 14 |
+
0.6779
|
| 15 |
+
],
|
| 16 |
+
"std": [
|
| 17 |
+
0.112,
|
| 18 |
+
0.1459,
|
| 19 |
+
0.1089
|
| 20 |
+
]
|
| 21 |
+
}
|
| 22 |
+
}
|