Designing and Implementing a Data Science Solution on Azure — Question 146
You manage an Azure Machine Learning workspace.
You must create and configure a compute cluster for a training job by using Python SDK v2.
You need to create a persistent Azure Machine Learning compute resource, specifying the fewest possible properties.
Which two properties should you define? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
Answer options
- A. size
- B. win_instances
- C. type
- D. name
- E. max_instances
Correct answer: A, E
Explanation
The correct properties to define for creating a persistent compute resource are 'size' and 'max_instances'. 'Size' determines the scale of the compute cluster, while 'max_instances' sets the limit on the number of instances. The other options, while relevant to compute configuration, are not necessary to establish a basic persistent compute resource.