How should you complete the command?

HOTSPOT

You deploy a model in Azure Container Instance.

You must use the Azure Machine Learning SDK to call the model API.

You need to invoke the deployed model using native SDK classes and methods.

How should you complete the command? To answer, select the appropriate options in the answer areas. NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Box 1: from azureml.core.webservice import Webservice

The following code shows how to use the SDK to update the model, environment, and entry script for a web service to Azure Container Instances:

from azureml.core import Environment

from azureml.core.webservice import Webservice

from azureml.core.model import Model, InferenceConfig

Box 2: predictions = service.run(input_json)

Example: The following code demonstrates sending data to the service:

import json

test_sample = json.dumps({‘data’: [

[1, 2, 3, 4, 5, 6, 7,

8, 9, 10],

[10, 9, 8, 7, 6, 5,

4, 3, 2, 1]

]})

test_sample = bytes(test_sample, encoding=’utf8′)

prediction = service.run(input_data=test_sample)

print(prediction)

Latest DP-100 Dumps Valid Version with 227 Q&As

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments