mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-15 01:44:05 +00:00
35 lines
745 B
PHP
35 lines
745 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)
|
||
|
{
|
||
|
$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]
|
||
|
];
|
||
|
}
|
||
|
}
|