Completed
Push — develop ( 2f5b09...f186aa )
by Arkadiusz
16:40
created

BinaryStep   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
c 0
b 0
f 0
lcom 0
cbo 0
dl 0
loc 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A compute() 0 4 2
1
<?php
2
3
declare (strict_types = 1);
4
5
namespace Phpml\NeuralNetwork\ActivationFunction;
6
7
use Phpml\NeuralNetwork\ActivationFunction;
8
9
class BinaryStep implements ActivationFunction
10
{
11
    /**
12
     * @param float|int $value
13
     *
14
     * @return float
15
     */
16
    public function compute($value): float
17
    {
18
        return $value >= 0 ? 1.0 : 0.0;
19
    }
20
}
21