php-ml/tests/NeuralNetwork/ActivationFunction/GaussianTest.php

60 lines
1.3 KiB
PHP
Raw Normal View History

<?php
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
namespace Phpml\Tests\NeuralNetwork\ActivationFunction;
use Phpml\NeuralNetwork\ActivationFunction\Gaussian;
2017-02-03 11:58:25 +00:00
use PHPUnit\Framework\TestCase;
2017-02-03 11:58:25 +00:00
class GaussianTest extends TestCase
{
/**
* @dataProvider gaussianProvider
2018-10-28 06:44:52 +00:00
*
* @param float|int $value
*/
2018-10-28 06:44:52 +00:00
public function testGaussianActivationFunction(float $expected, $value): void
{
$gaussian = new Gaussian();
self::assertEqualsWithDelta($expected, $gaussian->compute($value), 0.001);
}
public function gaussianProvider(): array
{
return [
[0.367, 1],
[1, 0],
[0.367, -1],
[0, 3],
[0, -3],
];
}
/**
* @dataProvider gaussianDerivativeProvider
2018-10-28 06:44:52 +00:00
*
* @param float|int $value
*/
2018-10-28 06:44:52 +00:00
public function testGaussianDerivative(float $expected, $value): void
{
$gaussian = new Gaussian();
$activatedValue = $gaussian->compute($value);
self::assertEqualsWithDelta($expected, $gaussian->differentiate($value, $activatedValue), 0.001);
}
public function gaussianDerivativeProvider(): array
{
return [
[0, -5],
[0.735, -1],
[0.779, -0.5],
[0, 0],
[-0.779, 0.5],
[-0.735, 1],
[0, 5],
];
}
}