C# 클래스 AIMA.Core.Learning.Learners.AdaBoostLearner

상속: Learner
파일 보기 프로젝트 열기: PaulMineau/AIMA.Net 1 사용 예제들

공개 메소드들

메소드 설명
AdaBoostLearner ( List learners, DataSet ds ) : System
predict ( Example e ) : String
test ( DataSet ds ) : int[]
train ( DataSet ds ) : void

비공개 메소드들

메소드 설명
adjustExampleWeights ( DataSet ds, Learner l, double error ) : void
calculateError ( DataSet ds, Learner l ) : double
createTargetValueLearnerTable ( List targetValues, Example e ) : Table
getTargetValueWithTheMaximumVotes ( List targetValues, Table table ) : String
initializeExampleWeights ( int size ) : void
initializeHypothesisWeights ( int size ) : void
scoreOfValue ( String targetValue, Table table, List learners ) : double
weightedMajority ( Example e ) : String

메소드 상세

AdaBoostLearner() 공개 메소드

public AdaBoostLearner ( List learners, DataSet ds ) : System
learners List
ds AIMA.Core.Learning.Framework.DataSet
리턴 System

predict() 공개 메소드

public predict ( Example e ) : String
e AIMA.Core.Learning.Framework.Example
리턴 String

test() 공개 메소드

public test ( DataSet ds ) : int[]
ds AIMA.Core.Learning.Framework.DataSet
리턴 int[]

train() 공개 메소드

public train ( DataSet ds ) : void
ds AIMA.Core.Learning.Framework.DataSet
리턴 void