Algorithm 1: GTAD Training Algorithm |
Input: Training Dataset X = {x1, …, xM}, The number of epochs R |
Output: Trained GTAD |
GTAD←initialize weight |
epoch←1 |
repeat |
for t = L to M do |
← TAD (xt-L:t-1) |
GTAD←update weight using Loss |
end for |
epoch←epoch + 1 |
until epoch = R |