Skip to content

Commit c4d8db9

Browse files
committed
Merge branch 'patch-5' of https://github.com/FrancescaLazzeri/azure-docs-pr into choose-algo
2 parents 8415bf4 + e738385 commit c4d8db9

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

articles/machine-learning/how-to-select-algorithms.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,33 @@ Feature selection refers to the process of applying statistical tests to inputs,
115115

116116
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.
117117

118+
## Additional notes
119+
120+
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.
121+
122+
The following table summarizes some of the most important characteristics of algorithms from the classification, regression and clustering families:
123+
124+
| **Algorithm** | **Accuracy** | **Training time** | **Linearity** | **Parameters** | **Notes** |
125+
| --- |:---:|:---:|:---:|:---:| --- |
126+
| **Classification family** | | | | | |
127+
| [Two-Class logistic regression](azure/machine-learning/algorithm-module-reference/two-class-logistic-regression?WT.mc_id=docs-article-lazzeri) |Good |Fast |Yes |4 | |
128+
| [Two-class decision forest](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 |
129+
| [Two-class boosted decision tree](azure/machine-learning/algorithm-module-reference/two-class-boosted-decision-tree?WT.mc_id=docs-article-lazzeri) |Excellent |Moderate |No |6 |Large memory footprint |
130+
| [Two-class neural network](azure/machine-learning/algorithm-module-reference/two-class-neural-network?WT.mc_id=docs-article-lazzeri) |Good |Moderate |No |8 | |
131+
| [Two-class averaged perceptron](azure/machine-learning/algorithm-module-reference/two-class-averaged-perceptron?WT.mc_id=docs-article-lazzeri) |Good |Moderate |Yes |4 | |
132+
| [Two-class support vector machine](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 |
133+
| [Multiclass logistic regression](azure/machine-learning/algorithm-module-reference/multiclass-logistic-regression?WT.mc_id=docs-article-lazzeri) |Good |Fast |Yes |4 | |
134+
| [Multiclass decision forest](azure/machine-learning/algorithm-module-reference/multiclass-decision-forest?WT.mc_id=docs-article-lazzeri) |Excellent |Moderate |No |5 |Shows slower scoring times |
135+
| [Multiclass boosted decision tree](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 |
136+
| [Multiclass neural network](azure/machine-learning/algorithm-module-reference/multiclass-neural-network?WT.mc_id=docs-article-lazzeri) |Good |Moderate |No |8 | |
137+
| [One-vs-all multiclass](azure/machine-learning/algorithm-module-reference/one-vs-all-multiclass?WT.mc_id=docs-article-lazzeri) | - | - | - | - |See properties of the two-class method selected |
138+
| **[Regression family]** | | | | | |
139+
| [Linear regression](azure/machine-learning/algorithm-module-reference/linear-regression?WT.mc_id=docs-article-lazzeri) |Good |Fast |Yes |4 | |
140+
| [Decision forest regression](azure/machine-learning/algorithm-module-reference/decision-forest-regression?WT.mc_id=docs-article-lazzeri)|Excellent |Moderate |No |5 | |
141+
| [Boosted decision tree regression](azure/machine-learning/algorithm-module-reference/boosted-decision-tree-regression?WT.mc_id=docs-article-lazzeri) |Excellent |Moderate |No |6 |Large memory footprint |
142+
| [Neural network regression](azure/machine-learning/algorithm-module-reference/neural-network-regression?WT.mc_id=docs-article-lazzeri) |Good |Moderate |No |8 | |
143+
| **Clustering family** | | | | | |
144+
| [K-means clustering](/azure/machine-learning/algorithm-module-reference/k-means-clustering?WT.mc_id=docs-article-lazzeri) |Excellent |Moderate |Yes |8 |A clustering algorithm |
118145

119146
## Next steps
120147

0 commit comments

Comments
 (0)