Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
39 | public function __construct(Dataset $dataset, float $testSize = 0.3, int $seed = null) |
||
40 | { |
||
41 | if (0 >= $testSize || 1 <= $testSize) { |
||
42 | throw InvalidArgumentException::percentNotInRange('testSize'); |
||
43 | } |
||
44 | $this->seedGenerator($seed); |
||
45 | |||
46 | $this->splitDataset($dataset, $testSize); |
||
47 | } |
||
48 | |||
95 |