greater(0.8); $samples = Matrix::gaussian(self::DATASET_SIZE, 4) ->multiply($mask) ->asArray(); $this->dataset = Unlabeled::quick($samples); $this->transformer = new TfIdfTransformer(); } /** * @Subject * @Iterations(5) * @OutputTimeUnit("milliseconds", precision=3) */ public function apply() : void { $this->dataset->apply($this->transformer); } }