File size: 812 Bytes
5a0bb2f |
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 |
{
"spec_version": "1.0",
"architecture": "resnet34",
"num_classes": 5,
"class_names": [
"Epithelium",
"Stroma",
"Tumor",
"Necrosis",
"Dysplasia"
],
"patch_size_pixels": 350,
"spacing_um_px": 0.25,
"transform": [
{
"name": "Resize",
"arguments": {
"size": 224
}
},
{
"name": "ToTensor"
},
{
"name": "Normalize",
"arguments": {
"mean": [
0.7238,
0.5716,
0.6779
],
"std": [
0.1120,
0.1459,
0.1089
]
}
}
]
}
|