You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: A printable Machine Learning Algorithm Cheat Sheet helps you choose the right algorithm for your predictive model in Azure Machine Learning designer.
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-select-algorithms.md
+29-2Lines changed: 29 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,35 @@ Machine Learning designer provides a comprehensive portfolio of algorithms, such
35
35
36
36
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.
37
37
38
-
## Additional requirements for a data science scenario
38
+
## Comparison of machine learning algorithms
39
+
40
+
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.
41
+
42
+
The following table summarizes some of the most important characteristics of algorithms from the classification, regression, and clustering families:
|[Two-class decision forest](https://docs.microsoft.com/azure/machine-learning/algorithm-module-reference/two-class-decision-forest?WT.mc_id=docs-article-lazzeri)|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 support vector machine](https://docs.microsoft.com/azure/machine-learning/algorithm-module-reference/two-class-support-vector-machine?WT.mc_id=docs-article-lazzeri)|Good |Fast |Yes |5 |Good for large feature sets |
|[Multiclass boosted decision tree](https://docs.microsoft.com/azure/machine-learning/algorithm-module-reference/multiclass-boosted-decision-tree?WT.mc_id=docs-article-lazzeri)|Excellent |Moderate |No |6 | Tends to improve accuracy with some small risk of less coverage |
Once you know what you want to do with your data, you need to determine additional requirements for your solution.
41
69
@@ -115,7 +143,6 @@ Feature selection refers to the process of applying statistical tests to inputs,
115
143
116
144
You can also use the [Permutation Feature Importance module](https://docs.microsoft.com/azure/machine-learning/algorithm-module-reference/permutation-feature-importance?WT.mc_id=docs-article-lazzeri) 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.
117
145
118
-
119
146
## Next steps
120
147
121
148
-[Learn more about Azure Machine Learning designer](https://docs.microsoft.com/azure/machine-learning/service/concept-designer?WT.mc_id=docs-article-lazzeri)
0 commit comments