C# 클래스 numl.Math.Optimization.Methods.GradientDescent.FastGradientDescent

A Stochastic Gradient Descent with Momentum method.
상속: OptimizationMethod
파일 보기 프로젝트 열기: sethjuarez/numl

공개 메소드들

메소드 설명
FastGradientDescent ( ) : System

Initializes a new FastGradientDescent object with a default Momentum of 0.9

UpdateTheta ( numl properties ) : Vector

Update and return the new Theta value.

메소드 상세

FastGradientDescent() 공개 메소드

Initializes a new FastGradientDescent object with a default Momentum of 0.9
public FastGradientDescent ( ) : System
리턴 System

UpdateTheta() 공개 메소드

Update and return the new Theta value.
public UpdateTheta ( numl properties ) : Vector
properties numl Properties for the optimization routine.
리턴 numl.Math.LinearAlgebra.Vector