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
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Understand automated ML results
3
3
titleSuffix: Azure Machine Learning
4
4
description: Learn how to view and understand charts and metrics for each of your automated machine learning runs.
5
5
services: machine-learning
6
-
author: rakellam
6
+
author: RachelKellam
7
7
ms.author: rakellam
8
8
ms.reviewer: sgilley
9
9
ms.service: machine-learning
@@ -93,7 +93,7 @@ recall_score_macro|Recall is the percent of correctly labeled elements of a cert
93
93
recall_score_micro|Recall is the percent of correctly labeled elements of a certain class. Micro is computed globally by counting the total true positives, false negatives and false positives|[Calculation](https://scikit-learn.org/stable/modules/generated/sklearn.metrics.recall_score.html)|average="micro"|
94
94
recall_score_weighted|Recall is the percent of correctly labeled elements of a certain class. Weighted is the arithmetic mean of recall for each class, weighted by number of true instances in each class.|[Calculation](https://scikit-learn.org/stable/modules/generated/sklearn.metrics.recall_score.html)|average="weighted"|
95
95
weighted_accuracy|Weighted accuracy is accuracy where the weight given to each example is equal to the proportion of true instances in that example's true class.|[Calculation](https://scikit-learn.org/stable/modules/generated/sklearn.metrics.accuracy_score.html)|sample_weight is a vector equal to the proportion of that class for each element in the target|
96
-
96
+
<aname="confusion-matrix"></a>
97
97
### Confusion matrix
98
98
#### What is a confusion matrix?
99
99
A confusion matrix is used to describe the performance of a classification model. Each row displays the instances of the true, or actual class in your dataset, and each column represents the instances of the class that was predicted by the model.
@@ -113,7 +113,7 @@ We are comparing the actual value of the dataset against the predicted values th
113
113
##### Example 3: A classifcation model with high accuracy and high bias in model predictions
114
114

115
115
116
-
116
+
<aname="precision-recall-chart"></a>
117
117
### Precision-recall chart
118
118
#### What is a precision-recall chart?
119
119
The precision-recall curve shows the relationship between precision and recall from a model. The term precision represents that ability for a model to label all instances correctly. Recall represents the ability for a classifier to find all instances of a particular label.
@@ -132,7 +132,7 @@ Depending on the goal of the business problem, the ideal precision-recall curve
132
132
133
133
##### Example 2: A classification model with ~100% precision and ~100% recall
134
134

135
-
135
+
<aname="roc"></a>
136
136
### ROC chart
137
137
138
138
#### What is a ROC chart?
@@ -151,7 +151,7 @@ Ideally, the model will have closer to 100% true positive rate and closer to 0%
151
151
152
152
##### Example 2: A classification model with high true labels and low false labels
153
153

154
-
154
+
<aname="lift-curve"></a>
155
155
### Lift chart
156
156
#### What is a lift chart?
157
157
Lift charts are used to evaluate the performance of a classification model. It shows how much better you can expect to do with the generated model compared to without a model in terms of accuracy.
@@ -163,7 +163,7 @@ You can compare the lift of the model built automatically with Azure Machine Lea
163
163

164
164
##### Example 2: A classification model that performs better than a random selection model
165
165

166
-
166
+
<aname="gains-curve"></a>
167
167
### Gains chart
168
168
#### What is a gains chart?
169
169
@@ -178,7 +178,7 @@ Use the cumulative gains chart to help you choose the classification cutoff usin
178
178
179
179
##### Example 2: A classification model with significant gain
180
180

0 commit comments