In R programming,I am trying to understand how to use nnet to have user specified initial weights instead of defaults for running a neural network algorithm? The R documentation mentions below arguments. Any example of how to use weights?
nnet(formula, data, weights, ...,
subset, na.action, contrasts = NULL)
weights=specifies the number of weights, and that you can see the actual weights by doingNNET <- nnet(....) ; NNET$wts, but I'm not sure how it relates to the building of the model. - SeƱor O