Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP]Add MONAI bundle operator #533

Draft
wants to merge 15 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
add properties file for backup
Signed-off-by: binliu <[email protected]>
  • Loading branch information
binliunls committed Oct 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 25623d6c6a29a2da2c136efbe9f1be2132af3974
53 changes: 53 additions & 0 deletions operators/medical_imaging/operators/properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"train": {
"bundle_root": {
"description": "root path of the bundle.",
"required": true,
"id": "bundle_root"
},
"device": {
"description": "target device to execute the bundle workflow.",
"required": true,
"id": "device"
},
"dataflow": {
"description": "dataflow to execute the bundle workflow.",
"required": true,
"id": "dataflow"
}
},
"infer": {
"bundle_root": {
"description": "root path of the bundle.",
"required": true,
"id": "bundle_root"
},
"device": {
"description": "target device to execute the bundle workflow.",
"required": true,
"id": "device"
},
"dataflow": {
"description": "dataflow to execute the bundle workflow.",
"required": true,
"id": "dataflow"
}
},
"meta": {
"version": {
"description": "bundle version",
"required": true,
"id": "_meta_::version"
},
"channel_def": {
"description": "channel definition for the prediction",
"required": false,
"id": "_meta_::network_data_format::outputs::pred::channel_def"
},
"type": {
"description": "data type of the input image",
"required": true,
"id": "_meta_::network_data_format::outputs::pred::type"
}
}
}