You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When running a typical MONAI model zoo bundle training with tracking="mlflow", it will always try to record all the config files as artifacts due to this line. If the execute_config is set, it will track config files in the specific path. When the execute_config parameter is not set it will track the default path.
Describe the solution you'd like
The execute_config parameter should be a bool| string type, so that users can set it as False, if they do not want to record any configs. They can set the parameter to True to record the default path or to a real path if config files are saved in other places.
The text was updated successfully, but these errors were encountered:
Fixes#7601 .
### Description
Support not save artifacts.
### 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.
- [x] Integration tests passed locally by running `./runtests.sh -f -u
--net --coverage`.
- [x] Quick tests passed locally by running `./runtests.sh --quick
--unittests --disttests`.
- [x] In-line docstrings updated.
- [ ] Documentation updated, tested `make html` command in the `docs/`
folder.
---------
Signed-off-by: binliu <[email protected]>
Co-authored-by: Nic Ma <[email protected]>
Co-authored-by: YunLiu <[email protected]>
Is your feature request related to a problem? Please describe.
When running a typical MONAI model zoo bundle training with
tracking="mlflow"
, it will always try to record all the config files as artifacts due to this line. If theexecute_config
is set, it will track config files in the specific path. When theexecute_config
parameter is not set it will track the default path.Describe the solution you'd like
The
execute_config
parameter should be abool| string
type, so that users can set it asFalse
, if they do not want to record any configs. They can set the parameter toTrue
to record the default path or to a real path if config files are saved in other places.The text was updated successfully, but these errors were encountered: