Open FelixSaretzky opened 10 months ago
Hi @FelixSaretzky,
This is not yet supported for torch models, due to the way data is tabularized (less flexibility than regression models at the moment) but depending on the model, it should not be too difficult to change the architecture (and batch handling) so that it does not try to access the lags of the targets.
Adding this to the roadmap, could probably be implemented together with #1406.
Hi @madtoinou,
thanks to your fast response! But my approach for the multiple time sequences above is correct?
Yes, your approach looks correct for multiple series training.
For regression models purely relies on the covariates values, one can use
lags=None
. Is there also a possibility for PyTorch based models like BlockRNN?Given is a dataframe:
which was divided into run to failure time series. For instance series_1 = 200 rows of data until Failure ==1, series_2 = 1000 rows,..
Code:
Is this approach basically correct and can it be applied to PyTorch models such as BlockRNN?