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.
Add ThresholdedReLU activation function (#129)
- Loading branch information
1 parent
cacfd64
commit 0e59cfb
Showing
2 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
src/Phpml/NeuralNetwork/ActivationFunction/ThresholdedReLU.php
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,33 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Phpml\NeuralNetwork\ActivationFunction; | ||
|
||
use Phpml\NeuralNetwork\ActivationFunction; | ||
|
||
class ThresholdedReLU implements ActivationFunction | ||
{ | ||
/** | ||
* @var float | ||
*/ | ||
private $theta; | ||
|
||
/** | ||
* @param float $theta | ||
*/ | ||
public function __construct($theta = 1.0) | ||
{ | ||
$this->theta = $theta; | ||
} | ||
|
||
/** | ||
* @param float|int $value | ||
* | ||
* @return float | ||
*/ | ||
public function compute($value): float | ||
{ | ||
return $value > $this->theta ? $value : 0.0; | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
tests/Phpml/NeuralNetwork/ActivationFunction/ThresholdedReLUTest.php
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,38 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace tests\Phpml\NeuralNetwork\ActivationFunction; | ||
|
||
use Phpml\NeuralNetwork\ActivationFunction\ThresholdedReLU; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class ThresholdedReLUTest extends TestCase | ||
{ | ||
/** | ||
* @param $theta | ||
* @param $expected | ||
* @param $value | ||
* | ||
* @dataProvider thresholdProvider | ||
*/ | ||
public function testThresholdedReLUActivationFunction($theta, $expected, $value) | ||
{ | ||
$thresholdedReLU = new ThresholdedReLU($theta); | ||
|
||
$this->assertEquals($expected, $thresholdedReLU->compute($value)); | ||
} | ||
|
||
/** | ||
* @return array | ||
*/ | ||
public function thresholdProvider() | ||
{ | ||
return [ | ||
[1.0, 0, 1.0], | ||
[0.5, 3.75, 3.75], | ||
[0.0, 0.5, 0.5], | ||
[0.9, 0, 0.1] | ||
]; | ||
} | ||
} |