Description Usage Arguments Value See Also Examples
Function used for creating multilayer perceptron networks.
1  | 
layers | 
 vector providing numbers of neurons in each layer  | 
name | 
 character string, network name (optional)  | 
Returns an object of mlp_net class.
mlp_net for details.
1 2 3 4 5 6  | # create a 2-3-1 network
net <- mlp_net(c(2, 3, 1))
# randomise weights
net <- mlp_rnd_weights(net)
# show basic information about the network
show(net)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.