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\BinaryStep;
|
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 BinaryStepTest extends TestCase
|
2016-08-02 11:07:47 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @dataProvider binaryStepProvider
|
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 testBinaryStepActivationFunction(float $expected, $value): void
|
2016-08-02 11:07:47 +00:00
|
|
|
{
|
|
|
|
$binaryStep = new BinaryStep();
|
|
|
|
|
2018-10-28 06:44:52 +00:00
|
|
|
self::assertEquals($expected, $binaryStep->compute($value));
|
2016-08-02 11:07:47 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 21:16:10 +00:00
|
|
|
public function binaryStepProvider(): array
|
2016-08-02 11:07:47 +00:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
[1, 1],
|
|
|
|
[1, 0],
|
|
|
|
[0, -0.1],
|
|
|
|
];
|
|
|
|
}
|
2018-01-09 10:09:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider binaryStepDerivativeProvider
|
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 testBinaryStepDerivative(float $expected, $value): void
|
2018-01-09 10:09:59 +00:00
|
|
|
{
|
|
|
|
$binaryStep = new BinaryStep();
|
|
|
|
$activatedValue = $binaryStep->compute($value);
|
2018-10-28 06:44:52 +00:00
|
|
|
self::assertEquals($expected, $binaryStep->differentiate($value, $activatedValue));
|
2018-01-09 10:09:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function binaryStepDerivativeProvider(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[0, -1],
|
|
|
|
[1, 0],
|
|
|
|
[0, 1],
|
|
|
|
];
|
|
|
|
}
|
2016-08-02 11:07:47 +00:00
|
|
|
}
|