generator = new Hyperplane([1.0, 5.5, -7, 0.01], 0.0, 1.0); $this->estimator = new SVR(1, 1e-8, new Linear(), false, 1e-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(SVR::class, $this->estimator); $this->assertInstanceOf(Learner::class, $this->estimator); $this->assertInstanceOf(Estimator::class, $this->estimator); } /** * @test */ public function type() : void { $this->assertEquals(EstimatorType::regressor(), $this->estimator->type()); } /** * @test */ public function compatibility() : void { $expected = [ DataType::continuous(), ]; $this->assertEquals($expected, $this->estimator->compatibility()); } /** * @test */ public function trainPredict() : void { $dataset = $this->generator->generate(self::TRAIN_SIZE + self::TEST_SIZE); $dataset->apply(new ZScaleStandardizer()); $testing = $dataset->randomize()->take(self::TEST_SIZE); $this->estimator->train($dataset); $this->assertTrue($this->estimator->trained()); $predictions = $this->estimator->predict($testing); $score = $this->metric->score($predictions, $testing->labels()); $this->assertGreaterThanOrEqual(self::MIN_SCORE, $score); } /** * @test */ public function trainIncompatible() : void { $this->expectException(InvalidArgumentException::class); $this->estimator->train(Labeled::quick([['bad']])); } /** * @test */ public function predictUntrained() : void { $this->expectException(RuntimeException::class); $this->estimator->predict(Unlabeled::quick([[1.5]])); } }