Question 121

You create a machine learning model by using the Azure Machine Learning designer. You publish the model as a real-time service on an Azure Kubernetes Service (AKS) inference compute cluster. You make no changes to the deployed endpoint configuration.
You need to provide application developers with the information they need to consume the endpoint.
Which two values should you provide to application developers? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
  • Question 122

    You train a machine learning model.
    You must deploy the model as a real-time inference service for testing. The service requires low CPU utilization and less than 48 MB of RAM. The compute target for the deployed service must initialize automatically while minimizing cost and administrative overhead.
    Which compute target should you use?
  • Question 123

    You need to select a feature extraction method.
    Which method should you use?
  • Question 124

    You are evaluating a Python NumPy array that contains six data points defined as follows:
    data = [10, 20, 30, 40, 50, 60]
    You must generate the following output by using the k-fold algorithm implantation in the Python Scikit-learn machine learning library:
    train: [10 40 50 60], test: [20 30]
    train: [20 30 40 60], test: [10 50]
    train: [10 20 30 50], test: [40 60]
    You need to implement a cross-validation to generate the output.
    How should you complete the code segment? To answer, select the appropriate code segment in the dialog box in the answer area.
    NOTE: Each correct selection is worth one point.

    Question 125

    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 are using Azure Machine Learning Studio to perform feature engineering on a dataset.
    You need to normalize values to produce a feature column grouped into bins.
    Solution: Apply an Entropy Minimum Description Length (MDL) binning mode.
    Does the solution meet the goal?