C# Class AIMA.Core.Learning.Learners.AdaBoostLearner

Inheritance: Learner
Afficher le fichier Open project: PaulMineau/AIMA.Net Class Usage Examples

Méthodes publiques

Méthode Description
AdaBoostLearner ( List learners, DataSet ds ) : System
predict ( Example e ) : String
test ( DataSet ds ) : int[]
train ( DataSet ds ) : void

Private Methods

Méthode Description
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

Method Details

AdaBoostLearner() public méthode

public AdaBoostLearner ( List learners, DataSet ds ) : System
learners List
ds AIMA.Core.Learning.Framework.DataSet
Résultat System

predict() public méthode

public predict ( Example e ) : String
e AIMA.Core.Learning.Framework.Example
Résultat String

test() public méthode

public test ( DataSet ds ) : int[]
ds AIMA.Core.Learning.Framework.DataSet
Résultat int[]

train() public méthode

public train ( DataSet ds ) : void
ds AIMA.Core.Learning.Framework.DataSet
Résultat void