azure ml metrics using log or parent.log()?

Viewed 532
1 Answers

totally! you can do this inside your training script you'd have

from azureml.core import Run

run = Run.get_context()

run.parent.log("mse_global", 0.3)

See the Remarks section of the Run class docs for more info!

You also might want to look into Run.log_list() or Run.log_table()

Related