C# Class AIMA.Core.Learning.Inductive.ConstantDecisonTree

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

Méthodes publiques

Méthode Description
ConstantDecisonTree ( String value ) : System
ToString ( ) : String
ToString ( int depth, StringBuilder buf ) : String
addLeaf ( String attributeValue, String decision ) : void
addNode ( String attributeValue, DecisionTree tree ) : void
predict ( Example e ) : Object

Method Details

ConstantDecisonTree() public méthode

public ConstantDecisonTree ( String value ) : System
value String
Résultat System

ToString() public méthode

public ToString ( ) : String
Résultat String

ToString() public méthode

public ToString ( int depth, StringBuilder buf ) : String
depth int
buf StringBuilder
Résultat String

addLeaf() public méthode

public addLeaf ( String attributeValue, String decision ) : void
attributeValue String
decision String
Résultat void

addNode() public méthode

public addNode ( String attributeValue, DecisionTree tree ) : void
attributeValue String
tree DecisionTree
Résultat void

predict() public méthode

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