mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-25 22:37:34 +00:00
change interfaces and add Estimator and Pipeline
This commit is contained in:
parent
cc50d2c9b1
commit
cab79e7e36
@ -4,18 +4,8 @@ declare (strict_types = 1);
|
|||||||
|
|
||||||
namespace Phpml\Classification;
|
namespace Phpml\Classification;
|
||||||
|
|
||||||
interface Classifier
|
use Phpml\Estimator;
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @param array $samples
|
|
||||||
* @param array $labels
|
|
||||||
*/
|
|
||||||
public function train(array $samples, array $labels);
|
|
||||||
|
|
||||||
/**
|
interface Classifier extends Estimator
|
||||||
* @param array $samples
|
{
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function predict(array $samples);
|
|
||||||
}
|
}
|
||||||
|
21
src/Phpml/Estimator.php
Normal file
21
src/Phpml/Estimator.php
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare (strict_types = 1);
|
||||||
|
|
||||||
|
namespace Phpml;
|
||||||
|
|
||||||
|
interface Estimator
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @param array $samples
|
||||||
|
* @param array $targets
|
||||||
|
*/
|
||||||
|
public function train(array $samples, array $targets);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $samples
|
||||||
|
*
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function predict(array $samples);
|
||||||
|
}
|
@ -4,6 +4,8 @@ declare (strict_types = 1);
|
|||||||
|
|
||||||
namespace Phpml\FeatureExtraction;
|
namespace Phpml\FeatureExtraction;
|
||||||
|
|
||||||
|
use Phpml\Transformer;
|
||||||
|
|
||||||
class TfIdfTransformer implements Transformer
|
class TfIdfTransformer implements Transformer
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
@ -5,6 +5,7 @@ declare (strict_types = 1);
|
|||||||
namespace Phpml\FeatureExtraction;
|
namespace Phpml\FeatureExtraction;
|
||||||
|
|
||||||
use Phpml\Tokenization\Tokenizer;
|
use Phpml\Tokenization\Tokenizer;
|
||||||
|
use Phpml\Transformer;
|
||||||
|
|
||||||
class TokenCountVectorizer implements Transformer
|
class TokenCountVectorizer implements Transformer
|
||||||
{
|
{
|
||||||
|
29
src/Phpml/Pipeline.php
Normal file
29
src/Phpml/Pipeline.php
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare (strict_types = 1);
|
||||||
|
|
||||||
|
namespace Phpml\Pipeline;
|
||||||
|
|
||||||
|
class Pipeline
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
private $stages;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $stages
|
||||||
|
*/
|
||||||
|
public function __construct(array $stages)
|
||||||
|
{
|
||||||
|
$this->stages = $stages;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $stage
|
||||||
|
*/
|
||||||
|
public function addStage($stage)
|
||||||
|
{
|
||||||
|
$this->stages[] = $stage;
|
||||||
|
}
|
||||||
|
}
|
@ -4,18 +4,8 @@ declare (strict_types = 1);
|
|||||||
|
|
||||||
namespace Phpml\Regression;
|
namespace Phpml\Regression;
|
||||||
|
|
||||||
interface Regression
|
use Phpml\Estimator;
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @param array $samples
|
|
||||||
* @param array $targets
|
|
||||||
*/
|
|
||||||
public function train(array $samples, array $targets);
|
|
||||||
|
|
||||||
/**
|
interface Regression extends Estimator
|
||||||
* @param array $samples
|
{
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function predict(array $samples);
|
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare (strict_types = 1);
|
declare (strict_types = 1);
|
||||||
|
|
||||||
namespace Phpml\FeatureExtraction;
|
namespace Phpml;
|
||||||
|
|
||||||
interface Transformer
|
interface Transformer
|
||||||
{
|
{
|
Loading…
Reference in New Issue
Block a user