C# 클래스 numl.Supervised.SVM.Selection.RandomSetSelection

Implements a Random Set Selection function which randomly selects new pairs.
상속: ISelection
파일 보기 프로젝트 열기: sethjuarez/numl

공개 메소드들

메소드 설명
GetWorkingSet ( int i, int j, Vector gradient, Vector alpha ) : int>.Tuple

Gets a new working set selection of i, j pair.

Initialize ( Vector alpha, Vector gradient ) : void

Initializes the selection function.

메소드 상세

GetWorkingSet() 공개 메소드

Gets a new working set selection of i, j pair.
public GetWorkingSet ( int i, int j, Vector gradient, Vector alpha ) : int>.Tuple
i int Current working set pair i.
j int Current working set pair j.
gradient numl.Math.LinearAlgebra.Vector Current Gradient vector.
alpha numl.Math.LinearAlgebra.Vector Current alpha parameter vector.
리턴 int>.Tuple

Initialize() 공개 메소드

Initializes the selection function.
public Initialize ( Vector alpha, Vector gradient ) : void
alpha numl.Math.LinearAlgebra.Vector Alpha vector
gradient numl.Math.LinearAlgebra.Vector Gradient vector.
리턴 void