Completed
Push — develop ( 7062ee...12ee62 )
by Arkadiusz
02:50
created

LayeredNetwork   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 3
c 0
b 0
f 0
lcom 0
cbo 0
dl 0
loc 28
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getLayers() 0 4 1
A getOutput() 0 4 1
A setInput() 0 4 1
1
<?php
2
3
declare (strict_types = 1);
4
5
namespace Phpml\NeuralNetwork\Network;
6
7
use Phpml\NeuralNetwork\Network;
8
9
abstract class LayeredNetwork implements Network
10
{
11
12
    /**
13
     * @return array
14
     */
15
    public function getLayers(): array
16
    {
17
18
    }
19
20
    /**
21
     * @return float
22
     */
23
    public function getOutput(): float
24
    {
25
26
    }
27
28
    /**
29
     * @param mixed $input
30
     */
31
    public function setInput($input)
32
    {
33
34
    }
35
36
}
37