php-ml/src/Phpml/Clustering/Clusterer.php

17 lines
207 B
PHP
Raw Normal View History

2016-04-30 22:47:44 +00:00
<?php
declare(strict_types = 1);
namespace Phpml\Clustering;
interface Clusterer
{
/**
* @param array $samples
*
* @return array
*/
public function cluster(array $samples);
}