2016-08-02 11:07:47 +00:00
|
|
|
<?php
|
|
|
|
|
2016-11-20 21:53:17 +00:00
|
|
|
declare(strict_types=1);
|
2016-08-02 11:07:47 +00:00
|
|
|
|
|
|
|
namespace tests\Phpml\NeuralNetwork\ActivationFunction;
|
|
|
|
|
|
|
|
use Phpml\NeuralNetwork\ActivationFunction\HyperbolicTangent;
|
2017-02-03 11:58:25 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-08-02 11:07:47 +00:00
|
|
|
|
2017-02-03 11:58:25 +00:00
|
|
|
class HyperboliTangentTest extends TestCase
|
2016-08-02 11:07:47 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @dataProvider tanhProvider
|
|
|
|
*/
|
|
|
|
public function testHyperbolicTangentActivationFunction($beta, $expected, $value)
|
|
|
|
{
|
|
|
|
$tanh = new HyperbolicTangent($beta);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $tanh->compute($value), '', 0.001);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function tanhProvider()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[1.0, 0.761, 1],
|
|
|
|
[1.0, 0, 0],
|
|
|
|
[1.0, 1, 4],
|
|
|
|
[1.0, -1, -4],
|
|
|
|
[0.5, 0.462, 1],
|
|
|
|
[0.3, 0, 0],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|