mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-30 00:33:56 +00:00
726cf4cddf
* travis: move coveralls here, decouple from package * composer: use PSR4 * phpunit: simpler config * travis: add ecs run * composer: add ecs dev * use standard vendor/bin directory for dependency bins, confuses with local bins and require gitignore handling * ecs: add PSR2 * [cs] PSR2 spacing fixes * [cs] PSR2 class name fix * [cs] PHP7 fixes - return semicolon spaces, old rand functions, typehints * [cs] fix less strict typehints * fix typehints to make tests pass * ecs: ignore typehint-less elements * [cs] standardize arrays * [cs] standardize docblock, remove unused comments * [cs] use self where possible * [cs] sort class elements, from public to private * [cs] do not use yoda (found less yoda-cases, than non-yoda) * space * [cs] do not assign in condition * [cs] use namespace imports if possible * [cs] use ::class over strings * [cs] fix defaults for arrays properties, properties and constants single spacing * cleanup ecs comments * [cs] use item per line in multi-items array * missing line * misc * rebase
66 lines
1.8 KiB
PHP
66 lines
1.8 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\Neuron\Synapse;
|
|
use PHPUnit\Framework\TestCase;
|
|
use PHPUnit_Framework_MockObject_MockObject;
|
|
|
|
class NeuronTest extends TestCase
|
|
{
|
|
public function testNeuronInitialization(): void
|
|
{
|
|
$neuron = new Neuron();
|
|
|
|
$this->assertEquals([], $neuron->getSynapses());
|
|
$this->assertEquals(0.5, $neuron->getOutput());
|
|
}
|
|
|
|
public function testNeuronActivationFunction(): void
|
|
{
|
|
$activationFunction = $this->getMockBuilder(BinaryStep::class)->getMock();
|
|
$activationFunction->method('compute')->with(0)->willReturn($output = 0.69);
|
|
|
|
$neuron = new Neuron($activationFunction);
|
|
|
|
$this->assertEquals($output, $neuron->getOutput());
|
|
}
|
|
|
|
public function testNeuronWithSynapse(): void
|
|
{
|
|
$neuron = new Neuron();
|
|
$neuron->addSynapse($synapse = $this->getSynapseMock());
|
|
|
|
$this->assertEquals([$synapse], $neuron->getSynapses());
|
|
$this->assertEquals(0.88, $neuron->getOutput(), '', 0.01);
|
|
}
|
|
|
|
public function testNeuronRefresh(): void
|
|
{
|
|
$neuron = new Neuron();
|
|
$neuron->getOutput();
|
|
$neuron->addSynapse($this->getSynapseMock());
|
|
|
|
$this->assertEquals(0.5, $neuron->getOutput(), '', 0.01);
|
|
|
|
$neuron->reset();
|
|
|
|
$this->assertEquals(0.88, $neuron->getOutput(), '', 0.01);
|
|
}
|
|
|
|
/**
|
|
* @return Synapse|PHPUnit_Framework_MockObject_MockObject
|
|
*/
|
|
private function getSynapseMock(int $output = 2)
|
|
{
|
|
$synapse = $this->getMockBuilder(Synapse::class)->disableOriginalConstructor()->getMock();
|
|
$synapse->method('getOutput')->willReturn($output);
|
|
|
|
return $synapse;
|
|
}
|
|
}
|