Daniel@0: Daniel@0:
Daniel@0:Daniel@0: y = mlpfwd(net, x) Daniel@0: [y, z] = mlpfwd(net, x) Daniel@0: [y, z, a] = mlpfwd(net, x) Daniel@0:Daniel@0: Daniel@0: Daniel@0:
y = mlpfwd(net, x)
takes a network data structure net
together with
Daniel@0: a matrix x
of input vectors, and forward propagates the inputs
Daniel@0: through the network to generate a matrix y
of output
Daniel@0: vectors. Each row of x
corresponds to one input vector and each
Daniel@0: row of y
corresponds to one output vector.
Daniel@0:
Daniel@0: [y, z] = mlpfwd(net, x)
also generates a matrix z
of the hidden
Daniel@0: unit activations where each row corresponds to one pattern.
Daniel@0:
Daniel@0:
[y, z, a] = mlpfwd(net, x)
also returns a matrix a
Daniel@0: giving the summed inputs to each output unit, where each row
Daniel@0: corresponds to one pattern.
Daniel@0:
Daniel@0:
mlp
, mlppak
, mlpunpak
, mlperr
, mlpbkp
, mlpgrad
Copyright (c) Ian T Nabney (1996-9) Daniel@0: Daniel@0: Daniel@0: Daniel@0: