php-ml/tests/Phpml/NeuralNetwork/ActivationFunction/PReLUTest.php
Tomáš Votruba 653c7c772d Upgrade to PHP 7.1 (#150)
* upgrade to PHP 7.1

* bump travis and composer to PHP 7.1

* fix tests
2017-11-14 21:21:23 +01:00

36 lines
723 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
{
/**
* @dataProvider preluProvider
*/
public function testPReLUActivationFunction($beta, $expected, $value): void
{
$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],
];
}
}