NeuralNet Object
NeuralNet Object
Assuming that net is an object of NeuralNet type then it has the following usage:
Use net[] to display all its properties. To list individual properties use net[property, ...] or Options[NeuralNet] to see their default values.
To see properties that are abbreviated in StandardForm, use InputForm, OutputForm or list them individually i.e. net[Weights].
To change properties list them as one or more rules: net[property → value, ...]. Changing the NeuralNetType, ConnectionRate and Layers resets the Weights. Some properties are read-only, see the properties' usage information for details.
Giving net[filename] sets the properties to those found in a file in Fann net format.
When net is no longer needed, use Discard[net] to free the resources used by it.
NeuralNet Default Object Properties
ActivationFunctionHiddenLayer
ActivationFunctionOutputLayer
Bias
ConnectionRate
ErrorFunction
InputNeuronCount
Layers
LearningRate
MeanSquareError
NeuralNetType
OutputNeuronCount
QuickpropDecay
QuickpropStepsizeFactor
RpropStepsizeDecrease
RpropStepsizeIncrease
RpropStepsizeMaximum
RpropStepsizeMinimum
SteepnessHiddenLayer
SteepnessOutputLayer
TotalConnectionCount
TotalNeuronCount
TrainingAlgorithm
Weights
Created by freegoldbar (September 16, 2004)