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

21 lines
264 B
PHP
Raw Normal View History

2016-08-05 14:12:39 +00:00
<?php
declare (strict_types = 1);
namespace Phpml\NeuralNetwork;
interface Network extends Node
{
/**
* @param mixed $input
*/
public function setInput($input);
/**
* @return array
*/
public function getLayers(): array;
}