[0.11.1] - 2022-07-06
Fixed
- 🐛 Make
pipeline_ml_factory
now correctly useskpm_kwargs
andlog_model_kwargs
instead of always using the default values. (#329) - 🐛
kedro mlflow init
command no longer raises both a success and an error message when the command is failing. (#336)
Changed
- ♻️ Refactor
KedroMlflowConfig
which no longer needs theproject_path
at instantiation. The uri validaiton is done atsetup()
time to be able to use the configuration not at a root of a kedro project. This is not considered as a breaking change, because the recommended way to retrieve the config is to usesession.load_context().mlflow
which automatically callssetup()
and hence behaviour inside a kedro project is unmodified. (#314)
