View source: R/forward.prop.R View source: R/.ipynb_checkpoints/forward.prop-checkpoint.R
forward.prop | R Documentation |
Performs forward propagation through the neural network Most users should use predict.mlp() as a wrapper
forward.prop(network, X = NULL, return.cache = FALSE)
network |
An object of class 'mlp' containing the neural network. |
X |
The design matrix (if set to NULL), or a pre-processed matrix of input data. |
return.cache |
if TRUE, instead of the final activation, the network returns all intermediate activations. Used for backwards propagation. |
The activations of the final layer of the network. If return.cache is TRUE, then all intermediate layer activations are instead returned in a list.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.