I have ECG data and sleep annotations as target. The data is recorded in sessions. For one case, I want to use each session as an input sample. Therefore, I need to zero-pad the input data to achieve same length/dimension. What do I do with the target data?
Do I also "zero-pad" to achieve the same length/dimension? I could use a new state (e.g. 666 as 0 is already in use) which will then not be considered by using a masking layer on the particular zero-padded input data.
Or do I just leave the target as it is?
Thanks for your help
edit: more info about the data