forked from jorgecasas/php-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
235 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Phpml; | ||
|
||
use Phpml\Exception\InvalidArgumentException; | ||
|
||
final class FeatureUnion implements Transformer | ||
{ | ||
/** | ||
* @var Pipeline[] | ||
*/ | ||
private $pipelines = []; | ||
|
||
/** | ||
* @var Pipeline[] | ||
*/ | ||
public function __construct(array $pipelines) | ||
{ | ||
if ($pipelines === []) { | ||
throw new InvalidArgumentException('At least one pipeline is required'); | ||
} | ||
|
||
$this->pipelines = array_map(static function (Pipeline $pipeline): Pipeline { | ||
return $pipeline; | ||
}, $pipelines); | ||
} | ||
|
||
public function fit(array $samples, ?array $targets = null): void | ||
{ | ||
$originSamples = $samples; | ||
foreach ($this->pipelines as $pipeline) { | ||
foreach ($pipeline->getTransformers() as $transformer) { | ||
$transformer->fit($samples, $targets); | ||
$transformer->transform($samples, $targets); | ||
} | ||
$samples = $originSamples; | ||
} | ||
} | ||
|
||
public function transform(array &$samples, ?array &$targets = null): void | ||
{ | ||
$this->transformSamples($samples, $targets); | ||
} | ||
|
||
public function fitAndTransform(array &$samples, ?array &$targets = null): void | ||
{ | ||
$this->transformSamples($samples, $targets, true); | ||
} | ||
|
||
private function transformSamples(array &$samples, ?array &$targets = null, bool $fit = false): void | ||
{ | ||
$union = []; | ||
$originSamples = $samples; | ||
foreach ($this->pipelines as $pipeline) { | ||
foreach ($pipeline->getTransformers() as $transformer) { | ||
if ($fit) { | ||
$transformer->fit($samples, $targets); | ||
} | ||
$transformer->transform($samples, $targets); | ||
} | ||
|
||
foreach ($samples as $index => $sample) { | ||
$union[$index] = array_merge($union[$index] ?? [], is_array($sample) ? $sample : [$sample]); | ||
} | ||
$samples = $originSamples; | ||
} | ||
|
||
$samples = $union; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Phpml\Tests; | ||
|
||
use Phpml\Exception\InvalidArgumentException; | ||
use Phpml\FeatureUnion; | ||
use Phpml\Pipeline; | ||
use Phpml\Preprocessing\ColumnFilter; | ||
use Phpml\Preprocessing\Imputer; | ||
use Phpml\Preprocessing\Imputer\Strategy\MeanStrategy; | ||
use Phpml\Preprocessing\LabelEncoder; | ||
use Phpml\Preprocessing\LambdaTransformer; | ||
use Phpml\Preprocessing\NumberConverter; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
final class FeatureUnionTest extends TestCase | ||
{ | ||
public function testFitAndTransform(): void | ||
{ | ||
$columns = ['age', 'income', 'sex']; | ||
$samples = [ | ||
['23', '100000', 'male'], | ||
['23', '200000', 'female'], | ||
['43', '150000', 'female'], | ||
['33', 'n/a', 'male'], | ||
]; | ||
$targets = ['1', '2', '1', '3']; | ||
|
||
$union = new FeatureUnion([ | ||
new Pipeline([ | ||
new ColumnFilter($columns, ['sex']), | ||
new LambdaTransformer(function (array $sample) { | ||
return $sample[0]; | ||
}), | ||
new LabelEncoder(), | ||
]), | ||
new Pipeline([ | ||
new ColumnFilter($columns, ['age', 'income']), | ||
new NumberConverter(true), | ||
new Imputer(null, new MeanStrategy(), Imputer::AXIS_COLUMN), | ||
]), | ||
]); | ||
|
||
$union->fitAndTransform($samples, $targets); | ||
|
||
self::assertEquals([ | ||
[0, 23.0, 100000.0], | ||
[1, 23.0, 200000.0], | ||
[1, 43.0, 150000.0], | ||
[0, 33.0, 150000.0], | ||
], $samples); | ||
self::assertEquals([1, 2, 1, 3], $targets); | ||
} | ||
|
||
public function testFitAndTransformSeparate(): void | ||
{ | ||
$columns = ['age', 'income', 'sex']; | ||
$trainSamples = [ | ||
['23', '100000', 'male'], | ||
['23', '200000', 'female'], | ||
['43', '150000', 'female'], | ||
['33', 'n/a', 'male'], | ||
]; | ||
$testSamples = [ | ||
['43', '500000', 'female'], | ||
['13', 'n/a', 'male'], | ||
['53', 'n/a', 'male'], | ||
['43', 'n/a', 'female'], | ||
]; | ||
|
||
$union = new FeatureUnion([ | ||
new Pipeline([ | ||
new ColumnFilter($columns, ['sex']), | ||
new LambdaTransformer(function (array $sample) { | ||
return $sample[0]; | ||
}), | ||
new LabelEncoder(), | ||
]), | ||
new Pipeline([ | ||
new ColumnFilter($columns, ['age', 'income']), | ||
new NumberConverter(), | ||
new Imputer(null, new MeanStrategy(), Imputer::AXIS_COLUMN), | ||
]), | ||
]); | ||
|
||
$union->fit($trainSamples); | ||
$union->transform($testSamples); | ||
|
||
self::assertEquals([ | ||
[1, 43.0, 500000.0], | ||
[0, 13.0, 150000.0], | ||
[0, 53.0, 150000.0], | ||
[1, 43.0, 150000.0], | ||
], $testSamples); | ||
} | ||
|
||
public function testNotAllowForEmptyPipelines(): void | ||
{ | ||
$this->expectException(InvalidArgumentException::class); | ||
|
||
new FeatureUnion([]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters