fann_get_num_output

(PECL fann >= 1.0.0) Get the number of output neurons int fann_get_num_output ( resource $ann ) Get the number of output neurons. Parameters: ann Neural network resource. Returns: Number of output neurons, or FALSE on error

fann_get_num_layers

(PECL fann >= 1.0.0) Get the number of layers in the neural network int fann_get_num_layers ( resource $ann ) Get the number of layers in the neural network. Parameters: ann Neural network resource. Returns: The number of leayers in the neural network, or FALSE on error.

fann_get_num_input

(PECL fann >= 1.0.0) Get the number of input neurons int fann_get_num_input ( resource $ann ) Get the number of input neurons. Parameters: ann Neural network resource. Returns: Number of input neurons, or FALSE on error

fann_get_network_type

(PECL fann >= 1.0.0) Get the type of neural network it was created as int fann_get_network_type ( resource $ann ) Get the type of neural network it was created as. Parameters: ann Neural network resource. Returns: Network type constant, or FALSE on error.

fann_get_MSE

(PECL fann >= 1.0.0) Reads the mean square error from the network float fann_get_MSE ( resource $ann ) Reads the mean square error from the network. Reads the mean square error from the network. This value is calculated during training or testing and can therefore sometimes be a bit off if the weights have been changed since the last calculation of the value. Parameters: ann

fann_get_learning_rate

(PECL fann >= 1.0.0) Returns the learning rate float fann_get_learning_rate ( resource $ann ) The learning rate is used to determine how aggressive training should be for some of the training algorithms (FANN_TRAIN_INCREMENTAL, FANN_TRAIN_BATCH, FANN_TRAIN_QUICKPROP). Do however note that it is not used in FANN_TRAIN_RPROP. The default learning rate is 0.7. Parameters: ann

fann_get_learning_momentum

(PECL fann >= 1.0.0) Returns the learning momentum float fann_get_learning_momentum ( resource $ann ) The learning momentum can be used to speed up FANN_TRAIN_INCREMENTAL training. A too high momentum will however not benefit training. Setting momentum to 0 will be the same as not using the momentum parameter. The recommended value of this parameter is between 0.0 and 1.0. The default momentum is 0. Par

fann_get_layer_array

(PECL fann >= 1.0.0) Get the number of neurons in each layer in the network array fann_get_layer_array ( resource $ann ) Get the number of neurons in each layer in the neural network. Bias is not included so the layers match the fann_create functions. Parameters: ann Neural network resource. Returns: An array of numbers of neurons in each leay

fann_get_errstr

(PECL fann >= 1.0.0) Returns the last errstr string fann_get_errstr ( resource $errdat ) Returns the last errstr. Parameters: errdat Either neural network resource or neural network trainining data resource. Returns: The last error string, or FALSE on error. See also:

fann_get_errno

(PECL fann >= 1.0.0) Returns the last error number int fann_get_errno ( resource $errdat ) Returns the last error number. Parameters: errdat Either neural network resource or neural network trainining data resource. Returns: The error number, or FALSE on error. See also: