-1

I have set up ML Flow and the UI is logging the training metrics, but not the test metrics in sklearn. I am using Jupyter Notebooks and ML Flow UI

jw32022
  • 35
  • 5

1 Answers1

1

Actually, you can log any metric in the same way using: mlflow.log_metric(). For example:

mlflow.log_metric("val_acc", value, step)
cao-nv
  • 184
  • 4