-
Notifications
You must be signed in to change notification settings - Fork 57
Open
Description
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?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels