For simplicity, say that I am attempting to predict the following day of a sequence of single-valued variables, therefore my datasaet would be in the form of:
input label
x1 x2
x2 x3
x3 x4
... ...
xt xt+1
However, my data has the same sequences in time for many different users, therefore it is in the following form:
input label
u1x1 u1x2
u1x2 u1x3
u1x3 u1x4
... ...
u1xt u1xt+1
u2x1 u2x2
u2x2 u2x3
u2x3 u2x4
... ...
u2xt u2xt+1
... ...
unx1 unx2
unx2 unx3
unx3 unx4
... ...
unxt unxt+1
What is an acceptable way to structure this data and feed it into DAI such that it is not treated as one entire long sequence, but rather a bunch of not directly related sequences parallel in time?
Edit: The data has a 'UserID' column. Can DAI automatically use this to overcome the problem I am explaining?