php-ml/tests/Phpml/NeuralNetwork/ActivationFunction/SigmoidTest.php

37 lines
763 B
PHP
Raw Normal View History

<?php
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
namespace tests\Phpml\NeuralNetwork\ActivationFunction;
use Phpml\NeuralNetwork\ActivationFunction\Sigmoid;
2017-02-03 11:58:25 +00:00
use PHPUnit\Framework\TestCase;
2017-02-03 11:58:25 +00:00
class SigmoidTest extends TestCase
{
/**
* @dataProvider sigmoidProvider
*/
public function testSigmoidActivationFunction($beta, $expected, $value): void
{
$sigmoid = new Sigmoid($beta);
$this->assertEquals($expected, $sigmoid->compute($value), '', 0.001);
}
/**
* @return array
*/
public function sigmoidProvider()
{
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],
];
}
}