-
Book Overview & Buying
-
Table Of Contents
Time Series with PyTorch
By :
In the previous chapters, we have explored various models and techniques for time series data. From a high level perspective, we have seen two main types of learning paradigms: supervised learning and unsupervised learning. For the majority of the time series forecasting models we have discussed, they rely on splitting the time series into input and target sequences, and then training the model to predict the target sequence given the input sequence. This is a form of supervised learning, where we have a clear distinction between the input and the target.
Meanwhile, in Chapters 11, 15, and 17, we have also discussed unsupervised learning for time series, where we do not specify a clear target or label, and instead we are trying to detect the differences or anomalies in the time series data. This fits into the unsupervised learning paradigm, where we are trying to learn from the data without explicit labels.
Apart from the two main learning...