C# 클래스 SwarmOps.Optimizers.GD

Gradient Descent (GD), follows the gradient of the problem in small steps.
상속: Optimizer
파일 보기 프로젝트 열기: DanWBR/dwsim3

공개 메소드들

메소드 설명
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.

메소드 상세

GD() 공개 메소드

Construct the object.
public GD ( ) : System.Diagnostics
리턴 System.Diagnostics

GD() 공개 메소드

Construct the object.
public GD ( Problem problem ) : System.Diagnostics
problem Problem Problem to optimize.
리턴 System.Diagnostics

GetStepsize() 공개 메소드

Get parameter, Stepsize.
public GetStepsize ( double parameters ) : double
parameters double Optimizer parameters.
리턴 double

Optimize() 공개 메소드

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