An RWNN-object is a list containing the following:
data
The original data used to estimate the weights.
n_hidden
The vector of neurons in each layer.
activation
The vector of the activation functions used in each layer.
lnorm
The norm used when estimating the output weights.
lambda
The penalisation constant used when estimating the output weights.
bias
The TRUE/FALSE
bias vectors set by the control function for both hidden layers, and the output layer.
weights
The weigths of the neural network, split into random (stored in hidden) and estimated (stored in output) weights.
sigma
The standard deviation of the corresponding linear model.
type
A string indicating the type of modelling problem.
combined
A list of two TRUE/FALSE
values stating whether the direct links were made to the input, and whether the output of each hidden layer was combined to make the prediction.