Delegate GradientDescent.FitnessFunction
Delegate property in charge of computing the fitness error.
Namespace: Paramdigma.Core.Optimization
Assembly: Paramdigma.Core.dll
Syntax
public delegate double FitnessFunction(List<double> inputValues);
Parameters
| Type | Name | Description |
|---|---|---|
| List<System.Double> | inputValues | Input values to comute the fitness from. |
Returns
| Type | Description |
|---|---|
| System.Double | Scalar value representing the current fitness for the given values. |