dp-100-data-scientist-assoc video for scenario: Pennyworth’s Haberdashery, a renowned fashion retailer in Greater London, has expanded its operations by
Scenario: Pennyworth’s Haberdashery, a renowned fashion retailer in Greater London, has expanded its operations by acquiring a clothing line in Madrid. The company is integrating its systems with Microsoft Azure, and Alfred Penny worth has enlisted you as a Microsoft Azure Expert to oversee the transition. Currently, the focus is on Azure Machine Learning . The IT team has created an Azure Machine Learning compute target , ComputeOne , using the STANDARD_D1 virtual machine image . However, ComputeOne remains idle with zero active nodes . A developer defines a Python variable, ws , referencing the Azure Machine Learning workspace , and executes the following code: Python from azureml . core . compute import ComputeTarget , AmlCompute from azureml . core . compute_target import ComputeTargetException the_cluster_name = "ComputeOne" try : the_cluster = ComputeTarget ( workspace = ws , name = the_cluster_name ) print ( "Step1" ) except ComputeTargetException : config = AmlCompute . provisioning_configuration ( vm_size = "STANDARD_DS12_v2" , max_nodes = 4 ) the_cluster = ComputeTarget . create ( ws , the_cluster_name , config ) print ( "Step2" ) Concern: Alfred is uncertain whether any experiments configured to use the_cluster will run on ComputeOne . Question: What is the correct response regarding the execution of experiments on ComputeOne?