Algorithm 1 Basic sequential forward search. |
-
1:
▹ Target feature set S is initially empty
-
2:
while do ▹ is a maximum number of selected features
-
3:
for all
do ▹ Test each feature that is not yet in S
-
4:
-
5:
-
6:
-
7:
if
then ▹ Condition check and else block are optional and
only required to obtain ever-increasing accuracy
-
8:
-
9:
-
10:
else
-
11:
break
|