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

31 lines
629 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\BinaryStep;
2017-02-03 11:58:25 +00:00
use PHPUnit\Framework\TestCase;
2017-02-03 11:58:25 +00:00
class BinaryStepTest extends TestCase
{
/**
* @dataProvider binaryStepProvider
*/
public function testBinaryStepActivationFunction($expected, $value): void
{
$binaryStep = new BinaryStep();
$this->assertEquals($expected, $binaryStep->compute($value));
}
public function binaryStepProvider(): array
{
return [
[1, 1],
[1, 0],
[0, -0.1],
];
}
}