php-ml/src/Classification/WeightedClassifier.php
2018-02-10 12:08:58 +01:00

22 lines
369 B
PHP

<?php
declare(strict_types=1);
namespace Phpml\Classification;
abstract class WeightedClassifier implements Classifier
{
/**
* @var array
*/
protected $weights = [];
/**
* Sets the array including a weight for each sample
*/
public function setSampleWeights(array $weights): void
{
$this->weights = $weights;
}
}