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

11 lines
139 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
{
public function cluster(array $samples) : array;
2016-04-30 22:47:44 +00:00
}