title | description | services | ms.service | ms.component | ms.topic | ms.reviewer | author | ms.author | ms.date | ms.custom |
---|---|---|---|---|---|---|---|---|---|---|
What is Automated Machine Learning - Azure Machine Learning service |
Learn about how Azure Machine Learning service can automatically pick an algorithm for you, and generate a model from it to save you time by using the parameters and criteria you provide to select the best algorithm for your model. |
machine-learning |
machine-learning |
core |
conceptual |
jmartens |
nacharya1 |
nilesha |
12/04/2018 |
seodec18 |
In this article, you can learn about automated machine learning. The Azure Machine Learning service can automatically pick an algorithm for you, and generate a model from it. Automated machine learning saves you time by generating models tuned from the goals and constraints you defined for your experiment, such as the time for the experiment to run or which models to blacklist.
-
You configure the type of machine learning problem you are trying to solve. Categories of supervised learning are supported:
- Classification
- Regression
- Forecasting
While automated machine learning is generally available, the forecasting feature is still in public preview.
See the list of models Azure Machine Learning can try when training.
-
You specify the source and format for the training data. The data must be labeled, and can be stored on your development environment or in Azure Blob Storage. If the data is stored on your development environment, it must be in the same directory as your training scripts. This directory is copied to the compute target you select for training.
In your training script, the data can be read into Numpy arrays or a Pandas dataframe.
You can configure split options for selecting training and validation data, or you can specify separate training and validation data sets.
-
Configure the compute target that is used to train the model.
-
Configure the automated machine learning configuration. This controls the parameters used as Azure Machine Learning iterates over different models, hyperparameter settings, and what metrics to look at when determining the best model.
-
Submit a training run.
During training, the Azure Machine Learning service creates a number of pipelines that try different algorithms and parameters. It will stop once it hits the iteration limit you provide, or when it reaches the target value for the metric you specify.
You can inspect the logged run information, which contains metrics gathered during the run. The training run also produces a Python serialized object (.pkl file) that contains the model and data preprocessing.
See examples and learn how to build models using Automated Machine Learning: