Open skmanzg opened 2 days ago
Hello! Didn't look into it in much detail (I will get more time soon), but basically, your forward
function should take self
and windows_batch
and then the x
in the forward function is windows_batch['insample_y']
. Maybe this can help you get unstuck.
Otherwise, thanks for raising this issue! You're right we should:
Description
Use case
Modern TCN Github repo This model uses CNN but the architecture is Transformer.
Simple Mamba for Time Series forecasting Mamba for Time Series forecasting Mamba was released as a 'Transformer substitute.'
The problem is that MordernTCN class has already this function, and I think most model would be like that.
I wonder how to fix the function in this case? and when I look at the TimeLLM and TimeMixer ipynb files, their foward functions in the model name class were different from the guide document.