Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function __construct(Dataset $dataset, float $testSize = 0.3, ?int $seed = null) |
||
33 | { |
||
34 | if ($testSize <= 0 || $testSize >= 1) { |
||
35 | throw new InvalidArgumentException('testsize must be between 0.0 and 1.0'); |
||
36 | } |
||
37 | |||
38 | $this->seedGenerator($seed); |
||
39 | |||
40 | $this->splitDataset($dataset, $testSize); |
||
41 | } |
||
74 |