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

16 lines
207 B
PHP
Raw Normal View History

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