2016-05-03 21:28:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare (strict_types = 1);
|
|
|
|
|
|
|
|
namespace Phpml\FeatureExtraction;
|
|
|
|
|
2016-06-15 12:09:49 +00:00
|
|
|
interface Transformer
|
2016-05-03 21:28:29 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @param array $samples
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function transform(array $samples): array;
|
|
|
|
}
|