-
Book Overview & Buying
-
Table Of Contents
Time Series with PyTorch
By :
The variety of approaches available to us for TSC gives us options when we need to compare time series. The simplest approaches are distance-based, with specializations like weighted-dynamic time warping; these are usually utilized as baseline comparisons rather than solutions. We can, of course, ensemble (elastic ensemble) these together for better performance; unfortunately, it does not scale well to large datasets. One of the best approaches for TSC is proximity forest, which, when tuned, performed the best for our specific data set, which is consistent with research. It also scales better than the elastic ensemble, but is still relatively slow and computationally expensive to run. The approach that seems to scale best, depending on the featurization library (which perhaps is the reason for its popularity), is time series featurization. We spent a significant amount of time, because featurization can be adapted via the features we build to tailor it to our area of research...