php-ml/tests/Phpml/NeuralNetwork/ActivationFunction/ThresholdedReLUTest.php
Tomáš Votruba 653c7c772d Upgrade to PHP 7.1 (#150)
* upgrade to PHP 7.1

* bump travis and composer to PHP 7.1

* fix tests
2017-11-14 21:21:23 +01:00

35 lines
751 B
PHP

<?php
declare(strict_types=1);
namespace tests\Phpml\NeuralNetwork\ActivationFunction;
use Phpml\NeuralNetwork\ActivationFunction\ThresholdedReLU;
use PHPUnit\Framework\TestCase;
class ThresholdedReLUTest extends TestCase
{
/**
* @dataProvider thresholdProvider
*/
public function testThresholdedReLUActivationFunction($theta, $expected, $value): void
{
$thresholdedReLU = new ThresholdedReLU($theta);
$this->assertEquals($expected, $thresholdedReLU->compute($value));
}
/**
* @return array
*/
public function thresholdProvider()
{
return [
[1.0, 0, 1.0],
[0.5, 3.75, 3.75],
[0.0, 0.5, 0.5],
[0.9, 0, 0.1]
];
}
}