Skip to main content
. 2022 Dec 23;25(1):30. doi: 10.3390/e25010030
Algorithm 1 Auto Graph Self-supervised strategy optimization
Input: G={V,E}
 Parameters: hyperparameter optimization iterations Nselect, β fine-tuning iterations Nβ,
 labeled set L
 Initialization: θ0, w0, Ws0, B0, Λ0
 divide L into 3 similar parts, L0L1L2=L
while l{L0,L1,L2} do
    Validation set: l, training set: Ll
    repeat
      nn1
      Update (θn,wn,wsn) based on Equation (8)
      Update (Bn,Λn) based on Equation (15)
    until nNselect
end while
iargmaxΛ, set λi1, λn0(ni)
while l{L0,L1,L2} do
    Validation set: l, training set: Ll
    repeat
      nn1
      Update (θn,wn,wsn) based on Equation (8)
      Update Bn based on Equation (15)
    until nNβ
end while
Output: θ,w,Ws,B,Λ