forked from jorgecasas/php-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfusionMatrixTest.php
62 lines (47 loc) · 1.64 KB
/
ConfusionMatrixTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
declare(strict_types=1);
namespace tests\Phpml\Metric;
use Phpml\Metric\ConfusionMatrix;
use PHPUnit\Framework\TestCase;
class ConfusionMatrixTest extends TestCase
{
public function testComputeConfusionMatrixOnNumericLabels()
{
$actualLabels = [2, 0, 2, 2, 0, 1];
$predictedLabels = [0, 0, 2, 2, 0, 2];
$confusionMatrix = [
[2, 0, 0],
[0, 0, 1],
[1, 0, 2],
];
$this->assertEquals($confusionMatrix, ConfusionMatrix::compute($actualLabels, $predictedLabels));
}
public function testComputeConfusionMatrixOnStringLabels()
{
$actualLabels = ['cat', 'ant', 'cat', 'cat', 'ant', 'bird'];
$predictedLabels = ['ant', 'ant', 'cat', 'cat', 'ant', 'cat'];
$confusionMatrix = [
[2, 0, 0],
[0, 0, 1],
[1, 0, 2],
];
$this->assertEquals($confusionMatrix, ConfusionMatrix::compute($actualLabels, $predictedLabels));
}
public function testComputeConfusionMatrixOnLabelsWithSubset()
{
$actualLabels = ['cat', 'ant', 'cat', 'cat', 'ant', 'bird'];
$predictedLabels = ['ant', 'ant', 'cat', 'cat', 'ant', 'cat'];
$labels = ['ant', 'bird'];
$confusionMatrix = [
[2, 0],
[0, 0],
];
$this->assertEquals($confusionMatrix, ConfusionMatrix::compute($actualLabels, $predictedLabels, $labels));
$labels = ['bird', 'ant'];
$confusionMatrix = [
[0, 0],
[0, 2],
];
$this->assertEquals($confusionMatrix, ConfusionMatrix::compute($actualLabels, $predictedLabels, $labels));
}
}