Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace Phpml\Classification;
6
 
7
abstract class WeightedClassifier implements Classifier
8
{
9
    /**
10
     * @var array
11
     */
12
    protected $weights = [];
13
 
14
    /**
15
     * Sets the array including a weight for each sample
16
     */
17
    public function setSampleWeights(array $weights): void
18
    {
19
        $this->weights = $weights;
20
    }
21
}