This is a dedicated watch page for a single video.
Scenario: Executive Services, Inc. (ESI) is a successful headhunting agency led by CEO Lenny Rollie, headquartered in Manhattan, New York. ESI has built a strong reputation for placing top-level executives in key companies across the globe. Lenny has enlisted your expertise to assist with ESI’s internal IT projects and advise the IT team on a critical matter. Project Details: The IT team is working with Azure Machine Learning to train and register a model. They must deploy the trained model into production as a real-time web service to an inference cluster named service-compute in the Azure Machine Learning workspace. Deployment Requirements: The deployed web service must authenticate client applications using Azure Active Directory service principals. The deployment must be scripted using the Azure Machine Learning SDK. The necessary modules have already been imported. Issue: The team has drafted the following code but is unsure what to insert in place of [?] : python # Assume the necessary modules have been imported deploy_target = [?]. ws , "service-compute" ) deployment_config = AksWebservice . deploy_configuration ( cpu_cores = 1 , memory_gb = 1 , token_auth_enabled = True ) service = Model . deploy ( ws , "ml-service" , [ model ], inference_config , deployment_config , deploy_target ) service . wait_for_deployment ( show_output = True ) Question: Which of the following values should be used in place of [?] to complete the code correctly?