new Blob([5.0, 3.42, 1.46, 0.24], [0.35, 0.38, 0.17, 0.1]), 'Iris-versicolor' => new Blob([5.94, 2.77, 4.26, 1.33], [0.51, 0.31, 0.47, 0.2]), 'Iris-virginica' => new Blob([6.59, 2.97, 5.55, 2.03], [0.63, 0.32, 0.55, 0.27]), ]); $this->training = $generator->generate(self::TRAINING_SIZE); $this->testing = $generator->generate(self::TESTING_SIZE); $this->estimator = new RandomForest(new ClassificationTree(30)); } public function setUpCategorical() : void { $generator = new Agglomerate([ 'Iris-setosa' => new Blob([5.0, 3.42, 1.46, 0.24], [0.35, 0.38, 0.17, 0.1]), 'Iris-versicolor' => new Blob([5.94, 2.77, 4.26, 1.33], [0.51, 0.31, 0.47, 0.2]), 'Iris-virginica' => new Blob([6.59, 2.97, 5.55, 2.03], [0.63, 0.32, 0.55, 0.27]), ]); $dataset = $generator->generate(self::TRAINING_SIZE + self::TESTING_SIZE) ->apply(new IntervalDiscretizer(10)); $this->testing = $dataset->take(self::TESTING_SIZE); $this->training = $dataset; $this->estimator = new RandomForest(new ClassificationTree(30)); } /** * @Subject * @Iterations(5) * @BeforeMethods({"setUpContinuous"}) * @OutputTimeUnit("seconds", precision=3) */ public function continuous() : void { $this->estimator->train($this->training); $this->estimator->predict($this->testing); } /** * @Subject * @Iterations(5) * @BeforeMethods({"setUpCategorical"}) * @OutputTimeUnit("seconds", precision=3) */ public function categorical() : void { $this->estimator->train($this->training); $this->estimator->predict($this->testing); } }