Synapse   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 44
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 7
eloc 10
dl 0
loc 44
rs 10
c 0
b 0
f 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getOutput() 0 3 1
A getWeight() 0 3 1
A changeWeight() 0 3 1
A getNode() 0 3 1
A generateRandomWeight() 0 3 2
A __construct() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Phpml\NeuralNetwork\Node\Neuron;
6
7
use Phpml\NeuralNetwork\Node;
8
9
class Synapse
10
{
11
    /**
12
     * @var float
13
     */
14
    protected $weight;
15
16
    /**
17
     * @var Node
18
     */
19
    protected $node;
20
21
    /**
22
     * @param float|null $weight
23
     */
24
    public function __construct(Node $node, ?float $weight = null)
25
    {
26
        $this->node = $node;
27
        $this->weight = $weight ?? $this->generateRandomWeight();
28
    }
29
30
    public function getOutput(): float
31
    {
32
        return $this->weight * $this->node->getOutput();
33
    }
34
35
    public function changeWeight(float $delta): void
36
    {
37
        $this->weight += $delta;
38
    }
39
40
    public function getWeight(): float
41
    {
42
        return $this->weight;
43
    }
44
45
    public function getNode(): Node
46
    {
47
        return $this->node;
48
    }
49
50
    protected function generateRandomWeight(): float
51
    {
52
        return (1 / random_int(5, 25) * random_int(0, 1)) > 0 ? -1 : 1;
53
    }
54
}
55