Skip to main content
. 2020 Oct 10;22(10):1143. doi: 10.3390/e22101143
Algorithm 4. The prediction phase of the PCC-FS algorithm
Input: original test data, TQ binary classifiers ƕr,j, r=1, 2,,T; j=1, 2,,Q;
Output: predicted label sets for Xtest;
Steps
  1. generate Xtest through feature selection process;

  2. initialize χtest1,j with zero matrix [0]n×Q;

  3. for r1, 2,, T;

  4. for j1, 2, , Q;

  5. lprer,j=Ƈ(Ɣj);

  6. χtestr,j=[Xtest,lprer,j];

  7. Ƈ(j)=ƕr,j(χtestr,j);

  8. end for;

  9. end for;

  10. return the predicted results Ƈ.