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

BinaryStep::compute()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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