mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2025-01-26 16:48:25 +00:00
d85bfed468
* [cs] remove more unused comments * [cs] remove unused array phpdocs * [cs] remove empty lines in docs * [cs] space-proof useless docs * [cs] remove empty @param lines * [cs] remove references arrays
34 lines
653 B
PHP
34 lines
653 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\Phpml\NeuralNetwork\ActivationFunction;
|
|
|
|
use Phpml\NeuralNetwork\ActivationFunction\BinaryStep;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class BinaryStepTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider binaryStepProvider
|
|
*/
|
|
public function testBinaryStepActivationFunction($expected, $value)
|
|
{
|
|
$binaryStep = new BinaryStep();
|
|
|
|
$this->assertEquals($expected, $binaryStep->compute($value));
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function binaryStepProvider()
|
|
{
|
|
return [
|
|
[1, 1],
|
|
[1, 0],
|
|
[0, -0.1],
|
|
];
|
|
}
|
|
}
|