php-ml/src/Phpml/Classifier/NaiveBayes/GaussianNaiveBayes.php
2016-04-04 21:50:30 +02:00

27 lines
342 B
PHP

<?php
use Phpml\Classifier\NaiveBayes;
class GaussianNaiveBayes extends NaiveBayes
{
/**
* @param array $features
* @param array $labels
*/
public function train($features, $labels)
{
}
/**
* @param mixed $feature
* @return mixed
*/
public function predict($feature)
{
}
}