|
Algorithm 1: ILECA |
Input: train set , test set Output:
expected classification matrix T
-
1:
formulate the feature matrix X for D
-
2:
-
3:
calculate
-
4:
obtain by solving the eigenproblem of
-
5:
calculate , obtain the new train data
-
6:
generate and randomly, set the number of hidden neurons L
-
7:
calculate the output of hidden neurons H according to the Equation (13)
-
8:
calculate the output weight of classifier according to the Equation (14)
-
9:
formulate the feature matrix for
-
10:
-
11:
-
12:
calculate the output of hidden neurons for test data according to the Equation (13)
-
13:
according to the Equation (12)
-
14:
returnT
|