Skip to main content
. 2021 Feb 10;21(4):1262. doi: 10.3390/s21041262
Algorithm 1 The procedure for MSFBEL framework.
Input: Number of scales s, number of classes c, training data XRd×n, training data label
  ORc×n, a subset of training data XsubRd×m, the labels of subset OsubRc×m,
  testing data yRd;
Output: The label of testing data: l.
 1: for j=1:s do
 2:  Compute the label of testing data under scale j via Algorithm 2;
 3: end for
 4: Compute decision matrix D by Equation (4) with Xsub and Osub;
 5: Compute M=DTD and b=2DT1m;
 6: Compute the adaptive weight w* via Algorithm 3;
 7: Compute l=argmaxk[c]{j=1swj*I(rj=k)}.