Error when running kedro mlflow ui #423
-
I am following the documentation to use kedro-mlflow with my pipeline registry and it gives me the following error when running kedro mlflow ui: Any inputs are helpful. Thanks! Python version: 3.8.16 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @snehakumari321, I am sorry you don't have a good experience with the plugin. I've just tested the following code : conda create -n discussion-423 python=3.8.16 -y
conda activate discussion-423
pip install kedro==0.18.6 kedro-mlflow==0.11.8
kedro new --starter=pandas-iris --checkout=0.18.6
cd iris
kedro run
kedro mlflow ui and the UI opens correctly so I think you have some custom code somewhere because the default seems to work. The
Hope I'll be able to help! |
Beta Was this translation helpful? Give feedback.
Hi @snehakumari321, I am sorry you don't have a good experience with the plugin.
I've just tested the following code :
conda create -n discussion-423 python=3.8.16 -y conda activate discussion-423 pip install kedro==0.18.6 kedro-mlflow==0.11.8 kedro new --starter=pandas-iris --checkout=0.18.6 cd iris kedro run kedro mlflow ui
and the UI opens correctly so I think you have some custom code somewhere because the default seems to work.
The
context.mlflow
attribute is created on the fly when theafter_context_created
hook is called by theload_context()
method. It seems it is not called for some unknown reason. Can you answer the following question to help debugging?: