1

I'm trying to understand how and at which point can one apply Cross Validation for time series data. If i'm not wrong CV increases generalisation so that our model has less bias in case the data is ordered/distributed in a certain particular way. But time series inherently has a direction (it can only move forward) and if i'm using some unsupervised algorithms on it, how should one apply Cross validation on it if any. I read a related question on it here : (Cross-validation techniques for time series data ) although as opposed to the question above for supervised learning i'm planning on some unsupervised clustering algorithms to group a set of time series together. So basically i have two doubts :

  1. How to approach the problem of CV for my time series problem.
  2. majority of questions related to cv and timeseries and cv used supervised algorithms? So an insight taking into account the clustering technique i would be using would be preferable.
  • What does it mean that you have a "stack" of time series? Properly designing a CV scheme requires accounting for dependencies in the data, so we need more information about how your data is structured. 2) CV for unsupervised learning can be complicated. Certain things work in some cases and not in others. We need more information about what you're trying to do. 3) Are you using CV for model selection or for reporting performance? What criterion are you using to measure performance?
  • – user20160 Aug 31 '18 at 08:41
  • Stack of time series : The time series are somewhat correlated in the sense that they are behaving similarly, like web server pools processing requests. So yes the time series is correlated.
  • CV process: I understood what you meant. What I'm trying to achieve is cluster all the servers behaving similarly while as in above example processing requests.
  • Yes CV for performance evaluation is my main aim. I'm also really stuck at measuring performance too, as i really don't have any true_labels to be honest.
  • Any help on this could be helpful.

    – Mr. Confused Aug 31 '18 at 09:43