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

16 lines
204 B
PHP
Raw Normal View History

2016-04-30 22:47:44 +00:00
<?php
2016-04-30 22:56:43 +00:00
2016-11-20 21:53:17 +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);
}