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
|
|
|
|
|
|
|
namespace tests\Phpml\NeuralNetwork\ActivationFunction;
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
2017-11-14 20:21:23 +00:00
|
|
|
public function testBinaryStepActivationFunction($expected, $value): void
|
2016-08-02 11:07:47 +00:00
|
|
|
{
|
|
|
|
$binaryStep = new BinaryStep();
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $binaryStep->compute($value));
|
|
|
|
}
|
|
|
|
|
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],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|