forked from jorgecasas/php-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFuzzyCMeansTest.php
48 lines (40 loc) · 1.33 KB
/
FuzzyCMeansTest.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
<?php
declare(strict_types=1);
namespace Phpml\Tests\Clustering;
use Phpml\Clustering\FuzzyCMeans;
use PHPUnit\Framework\TestCase;
class FuzzyCMeansTest extends TestCase
{
public function testFCMSamplesClustering()
{
$samples = [[1, 1], [8, 7], [1, 2], [7, 8], [2, 1], [8, 9]];
$fcm = new FuzzyCMeans(2);
$clusters = $fcm->cluster($samples);
$this->assertCount(2, $clusters);
foreach ($samples as $index => $sample) {
if (in_array($sample, $clusters[0]) || in_array($sample, $clusters[1])) {
unset($samples[$index]);
}
}
$this->assertCount(0, $samples);
return $fcm;
}
public function testMembershipMatrix(): void
{
$fcm = $this->testFCMSamplesClustering();
$clusterCount = 2;
$sampleCount = 6;
$matrix = $fcm->getMembershipMatrix();
$this->assertCount($clusterCount, $matrix);
foreach ($matrix as $row) {
$this->assertCount($sampleCount, $row);
}
// Transpose of the matrix
array_unshift($matrix, null);
$matrix = call_user_func_array('array_map', $matrix);
// All column totals should be equal to 1 (100% membership)
foreach ($matrix as $col) {
$this->assertEquals(1, array_sum($col));
}
}
}