generator = new Hyperplane([1.0, 5.5, -7, 0.01], 35.0, 1.0); $this->estimator = new RegressionTree(30, 5, 1e-7, 3); $this->metric = new RSquared(); srand(self::RANDOM_SEED); } protected function assertPreConditions() : void { $this->assertFalse($this->estimator->trained()); } /** * @test */ public function build() : void { $this->assertInstanceOf(RegressionTree::class, $this->estimator); $this->assertInstanceOf(Estimator::class, $this->estimator); $this->assertInstanceOf(Learner::class, $this->estimator); $this->assertInstanceOf(RanksFeatures::class, $this->estimator); $this->assertInstanceOf(Persistable::class, $this->estimator); } /** * @test */ public function badMaxDepth() : void { $this->expectException(InvalidArgumentException::class); new RegressionTree(0); } /** * @test */ public function type() : void { $this->assertEquals(EstimatorType::regressor(), $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 = [ 'max height' => 30, 'max leaf size' => 5, 'min purity increase' => 1.0E-7, 'max features' => 3, 'max bins' => null, ]; $this->assertEquals($expected, $this->estimator->params()); } /** * @test */ public function trainPredictImportancesContinuous() : 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(4, $importances); $this->assertContainsOnly('float', $importances); $dot = $this->estimator->exportGraphviz(); // Graphviz::dotToImage($dot)->saveTo(new Filesystem('test.png')); $this->assertInstanceOf(Encoding::class, $dot); $this->assertStringStartsWith('digraph Tree {', $dot); $predictions = $this->estimator->predict($testing); $score = $this->metric->score($predictions, $testing->labels()); $this->assertGreaterThanOrEqual(self::MIN_SCORE, $score); } /** * @test */ public function trainPredictCategorical() : void { $training = $this->generator->generate(self::TRAIN_SIZE + self::TEST_SIZE) ->apply(new IntervalDiscretizer(5)); $testing = $training->randomize()->take(self::TEST_SIZE); $this->estimator->train($training); $this->assertTrue($this->estimator->trained()); $dot = $this->estimator->exportGraphviz(); // Graphviz::dotToImage($dot)->saveTo(new Filesystem('test.png')); $this->assertInstanceOf(Encoding::class, $dot); $this->assertStringStartsWith('digraph Tree {', $dot); $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()); } }