Research Article

[Retracted] Rapid Identification of Tobacco Mildew Based on Random Forest Algorithm

Table 2

Update of incremental random forest model.

Algorithm 3.3 incremental random forest←Update (x, y)
Steps:
1:  For t < 1 to T do
2:   For k←1 to P = Poisson (1) do
3:    l = navigateToLeaf (x);
4:    updateLeaf (l, (x, y));
5:    If shouldSplit (l) then
6: Arg maxdeDΔL (l,d);
7:     createChild (l, d);
8:     Endif
9:    if P←0 then
10:     OOBEt←updateOOBE (t, (x, y));
11: End if
12:    If s drawn from bern (OOBEt)
13:     rebuildTree (T);
14:    Endif
15: End for
16: End for