mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2025-01-24 23:58:24 +00:00
66 lines
1.7 KiB
PHP
66 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
declare (strict_types = 1);
|
||
|
|
||
|
namespace tests\Phpml\NeuralNetwork\Node;
|
||
|
|
||
|
use Phpml\NeuralNetwork\ActivationFunction\BinaryStep;
|
||
|
use Phpml\NeuralNetwork\Node\Neuron;
|
||
|
use Phpml\NeuralNetwork\Node\Synapse;
|
||
|
|
||
|
class NeuronTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
public function testNeuronInitialization()
|
||
|
{
|
||
|
$neuron = new Neuron();
|
||
|
|
||
|
$this->assertEquals([], $neuron->getSynapses());
|
||
|
$this->assertEquals(0.5, $neuron->getOutput());
|
||
|
}
|
||
|
|
||
|
public function testNeuronActivationFunction()
|
||
|
{
|
||
|
$activationFunction = $this->getMock(BinaryStep::class);
|
||
|
$activationFunction->method('compute')->with(0)->willReturn($output = 0.69);
|
||
|
|
||
|
$neuron = new Neuron($activationFunction);
|
||
|
|
||
|
$this->assertEquals($output, $neuron->getOutput());
|
||
|
}
|
||
|
|
||
|
public function testNeuronWithSynapse()
|
||
|
{
|
||
|
$neuron = new Neuron();
|
||
|
$neuron->addSynapse($synapse = $this->getSynapseMock());
|
||
|
|
||
|
$this->assertEquals([$synapse], $neuron->getSynapses());
|
||
|
$this->assertEquals(0.88, $neuron->getOutput(), '', 0.01);
|
||
|
}
|
||
|
|
||
|
public function testNeuronRefresh()
|
||
|
{
|
||
|
$neuron = new Neuron();
|
||
|
$neuron->getOutput();
|
||
|
$neuron->addSynapse($this->getSynapseMock());
|
||
|
|
||
|
$this->assertEquals(0.5, $neuron->getOutput(), '', 0.01);
|
||
|
|
||
|
$neuron->refresh();
|
||
|
|
||
|
$this->assertEquals(0.88, $neuron->getOutput(), '', 0.01);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param int $output
|
||
|
*
|
||
|
* @return \PHPUnit_Framework_MockObject_MockObject
|
||
|
*/
|
||
|
private function getSynapseMock($output = 2)
|
||
|
{
|
||
|
$synapse = $this->getMock(Synapse::class, [], [], '', false);
|
||
|
$synapse->method('getOutput')->willReturn($output);
|
||
|
|
||
|
return $synapse;
|
||
|
}
|
||
|
}
|