diff --git a/reference/fann/constants.xml b/reference/fann/constants.xml index f2ab0454f3..91ad9ed6e0 100644 --- a/reference/fann/constants.xml +++ b/reference/fann/constants.xml @@ -28,9 +28,9 @@ Standard backpropagation algorithm, where the weights are updated after calculating the mean square error - for the whole training set. This means that the weights are only updated once during a epoch. - For this reason some problems, will train slower with this algorithm. But since the mean square - error is calculated more correctly than in incremental training, some problems will reach a better + for the whole training set. This means that the weights are only updated once during an epoch. + For this reason, some problems will train slower with this algorithm. But since the mean square + error is calculated more correctly than in incremental training, some problems will reach better solutions with this algorithm. @@ -43,11 +43,11 @@ A more advanced batch training algorithm which achieves good results for many problems. The RPROP - training algorithm is adaptive, and does therefore not use the learning_rate. Some other parameters + training algorithm is adaptive, and therefore does not use the learning_rate. Some other parameters can however be set to change the way the RPROP algorithm works, but it is only recommended for users with insight in how the RPROP training algorithm works. The RPROP training algorithm is described by [Riedmiller and Braun, 1993], but the actual learning algorithm used here is - the iRPROP- training algorithm which is described by [Igel and Husken, 2000] which is an variety + the iRPROP- training algorithm which is described by [Igel and Husken, 2000] which is a variety of the standard RPROP training algorithm. @@ -61,7 +61,7 @@ A more advanced batch training algorithm which achieves good results for many problems. The quickprop training algorithm uses the learning_rate parameter along with other more advanced parameters, - but it is only recommended to change these advanced parameters, for users with insight in how the quickprop + but it is only recommended to change these advanced parameters for users with insight into how the quickprop training algorithm works. The quickprop training algorithm is described by [Fahlman, 1988]. @@ -175,7 +175,7 @@ - Symmetric gaussian activation function. + Symmetric Gaussian activation function. @@ -186,7 +186,7 @@ - Stepwise gaussian activation function. + Stepwise Gaussian activation function. @@ -197,7 +197,7 @@ - Fast (sigmoid like) activation function defined by David Elliott. + Fast (sigmoid-like) activation function defined by David Elliott. @@ -208,7 +208,7 @@ - Fast (symmetric sigmoid like) activation function defined by David Elliott. + Fast (symmetric sigmoid-like) activation function defined by David Elliott. @@ -300,7 +300,7 @@ Tanh error function; usually better but may require a lower learning rate. This error function aggressively - targets outputs that differ much from the desired, while not targeting outputs that only differ slightly. + targets outputs that differ much from the desired output, while not targeting outputs that differ only slightly. Not recommended for cascade or incremental training. @@ -326,8 +326,8 @@ - Stop criteria is number of bits that fail. The number of bits means the number of output neurons - which differs more than the bit fail limit (see fann_get_bit_fail_limit, fann_set_bit_fail_limit). The bits are counted + Stop criterion is number of bits that fail. The number of bits means the number of output neurons + which differ more than the bit fail limit (see fann_get_bit_fail_limit, fann_set_bit_fail_limit). The bits are counted in all of the training data, so this number can be higher than the number of training data.