List of questions
Related questions
Question 31 - DP-100 discussion
You have a Python script that executes a pipeline. The script includes the following code:
from azureml.core import Experiment pipeline_run = Experiment(ws, 'pipeline_test').submit(pipeline)
You want to test the pipeline before deploying the script.
You need to display the pipeline run details written to the STDOUT output when the pipeline completes.
Which code segment should you add to the test script?
A.
pipeline_run.get.metrics()
B.
pipeline_run.wait_for_completion(show_output=True)
C.
pipeline_param = PipelineParameter(name="stdout",default_value="console")
D.
pipeline_run.get_status()
Your answer:
0 comments
Sorted by
Leave a comment first