-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "properties_path" in BundleWorkflow (#7542)
Fixes #7541 ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. --------- Signed-off-by: YunLiu <55491388+KumoLiu@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c885100
commit 264b9e4
Showing
4 changed files
with
112 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"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" | ||
}, | ||
"dataset_dir": { | ||
"description": "directory path of the dataset.", | ||
"required": true, | ||
"id": "dataset_dir" | ||
}, | ||
"dataset": { | ||
"description": "PyTorch dataset object for the inference / evaluation logic.", | ||
"required": true, | ||
"id": "dataset" | ||
}, | ||
"evaluator": { | ||
"description": "inference / evaluation workflow engine.", | ||
"required": true, | ||
"id": "evaluator" | ||
}, | ||
"network_def": { | ||
"description": "network module for the inference.", | ||
"required": true, | ||
"id": "network_def" | ||
}, | ||
"inferer": { | ||
"description": "MONAI Inferer object to execute the model computation in inference.", | ||
"required": true, | ||
"id": "inferer" | ||
}, | ||
"dataset_data": { | ||
"description": "data source for the inference / evaluation dataset.", | ||
"required": false, | ||
"id": "dataset::data", | ||
"refer_id": null | ||
}, | ||
"handlers": { | ||
"description": "event-handlers for the inference / evaluation logic.", | ||
"required": false, | ||
"id": "handlers", | ||
"refer_id": "evaluator::val_handlers" | ||
}, | ||
"preprocessing": { | ||
"description": "preprocessing for the input data.", | ||
"required": false, | ||
"id": "preprocessing", | ||
"refer_id": "dataset::transform" | ||
}, | ||
"postprocessing": { | ||
"description": "postprocessing for the model output data.", | ||
"required": false, | ||
"id": "postprocessing", | ||
"refer_id": "evaluator::postprocessing" | ||
}, | ||
"key_metric": { | ||
"description": "the key metric during evaluation.", | ||
"required": false, | ||
"id": "key_metric", | ||
"refer_id": "evaluator::key_val_metric" | ||
} | ||
} |