mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-15 17:57:11 +00:00
17 lines
280 B
PHP
17 lines
280 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Phpml;
|
||
|
|
||
|
interface IncrementalEstimator
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @param array $samples
|
||
|
* @param array $targets
|
||
|
* @param array $labels
|
||
|
*/
|
||
|
public function partialTrain(array $samples, array $targets, array $labels = array());
|
||
|
}
|