


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