dataset = $dataset; $this->dimensions = $dimensions; } /** * Perform a check of the specification and throw an exception if invalid. * * @throws IncorrectDatasetDimensionality */ public function check() : void { if ($this->dataset->numFeatures() !== $this->dimensions) { throw new IncorrectDatasetDimensionality($this->dataset, $this->dimensions); } } }