|
Algorithm 4 Pseudocode of imbalanced metric-driven models based on AUE. |
|
Input: S: new data chunk |
| C: ensemble of classifiers |
| K: size of the ensemble |
|
Output: C: ensemble of updated classifiers with updated weights |
| X ← sampled S |
| Train new classifier na X; |
| Estimate weight of using cross-validation on S based on 5, 6 or 7; |
| for
in C do
|
| Calculate weight of on S based on 5, 6 or 7; |
| end for
|
| Calculate weight of random classifier on S based on 5, 6 or 6 and a priori probabilities; |
| for
in C do
|
| if
then
|
| Update with S; |
| end if
|
| end for
|
| C ← K classifiers with the highest weights from ; |
| for
in C do
|
|
|
| end for
|
| return C; |