|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1 |
efrain |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
declare(strict_types=1);
|
|
|
4 |
|
|
|
5 |
namespace Phpml\NeuralNetwork\Node;
|
|
|
6 |
|
|
|
7 |
use Phpml\NeuralNetwork\Node;
|
|
|
8 |
|
|
|
9 |
class Bias implements Node
|
|
|
10 |
{
|
|
|
11 |
public function getOutput(): float
|
|
|
12 |
{
|
|
|
13 |
return 1.0;
|
|
|
14 |
}
|
|
|
15 |
}
|