fann_run
PHP Manual
PHP Manual»Fann Funktionen»fann_run

fann_run

(PECL fann >= 1.0.0)

fann_runWill run input through the neural network

Beschreibung

function fann_run(resource $ann, array $input): array

Will run input through the neural network, returning an array of outputs, the number of which being equal to the number of neurons in the output layer.

Parameter-Liste

ann

Ressource eines neuralen Netzwerks.

input

Array of input values

Rückgabewerte

Array of output values, or false on error

To Top