php-ml/src/NeuralNetwork/Node.php

11 lines
124 B
PHP

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