php-ml/src/IncrementalEstimator.php
2018-10-28 07:44:52 +01:00

11 lines
178 B
PHP

<?php
declare(strict_types=1);
namespace Phpml;
interface IncrementalEstimator
{
public function partialTrain(array $samples, array $targets, array $labels = []): void;
}