2016-08-02 18:30:20 +00:00
|
|
|
<?php
|
|
|
|
|
2016-11-20 21:53:17 +00:00
|
|
|
declare(strict_types=1);
|
2016-08-02 18:30:20 +00:00
|
|
|
|
|
|
|
namespace tests\Phpml\NeuralNetwork\Node;
|
|
|
|
|
|
|
|
use Phpml\NeuralNetwork\ActivationFunction\BinaryStep;
|
|
|
|
use Phpml\NeuralNetwork\Node\Neuron;
|
2016-08-05 08:20:31 +00:00
|
|
|
use Phpml\NeuralNetwork\Node\Neuron\Synapse;
|
2017-02-03 11:58:25 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-08-02 18:30:20 +00:00
|
|
|
|
2017-02-03 11:58:25 +00:00
|
|
|
class NeuronTest extends TestCase
|
2016-08-02 18:30:20 +00:00
|
|
|
{
|
|
|
|
public function testNeuronInitialization()
|
|
|
|
{
|
|
|
|
$neuron = new Neuron();
|
|
|
|
|
|
|
|
$this->assertEquals([], $neuron->getSynapses());
|
|
|
|
$this->assertEquals(0.5, $neuron->getOutput());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testNeuronActivationFunction()
|
|
|
|
{
|
2016-09-21 19:46:16 +00:00
|
|
|
$activationFunction = $this->getMockBuilder(BinaryStep::class)->getMock();
|
2016-08-02 18:30:20 +00:00
|
|
|
$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
|
|
|
|
*
|
2016-08-05 08:20:31 +00:00
|
|
|
* @return Synapse|\PHPUnit_Framework_MockObject_MockObject
|
2016-08-02 18:30:20 +00:00
|
|
|
*/
|
|
|
|
private function getSynapseMock($output = 2)
|
|
|
|
{
|
2016-09-21 19:46:16 +00:00
|
|
|
$synapse = $this->getMockBuilder(Synapse::class)->disableOriginalConstructor()->getMock();
|
2016-08-02 18:30:20 +00:00
|
|
|
$synapse->method('getOutput')->willReturn($output);
|
|
|
|
|
|
|
|
return $synapse;
|
|
|
|
}
|
|
|
|
}
|