In line 311 of train_svg_lp.py, what is the reasoning behind setting the condition as:
if opt.last_frame_skip or i < opt.n_past:
h, skip = h
instead of (the only change is the second < is swapped to <=):
if opt.last_frame_skip or i <= opt.n_past:
h, skip = h
Since h = encoder(x[i-1]), I believe the strict < will cause the skip features to be from the t = n_past - 1 frame instead of the t = n_past frame (where t is indexed from 1). Is this intended?
In line 311 of
train_svg_lp.py, what is the reasoning behind setting the condition as:instead of (the only change is the second
<is swapped to<=):Since
h = encoder(x[i-1]), I believe the strict<will cause theskipfeatures to be from thet = n_past - 1frame instead of thet = n_pastframe (wheretis indexed from 1). Is this intended?