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
|
|
|
|
2018-01-06 12:09:33 +00:00
|
|
|
namespace Phpml\Tests\NeuralNetwork\ActivationFunction;
|
2016-08-02 11:07:47 +00:00
|
|
|
|
|
|
|
use Phpml\NeuralNetwork\ActivationFunction\Sigmoid;
|
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 SigmoidTest extends TestCase
|
2016-08-02 11:07:47 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @dataProvider sigmoidProvider
|
2018-10-28 06:44:52 +00:00
|
|
|
*
|
|
|
|
* @param float|int $value
|
2016-08-02 11:07:47 +00:00
|
|
|
*/
|
2018-10-28 06:44:52 +00:00
|
|
|
public function testSigmoidActivationFunction(float $beta, float $expected, $value): void
|
2016-08-02 11:07:47 +00:00
|
|
|
{
|
|
|
|
$sigmoid = new Sigmoid($beta);
|
|
|
|
|
2019-04-10 18:42:59 +00:00
|
|
|
self::assertEqualsWithDelta($expected, $sigmoid->compute($value), 0.001);
|
2016-08-02 11:07:47 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 21:16:10 +00:00
|
|
|
public function sigmoidProvider(): array
|
2016-08-02 11:07:47 +00:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
[1.0, 1, 7.25],
|
|
|
|
[2.0, 1, 3.75],
|
|
|
|
[1.0, 0.5, 0],
|
|
|
|
[0.5, 0.5, 0],
|
|
|
|
[1.0, 0, -7.25],
|
|
|
|
[2.0, 0, -3.75],
|
|
|
|
];
|
|
|
|
}
|
2018-01-09 10:09:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider sigmoidDerivativeProvider
|
2018-10-28 06:44:52 +00:00
|
|
|
*
|
|
|
|
* @param float|int $value
|
2018-01-09 10:09:59 +00:00
|
|
|
*/
|
2018-10-28 06:44:52 +00:00
|
|
|
public function testSigmoidDerivative(float $beta, float $expected, $value): void
|
2018-01-09 10:09:59 +00:00
|
|
|
{
|
|
|
|
$sigmoid = new Sigmoid($beta);
|
|
|
|
$activatedValue = $sigmoid->compute($value);
|
2019-04-10 18:42:59 +00:00
|
|
|
self::assertEqualsWithDelta($expected, $sigmoid->differentiate($value, $activatedValue), 0.001);
|
2018-01-09 10:09:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function sigmoidDerivativeProvider(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[1.0, 0, -10],
|
|
|
|
[1, 0.006, -5],
|
|
|
|
[1.0, 0.25, 0],
|
|
|
|
[1, 0.006, 5],
|
|
|
|
[1.0, 0, 10],
|
|
|
|
[2.0, 0.25, 0],
|
|
|
|
[0.5, 0.246, 0.5],
|
|
|
|
[0.5, 0.241, 0.75],
|
|
|
|
];
|
|
|
|
}
|
2016-08-02 11:07:47 +00:00
|
|
|
}
|