List of questions
Related questions
Question 2 - DP-100 discussion
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 Experiment
pipeline = Pipeline(workspace=ws, steps=[parallelrun_step])
pipeline_run = Experiment(ws, 'batch_pipeline').submit(pipeline)
You need to monitor the progress of the pipeline execution.
What are two possible ways to achieve this goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
A.
Run the following code in a notebook:
B.
Use the Inference Clusters tab in Machine Learning Studio.
C.
Use the Activity log in the Azure portal for the Machine Learning workspace.
D.
Run the following code in a notebook:
E.
Run the following code and monitor the console output from the PipelineRun object:
Your answer:
0 comments
Sorted by
Leave a comment first