mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-05 04:57:52 +00:00
653c7c772d
* upgrade to PHP 7.1 * bump travis and composer to PHP 7.1 * fix tests
63 lines
1.7 KiB
PHP
63 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\Phpml\Metric;
|
|
|
|
use Phpml\Metric\ConfusionMatrix;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ConfusionMatrixTest extends TestCase
|
|
{
|
|
public function testComputeConfusionMatrixOnNumericLabels(): void
|
|
{
|
|
$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(): void
|
|
{
|
|
$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(): void
|
|
{
|
|
$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));
|
|
}
|
|
}
|