An RWNN-object is a list containing the following:
dataThe original data used to estimate the weights.
n_hiddenThe vector of neurons in each layer.
activationThe vector of the activation functions used in each layer.
lnormThe norm used when estimating the output weights.
lambdaThe penalisation constant used when estimating the output weights.
biasThe TRUE/FALSE bias vectors set by the control function for both hidden layers, and the output layer.
weightsThe weigths of the neural network, split into random (stored in hidden) and estimated (stored in output) weights.
sigmaThe standard deviation of the corresponding linear model.
typeA string indicating the type of modelling problem.
combinedA 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.