php-ml/src/Phpml/FeatureExtraction/Vectorizer.php

16 lines
224 B
PHP
Raw Normal View History

<?php
declare (strict_types = 1);
namespace Phpml\FeatureExtraction;
interface Vectorizer
{
/**
* @param array $samples
*
* @return array
*/
public function transform(array $samples): array;
}