Does the solution meet the goal?

Posted by: Pdfprep Category: DP-100 Tags: , ,

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You train and register a machine learning model.

You plan to deploy the model as a real-time web service. Applications must use key-based authentication to use the model.

You need to deploy the web service.

Solution:

Create an AciWebservice instance.

Set the value of the ssl_enabled property to True.

Deploy the model to the service.

Does the solution meet the goal?
A . Yes
B . No

Answer: B

Explanation:

Instead use only auth_enabled = TRUE

Note: Key-based authentication.

Web services deployed on AKS have key-based auth enabled by default. ACI-deployed

services have key-based auth disabled by default, but you can enable it by setting

auth_enabled = TRUE when creating the ACI web service. The following is an example of

creating an ACI deployment configuration with key-based auth enabled.

deployment_config <- aci_webservice_deployment_config(cpu_cores = 1, memory_gb = 1,

auth_enabled = TRUE)

Reference: https://azure.github.io/azureml-sdk-for-r/articles/deploying-models.html

Leave a Reply

Your email address will not be published.