Synapse::getOutput()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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