Description Usage Arguments Value
Backpropagate data on a neural network
1 2 3 4 5 6 7 8 9 10 |
nn |
neural network |
newdata |
data.frame of the inputs and the outputs |
n_epoch |
integer : number of iterations of backpropagation going through every data once. |
step_size |
numeric : multiplier of the gradient. |
lr |
numeric : learning rate. new_param = old_param x (1-lr) + lrxbackproped_param |
batch_size |
integer : size of batch of backpropagation. |
algo |
character : convergence algorithm either "backprop" or "rprop+". |
trace |
logical : printing last ran epoch? |
list of neural network (class : nn) and the mean Loss
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.