segmentation_template / configs /metadata.json
project-monai's picture
Upload segmentation_template version 0.0.3
3f29a93 verified
raw
history blame
2.07 kB
{
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
"version": "0.0.3",
"changelog": {
"0.0.3": "update to huggingface hosting",
"0.0.2": "Minor train.yaml clarifications",
"0.0.1": "Initial version"
},
"monai_version": "1.4.0",
"pytorch_version": "2.4.0",
"numpy_version": "1.24.4",
"optional_packages_version": {
"nibabel": "5.2.1",
"pytorch-ignite": "0.4.11"
},
"name": "Segmentation Template",
"task": "Segmentation of randomly generated spheres in 3D images",
"description": "This is a template bundle for segmenting in 3D, take this as a basis for your own bundles.",
"authors": "Eric Kerfoot",
"copyright": "Copyright (c) 2023 MONAI Consortium",
"network_data_format": {
"inputs": {
"image": {
"type": "image",
"format": "magnitude",
"modality": "none",
"num_channels": 1,
"spatial_shape": [
128,
128,
128
],
"dtype": "float32",
"value_range": [],
"is_patch_data": false,
"channel_def": {
"0": "image"
}
}
},
"outputs": {
"pred": {
"type": "image",
"format": "segmentation",
"num_channels": 4,
"spatial_shape": [
128,
128,
128
],
"dtype": "float32",
"value_range": [
0,
3
],
"is_patch_data": false,
"channel_def": {
"0": "background",
"1": "category 1",
"2": "category 2",
"3": "category 3"
}
}
}
}
}