mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-05 04:57:52 +00:00
56 lines
1.5 KiB
PHP
56 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare (strict_types = 1);
|
|
|
|
namespace tests\Phpml\Metric;
|
|
|
|
use Phpml\Classification\SVC;
|
|
use Phpml\CrossValidation\RandomSplit;
|
|
use Phpml\Dataset\Demo\Iris;
|
|
use Phpml\Metric\Accuracy;
|
|
use Phpml\SupportVectorMachine\Kernel;
|
|
|
|
class AccuracyTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @expectedException \Phpml\Exception\InvalidArgumentException
|
|
*/
|
|
public function testThrowExceptionOnInvalidArguments()
|
|
{
|
|
$actualLabels = ['a', 'b', 'a', 'b'];
|
|
$predictedLabels = ['a', 'a'];
|
|
|
|
Accuracy::score($actualLabels, $predictedLabels);
|
|
}
|
|
|
|
public function testCalculateNormalizedScore()
|
|
{
|
|
$actualLabels = ['a', 'b', 'a', 'b'];
|
|
$predictedLabels = ['a', 'a', 'b', 'b'];
|
|
|
|
$this->assertEquals(0.5, Accuracy::score($actualLabels, $predictedLabels));
|
|
}
|
|
|
|
public function testCalculateNotNormalizedScore()
|
|
{
|
|
$actualLabels = ['a', 'b', 'a', 'b'];
|
|
$predictedLabels = ['a', 'b', 'b', 'b'];
|
|
|
|
$this->assertEquals(3, Accuracy::score($actualLabels, $predictedLabels, false));
|
|
}
|
|
|
|
public function testAccuracyOnDemoDataset()
|
|
{
|
|
$dataset = new RandomSplit(new Iris(), 0.5, 123);
|
|
|
|
$classifier = new SVC(Kernel::RBF);
|
|
$classifier->train($dataset->getTrainSamples(), $dataset->getTrainLabels());
|
|
|
|
$predicted = $classifier->predict($dataset->getTestSamples());
|
|
|
|
$accuracy = Accuracy::score($dataset->getTestLabels(), $predicted);
|
|
|
|
$this->assertEquals(0.959, $accuracy, '', 0.01);
|
|
}
|
|
}
|