C# Class SwarmOps.Optimizers.GD

Gradient Descent (GD), follows the gradient of the problem in small steps.
Inheritance: Optimizer
Afficher le fichier Open project: DanWBR/dwsim3

Méthodes publiques

Méthode Description
GD ( ) : System.Diagnostics

Construct the object.

GD ( Problem problem ) : System.Diagnostics

Construct the object.

GetStepsize ( double parameters ) : double

Get parameter, Stepsize.

Optimize ( double parameters ) : Result

Perform one optimization run and return the best found solution.

Method Details

GD() public méthode

Construct the object.
public GD ( ) : System.Diagnostics
Résultat System.Diagnostics

GD() public méthode

Construct the object.
public GD ( Problem problem ) : System.Diagnostics
problem Problem Problem to optimize.
Résultat System.Diagnostics

GetStepsize() public méthode

Get parameter, Stepsize.
public GetStepsize ( double parameters ) : double
parameters double Optimizer parameters.
Résultat double

Optimize() public méthode

Perform one optimization run and return the best found solution.
public Optimize ( double parameters ) : Result
parameters double Control parameters for the optimizer.
Résultat Result