Skip to main content
. Author manuscript; available in PMC: 2021 Oct 13.
Published in final edited form as: Proc AAAI Conf Artif Intell. 2021 Feb;35(6):4874–4882.

Algorithm 1.

Interleaving update algorithm

Require: Conditional encoder E(·, ·), GCN G(·, ·).
Input: Image patch xij , anatomical landmark pj, adjacency matrix Ai.
for step t = 1, Tmax do
for step tl = 1, Tl do
  Randomly sample a batch of Bl subjects
  for j = 1, N do
   hijE(aug(xij),pj)
   Update E by backpropagating Ll
  end for
end for
for step tg = 1 ,Tg do
  Randomly sample a batch of Bg subjects
  SiG(concat({E(aug(xin),pn)}n=1N),Ai)
  Update G by backpropagating Lg
end for
end for