php-ml/src/Clustering/Clusterer.php

11 lines
138 B
PHP

<?php
declare(strict_types=1);
namespace Phpml\Clustering;
interface Clusterer
{
public function cluster(array $samples): array;
}