Click or drag to resize

GridSearch Class

The Brute-force search algorithm on parameters grid.
Inheritance Hierarchy
SystemObject
  FinMath.MachineLearning.EvolutionaryAlgorithmsSearchAlgorithm
    FinMath.MachineLearning.EvolutionaryAlgorithmsGridSearch

Namespace:  FinMath.MachineLearning.EvolutionaryAlgorithms
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
[SerializableAttribute]
public class GridSearch : SearchAlgorithm

The GridSearch type exposes the following members.

Constructors
  NameDescription
Public methodGridSearch(IEnumerableSearchAlgorithmIFactor, FuncDouble, Double)
Constructor with simple fitness delegate.
Public methodGridSearch(IEnumerableSearchAlgorithmIFactor, Int32, ActionDouble, Double)
Constructor with block-oriented fitness delegate.
Top
Properties
  NameDescription
Public propertyBlockSize
The batch objective function evaluation block size.
Public propertyExitDelegate
The exit conditions delegate.
(Inherited from SearchAlgorithm.)
Public propertyFactors
The algorithm factors.
(Inherited from SearchAlgorithm.)
Public propertyMinimumObjectivePoint
The parameters point at which the minimum objective value were found.
(Inherited from SearchAlgorithm.)
Public propertyMinimumObjectiveValue
The minimum objective value found.
(Inherited from SearchAlgorithm.)
Public propertyStop
Stops algorithm execution.
Top
Methods
  NameDescription
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 methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodRun
Runs the algorithm.
(Overrides SearchAlgorithmRun.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also