PHP 7.0.6 Released

fann_get_total_neurons

(PECL fann >= 1.0.0)

fann_get_total_neuronsGet the total number of neurons in the entire network

Description

int fann_get_total_neurons ( resource $ann )

Get the total number of neurons in the entire network. This number does also include the bias neurons, so a 2-4-2 network has 2+4+2 +2(bias) = 10 neurons.

Parameters

ann

Neural network resource.

Return Values

Total number of neurons in the entire network, or FALSE on error.

User Contributed Notes

There are no user contributed notes for this page.
To Top