php-ml/tests/Clustering/FuzzyCMeansTest.php

65 lines
1.7 KiB
PHP
Raw Normal View History

<?php
2017-01-31 19:33:08 +00:00
declare(strict_types=1);
namespace Phpml\Tests\Clustering;
use Phpml\Clustering\FuzzyCMeans;
use Phpml\Exception\InvalidArgumentException;
2017-02-03 11:58:25 +00:00
use PHPUnit\Framework\TestCase;
2017-02-03 11:58:25 +00:00
class FuzzyCMeansTest extends TestCase
{
2018-10-28 06:44:52 +00:00
public function testFCMSamplesClustering(): void
{
$samples = [[1, 1], [8, 7], [1, 2], [7, 8], [2, 1], [8, 9]];
2017-01-31 19:33:08 +00:00
$fcm = new FuzzyCMeans(2);
$clusters = $fcm->cluster($samples);
2018-10-28 06:44:52 +00:00
self::assertCount(2, $clusters);
foreach ($samples as $index => $sample) {
if (in_array($sample, $clusters[0], true) || in_array($sample, $clusters[1], true)) {
unset($samples[$index]);
}
}
2018-10-28 06:44:52 +00:00
self::assertCount(0, $samples);
}
public function testMembershipMatrix(): void
{
2018-10-28 06:44:52 +00:00
$fcm = new FuzzyCMeans(2);
$fcm->cluster([[1, 1], [8, 7], [1, 2], [7, 8], [2, 1], [8, 9]]);
$clusterCount = 2;
$sampleCount = 6;
$matrix = $fcm->getMembershipMatrix();
2018-10-28 06:44:52 +00:00
self::assertCount($clusterCount, $matrix);
foreach ($matrix as $row) {
2018-10-28 06:44:52 +00:00
self::assertCount($sampleCount, $row);
}
// Transpose of the matrix
array_unshift($matrix, null);
2018-10-28 06:44:52 +00:00
$matrix = array_map(...$matrix);
// All column totals should be equal to 1 (100% membership)
foreach ($matrix as $col) {
2018-10-28 06:44:52 +00:00
self::assertEquals(1, array_sum($col));
}
}
/**
* @dataProvider invalidClusterNumberProvider
*/
public function testInvalidClusterNumber(int $clusters): void
{
$this->expectException(InvalidArgumentException::class);
new FuzzyCMeans($clusters);
}
public function invalidClusterNumberProvider(): array
{
return [[0], [-1]];
}
2017-01-31 19:33:08 +00:00
}