We could use tspreprocess to infer good settings for kind_to_fc_parameters.
For example
- if all time series have same length, we do not need to calculate the
length feature
- for autocorrelation, we could use all lags up to lets say one tenth of the maximal length, so
maxlag = max(len(x))/10
- if the time series are discrete, maybe drop the trend features
- ...
This would allow to use tsfresh more efficiently