DP-100 Exam Question 106

You create a multi-class image classification model with automated machine learning in Azure Machine Learning.
You need to prepare labeled image data as input for model training in the form of an Azure Machine Learning tabular dataset.
Which data format should you use?
  • DP-100 Exam Question 107

    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 AksWebservice instance.
    Set the value of the auth_enabled property to False.
    Set the value of the token_auth_enabled property to True.
    Deploy the model to the service.
    Does the solution meet the goal?
  • DP-100 Exam Question 108

    You are performing clustering by using the K-means algorithm.
    You need to define the possible termination conditions.
    Which three conditions can you use? Each correct answer presents a complete solution.
    NOTE: Each correct selection is worth one point.
  • DP-100 Exam Question 109

    You define a datastore named ml-data for an Azure Storage blob container. In the container, you have a folder named train that contains a file named data.csv. You plan to use the file to train a model by using the Azure Machine Learning SDK.
    You plan to train the model by using the Azure Machine Learning SDK to run an experiment on local compute.
    You define a DataReference object by running the following code:

    You need to load the training data.
    Which code segment should you use?

  • DP-100 Exam Question 110

    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 an Azure Machine Learning model.
    You plan to deploy the model to an online endpoint.
    You need to ensure that applications will be able to use the authentication method with a non-expiring artifact to access the model.
    Solution:
    Create a managed online endpoint and set the value of its auto_mode parameter to key. Deploy the model to the inline endpoint.
    Does the solution meet the goal?