According to my MONAI model zoo experiences, I think meta_file and logging_file are two necessary args.
As for meta_file, it helps a lot to define the requirements of a bundle, and track each time's change.
As for logging_file, it helps to define the logging format, and if we have multiple bundles, it's easier to control the logging data.
These two args are now working well in ConfigWorkflow, but are not required when we define a class that extends to BundleWorkflow directly.
According to my MONAI model zoo experiences, I think
meta_fileandlogging_fileare two necessary args.As for
meta_file, it helps a lot to define the requirements of a bundle, and track each time's change.As for
logging_file, it helps to define the logging format, and if we have multiple bundles, it's easier to control the logging data.These two args are now working well in
ConfigWorkflow, but are not required when we define a class that extends toBundleWorkflowdirectly.