Azure ML Studio AutoML Hyperparameter Optimization & Algorithm Selection

kabi 1 Reputation point
2022-02-28T10:16:51.497+00:00

Which method (Grid Search, Bayesian Search, Random Search, ...) is used in Azure ML Studio AutoML per default to optimize model hyperparameters in order to increase model accuracy? In the SDK you can choose which method you want to use (according to https://learn.microsoft.com/en-us/azure/machine-learning/how-to-tune-hyperparameters), but I could not find any information about the Studio execept another asked question, but the provided answer was not clear to me (https://learn.microsoft.com/en-us/answers/questions/462352/hyperparamter-optimization-in-azure-automl.html).

And how exactly does Azure ML Studio AutoML search for possible algorithms/ how does the tool choose, which algorithm to use next?

Azure Machine Learning
Azure Machine Learning
An Azure machine learning service for building and deploying models.
3,333 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. GiftA-MSFT 11,176 Reputation points
    2022-03-01T05:13:03.31+00:00

    Hi, according to this document, Azure AutoML uses Bayesian optimization to optimize hyperparameters. How Azure AutoML works - During training, Azure Machine Learning creates a number of pipelines in parallel that try different algorithms and parameters for you. The service iterates through ML algorithms paired with feature selections, where each iteration produces a model with a training score. The higher the score, the better the model is considered to "fit" your data. It will stop once it hits the exit criteria defined in the experiment. Hope this helps!

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.