You create a batch inference pipeline using the Azure ML SDK and run it with the following code: ```python 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. | Microsoft Certified Azure Data Scientist Associate - DP-100 Quiz - LeetQuiz