This structure is subject to change at any time. If you need to use the values contained herein, please see the Optionsfunctions. If these functions do not fulfill your needs, please open a feature request on our SourceForge project page.
Properties
The type of error that last occured.
Where to log error messages.
A string representation of the last error.
The learning rate of the network.
The connection rate of the network. Between 0 and 1, 1 meaning fully connected.
Pointer to the first layer (input layer) in an array af all the layers, including the input and output layers.
Pointer to the layer past the last layer in an array af all the layers, including the input and output layers.
Total number of neurons. Very useful, because the actual neurons are allocated in one long array.
Number of input neurons (not calculating bias)
Number of output neurons (not calculating bias)
Used to contain the error deltas used during training Is allocated during first training session, which means that if we do not train, it is never allocated.
Used to choose which activation function to use in the output layer.
Used to choose which activation function to use in the hidden layers.
Parameters for the activation function in the hidden layers.
Parameters for the activation function in the output layer.
Fixed point only.The decimal point, used for shifting the fix point in fixed point integer operatons.
Fixed point only.The multiplier, used for multiplying the fix point in fixed point integer operatons. Only used in special cases, since the decimal_point is much faster.
An array of six members used by some activation functions to hold results for the hidden layer(s).
An array of six members used by some activation functions to hold values for the hidden layer(s).
An array of six members used by some activation functions to hold results for the output layer.
An array of six members used by some activation functions to hold values for the output layer.
Total number of connections. Very useful, because the actual connections are allocated in one long array.
Used to store outputs in.
The number of data used to calculate the error.
The total error value. The real mean square error is error_value/num_errors.