The FeedForwardNetwork type exposes the following members.

Constructors

NameDescription
FeedForwardNetwork
Creates a new instance of FeedForwardNetwork.

Methods

NameDescription
ComputeStatistics
Computes error statistics.
(Inherited from Network.)
CreateHiddenLayer
Creates a HiddenLayer.
(Overrides Network..::.CreateHiddenLayer()()().)
Equals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Finalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
FindLink
Returns the Link between two Nodes.
FindLinks
Returns all of the Links to a given Node.
Forecast
Computes a forecast using the Network.
(Overrides Network..::.Forecast(array<Double>[]()[]).)
GetForecastGradient
Returns the derivatives of the outputs with respect to the weights.
(Overrides Network..::.GetForecastGradient(array<Double>[]()[]).)
GetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType
Gets the Type of the current instance.
(Inherited from Object.)
LinkOverloaded.
LinkAllOverloaded.
MemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Remove
Removes a Link from the Network.
SetEqualWeights
Initializes network weights using equal weighting.
SetRandomWeights
Initializes network weights using random weights.
ToString
Returns a String that represents the current Object.
(Inherited from Object.)
ValidateLink
Checks that a Link between two Nodes is valid.

Properties

NameDescription
HiddenLayers
The HiddenLayers in this Network.
InputLayer
The InputLayer in this Network.
(Overrides Network..::.InputLayer.)
Links
All the Links in this Network.
(Overrides Network..::.Links.)
NumberOfInputs
The number of InputNodes to the Network.
(Overrides Network..::.NumberOfInputs.)
NumberOfLinks
The number of Links in the Network.
(Overrides Network..::.NumberOfLinks.)
NumberOfOutputs
The number of output Perceptrons from the Network.
(Overrides Network..::.NumberOfOutputs.)
NumberOfWeights
The number of weights in the Network.
(Overrides Network..::.NumberOfWeights.)
OutputLayer
The neural network OutputLayer.
(Overrides Network..::.OutputLayer.)
Perceptrons
The Perceptrons in this Network.
(Overrides Network..::.Perceptrons.)
Weights
The weight values for the Links in this Network.
(Overrides Network..::.Weights.)

See Also