php-ml/src/NeuralNetwork/Node.php
2018-02-10 12:08:58 +01:00

11 lines
124 B
PHP

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