php-ml/src/Phpml/Classifier/NaiveBayes.php
2016-04-04 22:25:27 +02:00

28 lines
369 B
PHP

<?php
declare(strict_types=1);
namespace Phpml\Classifier;
class NaiveBayes implements Classifier
{
/**
* @param array $features
* @param array $labels
*/
public function train(array $features, array $labels)
{
}
/**
* @param mixed $feature
* @return mixed
*/
public function predict($feature)
{
}
}