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
Asked
Active
Viewed 77 times
1 Answers
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