mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-22 21:15:10 +00:00
b1be0574d8
* Implement RELU activation functions * Add PReLUTest
40 lines
789 B
PHP
40 lines
789 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\Phpml\NeuralNetwork\ActivationFunction;
|
|
|
|
use Phpml\NeuralNetwork\ActivationFunction\PReLU;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class PReLUTest extends TestCase
|
|
{
|
|
/**
|
|
* @param $beta
|
|
* @param $expected
|
|
* @param $value
|
|
*
|
|
* @dataProvider preluProvider
|
|
*/
|
|
public function testPReLUActivationFunction($beta, $expected, $value)
|
|
{
|
|
$prelu = new PReLU($beta);
|
|
|
|
$this->assertEquals($expected, $prelu->compute($value), '', 0.001);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function preluProvider()
|
|
{
|
|
return [
|
|
[0.01, 0.367, 0.367],
|
|
[0.0, 1, 1],
|
|
[0.3, -0.3, -1],
|
|
[0.9, 3, 3],
|
|
[0.02, -0.06, -3],
|
|
];
|
|
}
|
|
}
|