php-ml/src/Pipeline.php

81 lines
1.6 KiB
PHP
Raw Normal View History

<?php
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
2016-06-16 07:58:12 +00:00
namespace Phpml;
2016-06-16 07:58:12 +00:00
class Pipeline implements Estimator
{
/**
* @var Transformer[]
*/
private $transformers = [];
/**
2016-06-16 07:58:12 +00:00
* @var Estimator
*/
2016-06-16 07:58:12 +00:00
private $estimator;
/**
* @param Transformer[] $transformers
2016-06-16 07:58:12 +00:00
*/
2016-11-20 21:53:17 +00:00
public function __construct(array $transformers, Estimator $estimator)
2016-06-16 07:58:12 +00:00
{
foreach ($transformers as $transformer) {
$this->addTransformer($transformer);
}
$this->estimator = $estimator;
}
public function addTransformer(Transformer $transformer): void
2016-06-16 07:58:12 +00:00
{
$this->transformers[] = $transformer;
}
public function setEstimator(Estimator $estimator): void
{
2016-06-16 07:58:12 +00:00
$this->estimator = $estimator;
}
/**
* @return Transformer[]
*/
public function getTransformers(): array
{
2016-06-16 07:58:12 +00:00
return $this->transformers;
}
2016-06-16 07:58:12 +00:00
public function getEstimator(): Estimator
2016-06-16 07:58:12 +00:00
{
return $this->estimator;
}
public function train(array $samples, array $targets): void
2016-06-16 07:58:12 +00:00
{
foreach ($this->transformers as $transformer) {
2018-02-14 18:05:48 +00:00
$transformer->fit($samples, $targets);
$transformer->transform($samples);
}
2016-06-16 07:58:12 +00:00
$this->estimator->train($samples, $targets);
}
/**
* @return mixed
*/
public function predict(array $samples)
{
$this->transformSamples($samples);
2016-06-16 07:58:12 +00:00
return $this->estimator->predict($samples);
}
private function transformSamples(array &$samples): void
{
foreach ($this->transformers as $transformer) {
$transformer->transform($samples);
}
}
}