2016-07-10 12:13:35 +00:00
|
|
|
<?php
|
|
|
|
|
2016-11-20 21:53:17 +00:00
|
|
|
declare(strict_types=1);
|
2016-07-10 12:13:35 +00:00
|
|
|
|
|
|
|
namespace tests\Phpml\CrossValidation;
|
|
|
|
|
|
|
|
use Phpml\CrossValidation\StratifiedRandomSplit;
|
|
|
|
use Phpml\Dataset\ArrayDataset;
|
2017-02-03 11:58:25 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-10 12:13:35 +00:00
|
|
|
|
2017-02-03 11:58:25 +00:00
|
|
|
class StratifiedRandomSplitTest extends TestCase
|
2016-07-10 12:13:35 +00:00
|
|
|
{
|
|
|
|
public function testDatasetStratifiedRandomSplitWithEvenDistribution()
|
|
|
|
{
|
|
|
|
$dataset = new ArrayDataset(
|
|
|
|
$samples = [[1], [2], [3], [4], [5], [6], [7], [8]],
|
|
|
|
$labels = ['a', 'a', 'a', 'a', 'b', 'b', 'b', 'b']
|
|
|
|
);
|
|
|
|
|
|
|
|
$split = new StratifiedRandomSplit($dataset, 0.5);
|
|
|
|
|
|
|
|
$this->assertEquals(2, $this->countSamplesByTarget($split->getTestLabels(), 'a'));
|
|
|
|
$this->assertEquals(2, $this->countSamplesByTarget($split->getTestLabels(), 'b'));
|
|
|
|
|
|
|
|
$split = new StratifiedRandomSplit($dataset, 0.25);
|
|
|
|
|
|
|
|
$this->assertEquals(1, $this->countSamplesByTarget($split->getTestLabels(), 'a'));
|
|
|
|
$this->assertEquals(1, $this->countSamplesByTarget($split->getTestLabels(), 'b'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDatasetStratifiedRandomSplitWithEvenDistributionAndNumericTargets()
|
|
|
|
{
|
|
|
|
$dataset = new ArrayDataset(
|
|
|
|
$samples = [[1], [2], [3], [4], [5], [6], [7], [8]],
|
|
|
|
$labels = [1, 2, 1, 2, 1, 2, 1, 2]
|
|
|
|
);
|
|
|
|
|
|
|
|
$split = new StratifiedRandomSplit($dataset, 0.5);
|
|
|
|
|
|
|
|
$this->assertEquals(2, $this->countSamplesByTarget($split->getTestLabels(), 1));
|
|
|
|
$this->assertEquals(2, $this->countSamplesByTarget($split->getTestLabels(), 2));
|
|
|
|
|
|
|
|
$split = new StratifiedRandomSplit($dataset, 0.25);
|
|
|
|
|
|
|
|
$this->assertEquals(1, $this->countSamplesByTarget($split->getTestLabels(), 1));
|
|
|
|
$this->assertEquals(1, $this->countSamplesByTarget($split->getTestLabels(), 2));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $splitTargets
|
|
|
|
* @param $countTarget
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
private function countSamplesByTarget($splitTargets, $countTarget): int
|
|
|
|
{
|
|
|
|
$count = 0;
|
|
|
|
foreach ($splitTargets as $target) {
|
|
|
|
if ($target === $countTarget) {
|
|
|
|
++$count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $count;
|
|
|
|
}
|
|
|
|
}
|