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
10 changed files
with
102 additions
and
8 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
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
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,47 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Phpml\Preprocessing; | ||
|
||
final class NumberConverter implements Preprocessor | ||
{ | ||
/** | ||
* @var bool | ||
*/ | ||
private $transformTargets; | ||
|
||
/** | ||
* @var mixed | ||
*/ | ||
private $nonNumericPlaceholder; | ||
|
||
/** | ||
* @param mixed $nonNumericPlaceholder | ||
*/ | ||
public function __construct(bool $transformTargets = false, $nonNumericPlaceholder = null) | ||
{ | ||
$this->transformTargets = $transformTargets; | ||
$this->nonNumericPlaceholder = $nonNumericPlaceholder; | ||
} | ||
|
||
public function fit(array $samples, ?array $targets = null): void | ||
{ | ||
//nothing to do | ||
} | ||
|
||
public function transform(array &$samples, ?array &$targets = null): void | ||
{ | ||
foreach ($samples as &$sample) { | ||
foreach ($sample as &$feature) { | ||
$feature = is_numeric($feature) ? (float) $feature : $this->nonNumericPlaceholder; | ||
} | ||
} | ||
|
||
if ($this->transformTargets && is_array($targets)) { | ||
foreach ($targets as &$target) { | ||
$target = is_numeric($target) ? (float) $target : $this->nonNumericPlaceholder; | ||
} | ||
} | ||
} | ||
} |
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,47 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Phpml\Tests\Preprocessing; | ||
|
||
use Phpml\Preprocessing\NumberConverter; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
final class NumberConverterTest extends TestCase | ||
{ | ||
public function testConvertSamples(): void | ||
{ | ||
$samples = [['1', '-4'], ['2.0', 3.0], ['3', '112.5'], ['5', '0.0004']]; | ||
$targets = ['1', '1', '2', '2']; | ||
|
||
$converter = new NumberConverter(); | ||
$converter->transform($samples, $targets); | ||
|
||
self::assertEquals([[1.0, -4.0], [2.0, 3.0], [3.0, 112.5], [5.0, 0.0004]], $samples); | ||
self::assertEquals(['1', '1', '2', '2'], $targets); | ||
} | ||
|
||
public function testConvertTargets(): void | ||
{ | ||
$samples = [['1', '-4'], ['2.0', 3.0], ['3', '112.5'], ['5', '0.0004']]; | ||
$targets = ['1', '1', '2', 'not']; | ||
|
||
$converter = new NumberConverter(true); | ||
$converter->transform($samples, $targets); | ||
|
||
self::assertEquals([[1.0, -4.0], [2.0, 3.0], [3.0, 112.5], [5.0, 0.0004]], $samples); | ||
self::assertEquals([1.0, 1.0, 2.0, null], $targets); | ||
} | ||
|
||
public function testConvertWithPlaceholder(): void | ||
{ | ||
$samples = [['invalid'], ['13.5']]; | ||
$targets = ['invalid', '2']; | ||
|
||
$converter = new NumberConverter(true, 'missing'); | ||
$converter->transform($samples, $targets); | ||
|
||
self::assertEquals([['missing'], [13.5]], $samples); | ||
self::assertEquals(['missing', 2.0], $targets); | ||
} | ||
} |