DP-100 · Question #139
You create a batch inference pipeline by using the Azure ML SDK. You run the pipeline by using the following code: from azureml.pipeline.core import Pipeline from azureml.core.experiment import Experi
The correct answer is D. Run the following code in a notebook: E. Run the following code and monitor the console output from the PipelineRun object:. A batch inference job can take a long time to finish. This example monitors progress by using a Jupyter widget. You can also manage the job's progress by using: Azure Machine Learning Studio. Console output from the PipelineRun object. from azureml.widgets import RunDetails RunDe
Question
Exhibit
Options
- ARun the following code in a notebook:
- BUse the Inference Clusters tab in Machine Learning Studio.
- CUse the Activity log in the Azure portal for the Machine Learning workspace.
- DRun the following code in a notebook:
- ERun the following code and monitor the console output from the PipelineRun object:
How the community answered
(32 responses)- A3% (1)
- B9% (3)
- C3% (1)
- D84% (27)
Explanation
A batch inference job can take a long time to finish. This example monitors progress by using a Jupyter widget. You can also manage the job's progress by using: Azure Machine Learning Studio. Console output from the PipelineRun object. from azureml.widgets import RunDetails RunDetails(pipeline_run).show() pipeline_run.wait_for_completion(show_output=True) https://docs.microsoft.com/en-us/azure/machine-learning/how-to-use-parallel-run-step#monitor- the-parallel-run-job
Topics
Community Discussion
No community discussion yet for this question.
