QuestionQ138
Implement machine learning model lifecycle and operationsYou are implementing hyperparameter tuning with Bayesian sampling for Azure ML Python SDK v2–based model training from a notebook. The notebook is in an Azure Machine Learning workspace. It uses a training script that runs on a compute cluster with 20 nodes.
The code implements a Bandit termination policy with slackjactor set to 0.2 and a sweep job with max_concurrent_trials set to 10.
You must increase the effectiveness of the tuning process by improving sampling convergence.
You need to choose which sampling convergence setting to use.
What should you select?
- A Set the value of max_concurrent_trials to 20.
- B Set the value of slack_factor of early_termination policy to 0.9.
- C Set the value of max_concurrent_trials to 4.
- D Set the value of slack_factor of early_termination policy to 0.1.
Community Discussion