php-ml/src/Phpml/Classification/NaiveBayes.php

37 lines
817 B
PHP

<?php
declare(strict_types=1);
namespace Phpml\Classification;
use Phpml\Helper\Predictable;
use Phpml\Helper\Trainable;
class NaiveBayes implements Classifier
{
use Trainable, Predictable;
/**
* @param array $sample
*
* @return mixed
*/
protected function predictSample(array $sample)
{
$predictions = [];
foreach ($this->targets as $index => $label) {
$predictions[$label] = 0;
foreach ($sample as $token => $count) {
if (array_key_exists($token, $this->samples[$index])) {
$predictions[$label] += $count * $this->samples[$index][$token];
}
}
}
arsort($predictions, SORT_NUMERIC);
reset($predictions);
return key($predictions);
}
}