I am using MLFlow to log metrics and artefacts in the AzureML workspace. With autolog, tensorflow training metrics are available in the experiment run in the AzureML workspace. Along with auto-logging of metrics - I want to log extra metrics and plots in the same experiment run. Doing it with MLFlow - it is creating a new experiment run.
Auto logging:
mlflow.autolog()
Manual logging:
mlflow.log_metric(f"label-A", random.randint(80, 90))
Expected: Manually logged metrics are available in the same experiment run.
