php-ml/src/Phpml/NeuralNetwork/Node.php
2016-08-02 20:30:20 +02:00

14 lines
164 B
PHP

<?php
declare (strict_types = 1);
namespace Phpml\NeuralNetwork;
interface Node
{
/**
* @return float
*/
public function getOutput(): float;
}