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

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

공개 메소드들

메소드 설명
DecisionListLearner ( String positive, String negative, DLTestFactory testFactory ) : System
getDecisionList ( ) : DecisionList
predict ( Example e ) : String
test ( DataSet ds ) : int[]
train ( DataSet ds ) : void

비공개 메소드들

메소드 설명
allExamplesHaveSameTargetValue ( DataSet matched ) : bool
decisionListLearning ( DataSet ds ) : DecisionList
getValidTest ( List possibleTests, DataSet ds ) : DLTest

메소드 상세

DecisionListLearner() 공개 메소드

public DecisionListLearner ( String positive, String negative, DLTestFactory testFactory ) : System
positive String
negative String
testFactory DLTestFactory
리턴 System

getDecisionList() 공개 메소드

public getDecisionList ( ) : DecisionList
리턴 AIMA.Core.Learning.Inductive.DecisionList

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