mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-11 16:15:50 +00:00
14 lines
161 B
PHP
14 lines
161 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Phpml\NeuralNetwork;
|
|
|
|
interface Node
|
|
{
|
|
/**
|
|
* @return float
|
|
*/
|
|
public function getOutput(): float;
|
|
}
|