Incremental Integration Algorithm based on Incremental RLID3
Wang Hongbin,Hu Lei,Xie Xiaodong,Zhou Lianke,Li Huafeng
Algorithm 2 Weight recorder
Input: data set, trained classifier set
Output: weight recorder
1. Initialization of the weight recorder, making aij=0
2. for (instance: data set) {
3. for (classifier: classifier set) {//classifier represents the i classifier
4. j = classifier.classify (instance) //j represents the classification results of the classifier for the sample
5. aij += classifier.getWeight();//aij plus the weight of the i classifier
6. }
7. }