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
The KedroMlflowConfig class is intended to manage kedro-mlflow configuration. However, it does not only read the configuration file, but also interacts with the mlflow database. For instance, it creates an experiment at instantiation with the _get_or_create_experiment function
Galileo-Galilei
changed the title
KedroMlflowConfig should no create experiment when instantiated
KedroMlflowConfig should not create experiment when instantiated
Oct 20, 2020
Description
The
KedroMlflowConfig
class is intended to managekedro-mlflow
configuration. However, it does not only read the configuration file, but also interacts with the mlflow database. For instance, it creates an experiment at instantiation with the_get_or_create_experiment
functionkedro-mlflow/kedro_mlflow/framework/context/config.py
Line 151 in e8f9f09
Context
We should striclty separate storing the conf and setting it up to avoid side effects.
Possible Implementation
Create a
setup()
method which:This wil enable to call config.setup() where needed in the code. This is also intended to make credentials management easier.
The text was updated successfully, but these errors were encountered: