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
Copy file name to clipboardExpand all lines: articles/machine-learning/service/how-to-understand-automated-ml.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,16 +102,16 @@ A confusion matrix is used to describe the performance of a classification model
102
102
For classification problems, Azure Machine Learning automatically provides a confusion matrix for each model that is built. For each confusion matrix, automated ML will show the frequency of each predicted label (column) compared against the true label (row). The darker the color, the higher the count in that particular part of the matrix.
103
103
104
104
#### What does a good model look like?
105
-
We are comparing the actual value of the dataset against the predicted values that the model gave. Because of this, machine learning models have higher accuracy if the model has most of it's values along the diagnol, meaning the model predicted the correct value. If a model has class imbalance, the confusion matrix will help to detect a biased model.
105
+
We are comparing the actual value of the dataset against the predicted values that the model gave. Because of this, machine learning models have higher accuracy if the model has most of its values along the diagonal, meaning the model predicted the correct value. If a model has class imbalance, the confusion matrix will help to detect a biased model.
106
106
107
107
##### Example 1: A classification model with poor accuracy
108
108

109
109
110
110
##### Example 2: A classification model with high accuracy
111
111

112
112
113
-
##### Example 3: A classifcation model with high accuracy and high bias in model predictions
114
-

113
+
##### Example 3: A classification model with high accuracy and high bias in model predictions
114
+

115
115
116
116
<aname="precision-recall-chart"></a>
117
117
### Precision-recall chart
@@ -188,7 +188,7 @@ For all classification problems, you can review the calibration line for micro-a
188
188
189
189
Macro-average will compute the metric independently of each class and then take the average, treating all classes equally. However, micro-average will aggregate the contributions of all the classes to compute the average.
190
190
#### What does a good model look like?
191
-
A wellcalibrated model aligns with the y=x line, where it is reasonably confident in its predictions. An over-confident model aligns with the y=0 line, where the predicted probability is present but there is no actual probability.
191
+
A well-calibrated model aligns with the y=x line, where it is reasonably confident in its predictions. An over-confident model aligns with the y=0 line, where the predicted probability is present but there is no actual probability.
0 commit comments