-
Book Overview & Buying
-
Table Of Contents
Time Series with PyTorch
By :
Another approach we could take is feature based classification, popular because of its simplicity, and speed. On the surface it’s a fairly simple approach, you take your time series data and break it down into summary features that characterize the data.
Featurization can be done manually, but is best handled by libraries like hctsa, tsfresh, catch22, and tsfeatures, written in faster languages. These libraries can generate thousands of statistical summaries, but this does not obviate the need for domain knowledge, and one should check the documentation. Many of these feature transforming libraries assume stationarity or well-behaved signals. Poor planning of preprocessing will lead to misleading...