generator = new Agglomerate([ 'red' => new Blob([255, 32, 0], 50.0), 'green' => new Blob([0, 128, 0], 10.0), 'blue' => new Blob([0, 32, 255], 30.0), ], [0.5, 0.2, 0.3]); $this->estimator = new RandomForest(new ClassificationTree(3), 50, 0.2, true); $this->metric = new FBeta(); srand(self::RANDOM_SEED); } protected function assertPreConditions() : void { $this->assertFalse($this->estimator->trained()); } /** * @test */ public function build() : void { $this->assertInstanceOf(RandomForest::class, $this->estimator); $this->assertInstanceOf(Estimator::class, $this->estimator); $this->assertInstanceOf(Learner::class, $this->estimator); $this->assertInstanceOf(Probabilistic::class, $this->estimator); $this->assertInstanceOf(RanksFeatures::class, $this->estimator); $this->assertInstanceOf(Persistable::class, $this->estimator); } /** * @test */ public function badNumEstimators() : void { $this->expectException(InvalidArgumentException::class); new RandomForest(null, -100); } /** * @test */ public function type() : void { $this->assertEquals(EstimatorType::classifier(), $this->estimator->type()); } /** * @test */ public function compatibility() : void { $expected = [ DataType::categorical(), DataType::continuous(), ]; $this->assertEquals($expected, $this->estimator->compatibility()); } /** * @test */ public function params() : void { $expected = [ 'base' => new ClassificationTree(3), 'estimators' => 50, 'ratio' => 0.2, 'balanced' => true, ]; $this->assertEquals($expected, $this->estimator->params()); } /** * @test */ public function trainPredictImportances() : void { $training = $this->generator->generate(self::TRAIN_SIZE); $testing = $this->generator->generate(self::TEST_SIZE); $this->estimator->train($training); $this->assertTrue($this->estimator->trained()); $importances = $this->estimator->featureImportances(); $this->assertIsArray($importances); $this->assertCount(3, $importances); $this->assertContainsOnly('float', $importances); $predictions = $this->estimator->predict($testing); $score = $this->metric->score($predictions, $testing->labels()); $this->assertGreaterThanOrEqual(self::MIN_SCORE, $score); } /** * @test */ public function predictUntrained() : void { $this->expectException(RuntimeException::class); $this->estimator->predict(Unlabeled::quick()); } }