mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2025-01-10 09:02:15 +00:00
40 lines
838 B
PHP
40 lines
838 B
PHP
|
<?php
|
||
|
|
||
|
declare (strict_types = 1);
|
||
|
|
||
|
namespace tests\Phpml\NeuralNetwork\ActivationFunction;
|
||
|
|
||
|
use Phpml\NeuralNetwork\ActivationFunction\HyperbolicTangent;
|
||
|
|
||
|
class HyperboliTangentTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @param $beta
|
||
|
* @param $expected
|
||
|
* @param $value
|
||
|
*
|
||
|
* @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],
|
||
|
];
|
||
|
}
|
||
|
}
|