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

14 lines
164 B
PHP

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