Home > lyngby > lyngby_nn_ctrain.m

lyngby_nn_ctrain

PURPOSE ^

lyngby_nn_ctrain - Classifier neural network training

SYNOPSIS ^

function [E, Y, VOut, WOut] = lyngby_nn_ctrain(X, T, VOld, WOld, Reg,arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10,arg11, arg12)

DESCRIPTION ^

 lyngby_nn_ctrain     - Classifier neural network training 

        function [E, Y, VOut, WOut] = lyngby_nn_ctrain(X, T, VOld, ...
                  WOld, Reg, 'PropertyName', 'PropertyValue')

        Input:        X       Neural network input
               T       Target output 
                VOld    Old input weights
                WOld    Old output weights
               Reg     Regularization (weight decay)
               Property:
                 MaxIteration  {200} Iteration stop criterion
                 MinCost       {0} Iteration stop criterion
                 MinGradient   {10^(-7)} Iteration stop criterion
                 Method        Optimization type
                 WeightAcc     [ {off} | on ] Accumulate weights
                 Info          [ {0} | 1 ] Reporting of
                               costfunction and gradient. Zero
                               means off

        Output:        E        Entropic error (cost without regularization)
                Y        Computed Outputs
                WOut        New trained output weights or accumulated
                        weights (depending on 'WeightAcc')
                VOut        New trained hidden weights or accumulated
                        weights (depending on 'WeightAcc') 

       This function trains a neural network, either pruned or fully
       connected. It will continue until one of the stop criterions
       are meet: maxIteration is the number of epochs (optimization
       steps), minCost is the highest acceptable value for the cost
       function, minGradient is the hightest acceptable value for the
       norm of the gradient.
   
       See also: LYNGBY, LYNGBY_NN_CMAIN, LYNGBY_NN_CFORWARD,
                 LYNGBY_NN_CERROR.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Wed 29-Jul-2009 15:57:21 by m2html © 2003