|
Algorithm 1 Adaptive Adjustment Algorithm for Reduction Threshold |
-
1:
while True do
-
2:
Call the CUSUM algorithm to determine if concept drift has occurred
-
3:
if Concept drift occurs then
-
4:
if > then
-
5:
Lower the current threshold
-
6:
if < then
-
7:
=
-
8:
else
-
9:
if c < then
-
10:
Raise the current threshold
-
11:
if > then
-
12:
=
|