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 GaussianMixture(3, 1e-9, 100, 1e-3, new KMC2(50)); $this->metric = new VMeasure(); srand(self::RANDOM_SEED); } protected function assertPreConditions() : void { $this->assertFalse($this->estimator->trained()); } /** * @test */ public function build() : void { $this->assertInstanceOf(GaussianMixture::class, $this->estimator); $this->assertInstanceOf(Learner::class, $this->estimator); $this->assertInstanceOf(Probabilistic::class, $this->estimator); $this->assertInstanceOf(Verbose::class, $this->estimator); $this->assertInstanceOf(Persistable::class, $this->estimator); $this->assertInstanceOf(Estimator::class, $this->estimator); } /** * @test */ public function badK() : void { $this->expectException(InvalidArgumentException::class); new GaussianMixture(0); } /** * @test */ public function type() : void { $this->assertEquals(EstimatorType::clusterer(), $this->estimator->type()); } /** * @test */ public function compatibility() : void { $expected = [ DataType::continuous(), ]; $this->assertEquals($expected, $this->estimator->compatibility()); } /** * @test */ public function params() : void { $expected = [ 'k' => 3, 'smoothing' => 1e-9, 'epochs' => 100, 'min change' => 1e-3, 'seeder' => new KMC2(50), ]; $this->assertEquals($expected, $this->estimator->params()); } /** * @test */ public function trainPredict() : void { $this->estimator->setLogger(new BlackHole()); $training = $this->generator->generate(self::TRAIN_SIZE); $testing = $this->generator->generate(self::TEST_SIZE); $this->estimator->train($training); $this->assertTrue($this->estimator->trained()); $priors = $this->estimator->priors(); $this->assertIsArray($priors); $this->assertCount(3, $priors); $this->assertContainsOnly('float', $priors); $means = $this->estimator->means(); $this->assertIsArray($means); $this->assertCount(3, $means); $this->assertContainsOnly('array', $means); $variances = $this->estimator->variances(); $this->assertIsArray($variances); $this->assertCount(3, $variances); $this->assertContainsOnly('array', $variances); $losses = $this->estimator->losses(); $this->assertIsArray($losses); $this->assertContainsOnly('float', $losses); $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()); } }