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