diff --git a/Part 3 - Classification/Section 21 - Evaluating Classification Models Performance/README.md b/Part 3 - Classification/Section 21 - Evaluating Classification Models Performance/README.md index b5f41a7..9ec18c7 100644 --- a/Part 3 - Classification/Section 21 - Evaluating Classification Models Performance/README.md +++ b/Part 3 - Classification/Section 21 - Evaluating Classification Models Performance/README.md @@ -2,3 +2,14 @@ 1) False Positive(Type 1 error): We predicted a positive outcome but it was false. Predicted an effet that did not occur. [Less Dangerous] 2) False Negative(Type 2 error): We predicted that there won't be any effect but it actually did occur. Our prediction was negative. [More Dangerous] + +# Confusion Matrix +![](cm.png) + +###### Accuracy Paradox: +If 00 = more, 01 = 0, 01 = less, 11 = 0 +Accuracy increases, although we did not train. So accuarcy cannot be always trusted. + +#CAP: Cummulative Accuracy Profile. +Greater area under the curve, the better is the model. +![](cap.png) \ No newline at end of file diff --git a/Part 3 - Classification/Section 21 - Evaluating Classification Models Performance/cap.png b/Part 3 - Classification/Section 21 - Evaluating Classification Models Performance/cap.png new file mode 100644 index 0000000..25358ce Binary files /dev/null and b/Part 3 - Classification/Section 21 - Evaluating Classification Models Performance/cap.png differ diff --git a/Part 3 - Classification/Section 21 - Evaluating Classification Models Performance/cm.png b/Part 3 - Classification/Section 21 - Evaluating Classification Models Performance/cm.png new file mode 100644 index 0000000..41167d5 Binary files /dev/null and b/Part 3 - Classification/Section 21 - Evaluating Classification Models Performance/cm.png differ