Skip to main content
. 2021 May 8;11(5):603. doi: 10.3390/brainsci11050603
Algorithm 2 Our Proposed Model
Input: source domain data Xs, target domain data Xt, labels yS of source domain data, threshold δ, α and β
Output:yT as labels of target domain data
1: BEGIN
2: Initialize Dt(c) as Null
3: while not converged do
4:   (1) W  Distribution adaptation (Dt(c)y^T) in Equation (14) and let Zs=WTXs and Zt=WTXt
5:    (2) Assign y^T using classifiers trained by Zs
6:    (3) Obtain Bnd(X) in Algorithm 1
7:     (4) (Dt(c)y^T)  execute label propagation algorithm
8: End while
9:yTy^T
10: END BEGIN