generator = new Agglomerate([ 0 => new Blob([0.0, 0.0], 2.0), 1 => new Circle(0.0, 0.0, 8.0, 1.0), ], [0.9, 0.1]); $this->estimator = new Loda(0.1, 100, null); $this->metric = new FBeta(); srand(self::RANDOM_SEED); } protected function assertPreConditions() : void { $this->assertFalse($this->estimator->trained()); } /** * @test */ public function build() : void { $this->assertInstanceOf(Loda::class, $this->estimator); $this->assertInstanceOf(Learner::class, $this->estimator); $this->assertInstanceOf(Online::class, $this->estimator); $this->assertInstanceOf(Scoring::class, $this->estimator); $this->assertInstanceOf(Persistable::class, $this->estimator); $this->assertInstanceOf(Estimator::class, $this->estimator); } /** * @test */ public function badNumEstimators() : void { $this->expectException(InvalidArgumentException::class); new Loda(-100); } /** * @test */ public function badNumBins() : void { $this->expectException(InvalidArgumentException::class); new Loda(100, 0); } /** * @test */ public function type() : void { $this->assertEquals(EstimatorType::anomalyDetector(), $this->estimator->type()); } /** * @test */ public function compatibility() : void { $expected = [ DataType::continuous(), ]; $this->assertEquals($expected, $this->estimator->compatibility()); } /** * @test */ public function params() : void { $expected = [ 'estimators' => 100, 'bins' => null, 'contamination' => 0.1, ]; $this->assertEquals($expected, $this->estimator->params()); } /** * @test */ public function trainPartialPredict() : void { $training = $this->generator->generate(self::TRAIN_SIZE); $testing = $this->generator->generate(self::TEST_SIZE); $folds = $training->stratifiedFold(3); $this->estimator->train($folds[0]); $this->estimator->partial($folds[1]); $this->estimator->partial($folds[2]); $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(Unlabeled::quick([['bad']])); } /** * @test */ public function predictUntrained() : void { $this->expectException(RuntimeException::class); $this->estimator->predict(Unlabeled::quick()); } }