| Current Path : /hdd/hdd11/www/vlevski/ict/lib/mlbackend/php/phpml/src/Phpml/ |
| Current File : /hdd/hdd11/www/vlevski/ict/lib/mlbackend/php/phpml/src/Phpml/Transformer.php |
<?php
declare(strict_types=1);
namespace Phpml;
interface Transformer
{
/**
* @param array $samples
*/
public function fit(array $samples);
/**
* @param array $samples
*/
public function transform(array &$samples);
}