php-ml/src/Phpml/NeuralNetwork/Node/Bias.php

16 lines
204 B
PHP
Raw Normal View History

<?php
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
namespace Phpml\NeuralNetwork\Node;
use Phpml\NeuralNetwork\Node;
class Bias implements Node
{
public function getOutput() : float
{
return 1.0;
}
}