Inference1Winner {FKBL} | R Documentation |
Uses a knowledge base to infer the vector of classes for a given dataset problem, with the method of only one winner. For every case in the problem, the rules at the knowledge base are used to determinate the most appropriate class. Described in chapter 2, pages 021-022 at Ishibuchi et al.\
Inference1Winner(kB,train)
Takes the knowledge base and the dataset.
kB |
The knowledge base. |
train |
The train data. |
Returns the vector of classes.
data(kB) data(trainA) Inference1Winner(kB,trainA)