php-ml/tests/Phpml/Classification/NaiveBayesTest.php

39 lines
1.1 KiB
PHP
Raw Normal View History

2016-04-14 20:56:54 +00:00
<?php
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
2016-04-14 20:56:54 +00:00
namespace tests\Classification;
2016-04-14 20:56:54 +00:00
use Phpml\Classification\NaiveBayes;
2016-04-14 20:56:54 +00:00
class NaiveBayesTest extends \PHPUnit_Framework_TestCase
{
public function testPredictSingleSample()
{
$samples = [[5, 1, 1], [1, 5, 1], [1, 1, 5]];
$labels = ['a', 'b', 'c'];
$classifier = new NaiveBayes();
$classifier->train($samples, $labels);
$this->assertEquals('a', $classifier->predict([3, 1, 1]));
$this->assertEquals('b', $classifier->predict([1, 4, 1]));
$this->assertEquals('c', $classifier->predict([1, 1, 6]));
}
public function testPredictArrayOfSamples()
{
$trainSamples = [[5, 1, 1], [1, 5, 1], [1, 1, 5]];
$trainLabels = ['a', 'b', 'c'];
$testSamples = [[3, 1, 1], [5, 1, 1], [4, 3, 8], [1, 1, 2], [2, 3, 2], [1, 2, 1], [9, 5, 1], [3, 1, 2]];
$testLabels = ['a', 'a', 'c', 'c', 'b', 'b', 'a', 'a'];
$classifier = new NaiveBayes();
$classifier->train($trainSamples, $trainLabels);
$predicted = $classifier->predict($testSamples);
$this->assertEquals($testLabels, $predicted);
}
}