for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare (strict_types = 1);
namespace Phpml\NeuralNetwork\Node;
use Phpml\NeuralNetwork\Node;
class Input implements Node
{
/**
* @var float
*/
private $input;
* @param float $input
public function __construct(float $input = 0.0)
$this->input = $input;
}
* @return float
public function getOutput(): float
return $this->input;
public function setInput(float $input)