C# 클래스 AIMA.Core.Learning.Inductive.ConstantDecisonTree

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

공개 메소드들

메소드 설명
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

메소드 상세

ConstantDecisonTree() 공개 메소드

public ConstantDecisonTree ( String value ) : System
value String
리턴 System

ToString() 공개 메소드

public ToString ( ) : String
리턴 String

ToString() 공개 메소드

public ToString ( int depth, StringBuilder buf ) : String
depth int
buf StringBuilder
리턴 String

addLeaf() 공개 메소드

public addLeaf ( String attributeValue, String decision ) : void
attributeValue String
decision String
리턴 void

addNode() 공개 메소드

public addNode ( String attributeValue, DecisionTree tree ) : void
attributeValue String
tree DecisionTree
리턴 void

predict() 공개 메소드

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