How to select algorithms for Azure Machine Learning

A common question is “Which machine learning algorithm should I use?” The algorithm you select depends primarily on two different aspects of your data science scenario:

  • What you want to do with your data? Specifically, what is the business question you want to answer by learning from your past data?

  • What are the requirements of your data science scenario? Specifically, what is the accuracy, training time, linearity, number of parameters, and number of features your solution supports?

Considerations for choosing algorithms: What do you want to know? What are the scenario requirements?

Note

Designer supports two types of components, classic prebuilt components (v1) and custom components (v2). These two types of components are NOT compatible.

Classic prebuilt components provide prebuilt components majorly for data processing and traditional machine learning tasks like regression and classification. This type of component continues to be supported but will not have any new components added.

Custom components allow you to wrap your own code as a component. It supports sharing components across workspaces and seamless authoring across Studio, CLI v2, and SDK v2 interfaces.

For new projects, we highly suggest you use custom component, which is compatible with AzureML V2 and will keep receiving new updates.

This article applies to classic prebuilt components and not compatible with CLI v2 and SDK v2.

Business scenarios and the Machine Learning Algorithm Cheat Sheet

The Azure Machine Learning Algorithm Cheat Sheet helps you with the first consideration: What you want to do with your data? On the Machine Learning Algorithm Cheat Sheet, look for task you want to do, and then find an Azure Machine Learning designer algorithm for the predictive analytics solution.

Machine Learning designer provides a comprehensive portfolio of algorithms, such as Multiclass Decision Forest, Recommendation systems, Neural Network Regression, Multiclass Neural Network, and K-Means Clustering. Each algorithm is designed to address a different type of machine learning problem. See the Machine Learning designer algorithm and component reference for a complete list along with documentation about how each algorithm works and how to tune parameters to optimize the algorithm.

Note

Download the cheat sheet here: Machine Learning Algorithm Cheat Sheet (11x17 in.)

Along with guidance in the Azure Machine Learning Algorithm Cheat Sheet, keep in mind other requirements when choosing a machine learning algorithm for your solution. Following are additional factors to consider, such as the accuracy, training time, linearity, number of parameters and number of features.

Comparison of machine learning algorithms

Some learning algorithms make particular assumptions about the structure of the data or the desired results. If you can find one that fits your needs, it can give you more useful results, more accurate predictions, or faster training times.

The following table summarizes some of the most important characteristics of algorithms from the classification, regression, and clustering families:

Algorithm Accuracy Training time Linearity Parameters Notes
Classification family
Two-Class logistic regression Good Fast Yes 4
Two-class decision forest Excellent Moderate No 5 Shows slower scoring times. Suggest not working with One-vs-All Multiclass, because of slower scoring times caused by tread locking in accumulating tree predictions
Two-class boosted decision tree Excellent Moderate No 6 Large memory footprint
Two-class neural network Good Moderate No 8
Two-class averaged perceptron Good Moderate Yes 4
Two-class support vector machine Good Fast Yes 5 Good for large feature sets
Multiclass logistic regression Good Fast Yes 4
Multiclass decision forest Excellent Moderate No 5 Shows slower scoring times
Multiclass boosted decision tree Excellent Moderate No 6 Tends to improve accuracy with some small risk of less coverage
Multiclass neural network Good Moderate No 8
One-vs-all multiclass - - - - See properties of the two-class method selected
Regression family
Linear regression Good Fast Yes 4
Decision forest regression Excellent Moderate No 5
Boosted decision tree regression Excellent Moderate No 6 Large memory footprint
Neural network regression Good Moderate No 8
Clustering family
K-means clustering Excellent Moderate Yes 8 A clustering algorithm

Requirements for a data science scenario

Once you know what you want to do with your data, you need to determine additional requirements for your solution.

Make choices and possibly trade-offs for the following requirements:

  • Accuracy
  • Training time
  • Linearity
  • Number of parameters
  • Number of features

Accuracy

