mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-15 17:57:11 +00:00
21 lines
264 B
PHP
21 lines
264 B
PHP
|
<?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;
|
||
|
|
||
|
}
|