-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Add "properties_path" in BundleWorkflow #7542
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
Merged
Merged
Changes from 6 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
129dc88
add properties_path
KumoLiu 5aa4f38
remove ignite based properties
KumoLiu b2ea289
fix unittest
KumoLiu cf34758
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 67670a1
fix ci
KumoLiu cca300e
Merge branch 'bundle' of https://github.com/KumoLiu/MONAI into bundle
KumoLiu e941dde
Merge remote-tracking branch 'yliu/bundle' into bundle
KumoLiu 06d9a34
Revert "Merge remote-tracking branch 'yliu/bundle' into bundle"
KumoLiu 22735af
Revert "Revert "Merge remote-tracking branch 'yliu/bundle' into bundle""
KumoLiu e274826
Revert "Merge remote-tracking branch 'yliu/bundle' into bundle"
KumoLiu d671512
Revert "Merge branch 'bundle' of https://github.com/KumoLiu/MONAI int…
KumoLiu ca90a4b
Revert "remove ignite based properties"
KumoLiu 6526f59
DCO Remediation Commit for YunLiu <55491388+KumoLiu@users.noreply.git…
KumoLiu cc61a92
Merge branch 'dev' into bundle
KumoLiu 54ac375
fix flake8
KumoLiu 40bb130
add determinism for mixup
KumoLiu 5e6edaa
fix mypy
KumoLiu 918cb77
add unittest
KumoLiu 5a90086
Merge remote-tracking branch 'origin/dev' into bundle
KumoLiu 53797a8
Merge branch 'dev' into bundle
KumoLiu b7a21b0
Merge remote-tracking branch 'yliu/bundle' into bundle
KumoLiu a717800
Merge branch 'dev' into bundle
KumoLiu b320035
fix ci
KumoLiu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,126 @@ | ||
| { | ||
| "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" | ||
| }, | ||
| "trainer": { | ||
| "description": "training workflow engine.", | ||
| "required": true, | ||
| "id": "train::trainer" | ||
| }, | ||
| "network_def": { | ||
| "description": "network module for the training.", | ||
| "required": false, | ||
| "id": "network_def" | ||
| }, | ||
| "max_epochs": { | ||
| "description": "max number of epochs to execute the training.", | ||
| "required": true, | ||
| "id": "train::trainer::max_epochs" | ||
| }, | ||
| "train_dataset": { | ||
| "description": "PyTorch dataset object for the training logic.", | ||
| "required": true, | ||
| "id": "train::dataset" | ||
| }, | ||
| "train_inferer": { | ||
| "description": "MONAI Inferer object to execute the model computation in training.", | ||
| "required": true, | ||
| "id": "train::inferer" | ||
| }, | ||
| "train_dataset_data": { | ||
| "description": "data source for the training dataset.", | ||
| "required": false, | ||
| "id": "train::dataset::data", | ||
| "refer_id": null | ||
| }, | ||
| "train_handlers": { | ||
| "description": "event-handlers for the training logic.", | ||
| "required": false, | ||
| "id": "train::handlers", | ||
| "refer_id": "train::trainer::train_handlers" | ||
| }, | ||
| "train_preprocessing": { | ||
| "description": "preprocessing for the training input data.", | ||
| "required": false, | ||
| "id": "train::preprocessing", | ||
| "refer_id": "train::dataset::transform" | ||
| }, | ||
| "train_postprocessing": { | ||
| "description": "postprocessing for the training model output data.", | ||
| "required": false, | ||
| "id": "train::postprocessing", | ||
| "refer_id": "train::trainer::postprocessing" | ||
| }, | ||
| "train_key_metric": { | ||
| "description": "key metric to compute on the training data.", | ||
| "required": false, | ||
| "id": "train::key_metric", | ||
| "refer_id": "train::trainer::key_train_metric" | ||
| }, | ||
| "evaluator": { | ||
| "description": "validation workflow engine.", | ||
| "required": false, | ||
| "id": "validate::evaluator", | ||
| "refer_id": "validator" | ||
| }, | ||
| "val_interval": { | ||
| "description": "validation interval during the training.", | ||
| "required": false, | ||
| "id": "val_interval", | ||
| "refer_id": "interval" | ||
| }, | ||
| "val_handlers": { | ||
| "description": "event-handlers for the validation logic.", | ||
| "required": false, | ||
| "id": "validate::handlers", | ||
| "refer_id": "validate::evaluator::val_handlers" | ||
| }, | ||
| "val_dataset": { | ||
| "description": "PyTorch dataset object for the validation logic.", | ||
| "required": false, | ||
| "id": "validate::dataset", | ||
| "refer_id": "validate::dataloader::dataset" | ||
| }, | ||
| "val_dataset_data": { | ||
| "description": "data source for the validation dataset.", | ||
| "required": false, | ||
| "id": "validate::dataset::data", | ||
| "refer_id": null | ||
| }, | ||
| "val_inferer": { | ||
| "description": "MONAI Inferer object to execute the model computation in validation.", | ||
| "required": false, | ||
| "id": "validate::inferer", | ||
| "refer_id": "validate::evaluator::inferer" | ||
| }, | ||
| "val_preprocessing": { | ||
| "description": "preprocessing for the validation input data.", | ||
| "required": false, | ||
| "id": "validate::preprocessing", | ||
| "refer_id": "validate::dataset::transform" | ||
| }, | ||
| "val_postprocessing": { | ||
| "description": "postprocessing for the validation model output data.", | ||
| "required": false, | ||
| "id": "validate::postprocessing", | ||
| "refer_id": "validate::evaluator::postprocessing" | ||
| }, | ||
| "val_key_metric": { | ||
| "description": "key metric to compute on the validation data.", | ||
| "required": false, | ||
| "id": "validate::key_metric", | ||
| "refer_id": "validate::evaluator::key_val_metric" | ||
| } | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.