Accuracy in machine learning measures the effectiveness of a model as the proportion of true results to total cases. In Machine Learning designer, the Evaluate Model component computes a set of industry-standard evaluation metrics. You can use this component to measure the accuracy of a trained model.

Getting the most accurate answer possible isn’t always necessary. Sometimes an approximation is adequate, depending on what you want to use it for. If that is the case, you may be able to cut your processing time dramatically by sticking with more approximate methods. Approximate methods also naturally tend to avoid overfitting.

There are three ways to use the Evaluate Model component:

  • Generate scores over your training data in order to evaluate the model
  • Generate scores on the model, but compare those scores to scores on a reserved testing set
  • Compare scores for two different but related models, using the same set of data

For a complete list of metrics and approaches you can use to evaluate the accuracy of machine learning models, see Evaluate Model component.

Training time

In supervised learning, training means using historical data to build a machine learning model that minimizes errors. The number of minutes or hours necessary to train a model varies a great deal between algorithms. Training time is often closely tied to accuracy; one typically accompanies the other.

In addition, some algorithms are more sensitive to the number of data points than others. You might choose a specific algorithm because you have a time limitation, especially when the data set is large.

In Machine Learning designer, creating and using a machine learning model is typically a three-step process:

  1. Configure a model, by choosing a particular type of algorithm, and then defining its parameters or hyperparameters.

  2. Provide a dataset that is labeled and has data compatible with the algorithm. Connect both the data and the model to Train Model component.

  3. After training is completed, use the trained model with one of the scoring components to make predictions on new data.

Linearity

Linearity in statistics and machine learning means that there is a linear relationship between a variable and a constant in your dataset. For example, linear classification algorithms assume that classes can be separated by a straight line (or its higher-dimensional analog).

Lots of machine learning algorithms make use of linearity. In Azure Machine Learning designer, they include:

Linear regression algorithms assume that data trends follow a straight line. This assumption isn't bad for some problems, but for others it reduces accuracy. Despite their drawbacks, linear algorithms are popular as a first strategy. They tend to be algorithmically simple and fast to train.

Nonlinear class boundary

Nonlinear class boundary: Relying on a linear classification algorithm would result in low accuracy.

Data with a nonlinear trend

Data with a nonlinear trend: Using a linear regression method would generate much larger errors than necessary.

Number of parameters

Parameters are the knobs a data scientist gets to turn when setting up an algorithm. They are numbers that affect the algorithm’s behavior, such as error tolerance or number of iterations, or options between variants of how the algorithm behaves. The training time and accuracy of the algorithm can sometimes be sensitive to getting just the right settings. Typically, algorithms with large numbers of parameters require the most trial and error to find a good combination.

Alternatively, there is the Tune Model Hyperparameters component in Machine Learning designer: The goal of this component is to determine the optimum hyperparameters for a machine learning model. The component builds and tests multiple models by using different combinations of settings. It compares metrics over all models to get the combinations of settings.

While this is a great way to make sure you’ve spanned the parameter space, the time required to train a model increases exponentially with the number of parameters. The upside is that having many parameters typically indicates that an algorithm has greater flexibility. It can often achieve very good accuracy, provided you can find the right combination of parameter settings.

Number of features

In machine learning, a feature is a quantifiable variable of the phenomenon you are trying to analyze. For certain types of data, the number of features can be very large compared to the number of data points. This is often the case with genetics or textual data.

A large number of features can bog down some learning algorithms, making training time unfeasibly long. Support vector machines are particularly well suited to scenarios with a high number of features. For this reason, they have been used in many applications from information retrieval to text and image classification. Support vector machines can be used for both classification and regression tasks.

Feature selection refers to the process of applying statistical tests to inputs, given a specified output. The goal is to determine which columns are more predictive of the output. The Filter Based Feature Selection component in Machine Learning designer provides multiple feature selection algorithms to choose from. The component includes correlation methods such as Pearson correlation and chi-squared values.

You can also use the Permutation Feature Importance component to compute a set of feature importance scores for your dataset. You can then leverage these scores to help you determine the best features to use in a model.

Next steps