Home > lyngby > lyngby_nn_cforward.m

lyngby_nn_cforward

PURPOSE ^

lyngby_nn_cforward - Classifier neural network forward

SYNOPSIS ^

function [Y, O, H] = lyngby_nn_cforward(X, V, W);

DESCRIPTION ^

 lyngby_nn_cforward   - Classifier neural network forward 

       function [Y, O, H] = lyngby_nn_cforward(X, V, W);

       Input:  X   Input to neural network
               V   Input weights
               W   Output weights

       Output: Y   Output from the neural network after the softmax
                   is applied 
               O   Output from the neural network before the softmax
                   is applied
               H   Hidden layer output

       Implements:
           Y = softmax( tanh(XV)W )

       See also: lyngby_nn_cmain, lyngby_nn_ctrain

CROSS-REFERENCE INFORMATION ^

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