-
Notifications
You must be signed in to change notification settings - Fork 34
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
Setup mlflow configuration when context is loaded #124
Comments
I understand the point, but to my knowledge the kedro context do not manage plugins properties, it just use them to supercharge his own properties (catalog, params, pipelines) It isn't sufficient for you to get the config by calling the
|
The current implementation seems indeed satisfying enough (with from kedro_mlflow.framework.context
mlflow_config=get_mlflow_config()
mlflow_config.setup() However, we should setup automatically the configuration for jupyter, through the |
Description
When I call load_context() interactively, the configuration of the
mlflow.yml
is:Context
I always struggle when i want to use the configuration in the
mlflow.yml
interactively. This makes experimentation & debugging harder.Possible Implementation
For now, I can't see how it is possible to modify the context object to add attributes. We can eventually add some to the catalog with the
after_catalog_created
hook, but the configuration should not be tied to the catalog execution.The text was updated successfully, but these errors were encountered: