Confusion Matrix example 41
A focused Machine Learning example for confusion matrix with output and explanation.
Confusion Matrix example 41
lesson.jsjavascript
1
2
3
4
5
6
7
8
javascript8 linesWrap
Input
Terminal
SuccessReady.
Run code to see output here.
What this example teaches
Confusion Matrix
Output
The experiment prepares features, labels, metrics and validation rows, trains or scores a small model pattern, and prints a metric you can compare.
Line-by-line explanation
- Line 1 sets up the Confusion Matrix example: actual = [1, 0, 1, 1, 0, 0].
- Line 2 adds one required part of the working pattern: predicted = [1, 0, 0, 1, 1, 0].
- Line 3 adds one required part of the working pattern: true_positive = sum(a == 1 and p == 1 for a, p in zip(actual, predicted)).
- Line 4 adds one required part of the working pattern: false_positive = sum(a == 0 and p == 1 for a, p in zip(actual, predicted)).
- Line 5 adds one required part of the working pattern: false_negative = sum(a == 1 and p == 0 for a, p in zip(actual, predicted)).
- Line 6 adds one required part of the working pattern: precision = true_positive / (true_positive + false_positive).
Why this example is useful
This example is useful because it isolates confusion matrix without surrounding noise, so you can see the idea clearly.
Where it is used in real projects
Confusion Matrix appears in real Machine Learning work when a feature needs a clear pattern that can be reviewed and changed safely.
Beginner variation
Change one label, value or condition in the Confusion Matrix example and run it again.
Advanced variation
Combine Confusion Matrix with validation, error handling or reusable structure.