Click or drag to resize

FFNet Class

Feed-Forward Network basic functionality helper class.
Inheritance Hierarchy
SystemObject
  FinMath.MachineLearning.NeuralNetworksFFNet
    FinMath.MachineLearning.NeuralNetworksAutoencoder
    FinMath.MachineLearning.NeuralNetworksFFNetClassifier

Namespace:  FinMath.MachineLearning.NeuralNetworks
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
[SerializableAttribute]
public abstract class FFNet : IDisposable, 
	ISerializable

The FFNet type exposes the following members.

Constructors
  NameDescription
Public methodFFNet
The object deserialization constructor.
Top
Properties
  NameDescription
Public propertyClasses
The list of classes in the model
Public propertyRegularisation
Neural network L-1 regularization parameter.
Public propertyTerminationDelegate
The user's stop criterion function.
Public propertyTerminationIterations
The maximum optimization iterations number. Zero means infinite iterations.
Public propertyTerminationObjectiveChange
Objective function change stop criterion. Null means no objective change termination conditions.
Public propertyTerminationTimeout
The optimization algorithm timeout: the execution will be interrupted on the next step after the timeout expiration.
Public propertyTopology
The neural network model topology
Public propertyTrainBestIteration
Last Train or Update operation best step index.
Public propertyTrainBestValue
Last Train or Update operation best objective value.
Public propertyTrainTotalIterations
Last Train or Update operation total steps number.
Top
Methods
  NameDescription
Public methodClear
Clear model - free resources
Public methodDispose
This code added to correctly implement the disposable pattern.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetObjectData
The object optimized serialization method.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodLoad
Load model from file.
Public methodSave
Save model to file.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also