Hacker News new | ask | show | jobs
by AndrewKemendo 1812 days ago
What would you suggest is the most effective time series analysis library?
2 comments

Temporal Fusion Transformers look very cool: accepts timeseries vectors but also categoricals and numerical features, outputs distribution using quintile regression.

https://arxiv.org/pdf/1912.09363v2.pdf

Available as pytorch implementation:

https://pytorch-forecasting.readthedocs.io/en/latest/index.h...

SoTA in 2021 is the bespoke transformer model you implement yourself based on the idiosyncrasies in your data. Unless a lot of money is on the line, that is overkill for most situations though.
What about be the feature vector for each of the x_i in the sequence? Would it just be the numerical value? Or could you also add a time embedding?