0

In the RunDetails Jupyter module, what does the table (see screenshot below) represent?

Azure ML RunDetails Widget

Anders Swanson
  • 3,637
  • 1
  • 18
  • 43

1 Answers1

0

The RunDetails(run_instance).show() method from the azureml-widgets package shows the progress of your job along with streaming the log files. The widget is asynchronous and provides updates until the training run finishes.

Since the output shown is specific to your Pipeline run, you can troubleshoot it further from the logs from pipeline runs, which can be found in either the Pipelines or Experiments section of the studio.

Bhargavi Annadevara
  • 4,923
  • 2
  • 13
  • 30