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(): void { $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)); } private function countSamplesByTarget($splitTargets, $countTarget): int { $count = 0; foreach ($splitTargets as $target) { if ($target === $countTarget) { ++$count; } } return $count; } }