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