|
Algorithm 1 DRFS |
|
Input: Data matrix , label matrix , .
Initialize .
Output: Feature weight matrix .
-
1:
Compute feature similarity matrices ,
-
2:
while not converaged do
-
3:
Update by ;
-
4:
Compute diagonal matrix as ;
-
5:
for to
r do
-
6:
Update by ;
-
7:
;
-
8:
end for
-
9:
Update ;
-
10:
Update ;
-
11:
end while
|