|
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;
|
|
|
6 |
|
|
|
7 |
interface IncrementalEstimator
|
|
|
8 |
{
|
|
|
9 |
public function partialTrain(array $samples, array $targets, array $labels = []): void;
|
|
|
10 |
}
|