mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-15 17:57:11 +00:00
16 lines
274 B
PHP
16 lines
274 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 = []);
|
|
}
|