Skip to main content
. 2020 Jul 31;22(8):849. doi: 10.3390/e22080849
Algorithm 2 AUE pseudocode.
Input: S: new data chunk
 K: size of the ensemble
 C: ensemble of K classifiers
Output: C: ensemble of K updated classifiers with updated weights
 Train new classifier C on S;
 Estimate the weight of C based on 4 using cross-validation on S;
for CiC do
  Calculate weight wi based on 4;
end for
 C ← K classifiers with the highest weights from CC;
for Ce in C do
  if we>1MSEr and CeC then
   update Ce with S
  end if
end for