transformer-time-series-prediction icon indicating copy to clipboard operation
transformer-time-series-prediction copied to clipboard

proof of concept for a transformer-based time series prediction model

Results 8 transformer-time-series-prediction issues
Sort by recently updated
recently updated
newest added

I believe that `input = torch.stack([item[0] for item in data]).view((input_window,batch_len,1))` should be changed to `input = torch.stack([item[0] for item in data]).T.unsqueeze(-1)`. This is because the orders are not correct if...

This seems to be a single-variable prediction, which only uses the sequence information of the own variables of the time signal, does not use other features

Hello, for multi-steps predict, how to get the x, label y tensor? Would you like to use the seq 1-100 to demostrcate it?

I have not been able to get the same same results as those presented here. Not even after 1000 epochs. In the code the number if epochs is 10 and...

Thank you very much for the code. I applied the model to load decomposition, but I found that the final output is a straight line. Is it because there is...

https://github.com/oliverguhr/transformer-time-series-prediction/blob/570d39bc0bbd61c823626ec9ca8bb5696c068187/transformer-multistep.py#L210

bug
good first issue

Thanks very much for your code. However, there are some difference between your code and the tutorial of PyTorch: [SEQUENCE-TO-SEQUENCE MODELING WITH NN.TRANSFORMER AND TORCHTEXT](https://pytorch.org/tutorials/beginner/transformer_tutorial.html) in `class TransAm` According to...

bug