mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-16 02:07:08 +00:00
16 lines
207 B
PHP
16 lines
207 B
PHP
<?php
|
|
|
|
declare (strict_types = 1);
|
|
|
|
namespace Phpml\Clustering;
|
|
|
|
interface Clusterer
|
|
{
|
|
/**
|
|
* @param array $samples
|
|
*
|
|
* @return array
|
|
*/
|
|
public function cluster(array $samples);
|
|
}
|