wildtreetech / advanced-comp-2017

💻 Material for a course on applied machine-learning for scientists. Taught at EPFL in spring 2017
23 stars 13 forks source link

Reference for time series analysis #7

Open yzderiv opened 7 years ago

yzderiv commented 7 years ago

Does anyone happen to come upon any good reference on time series analysis using machine learning techniques?

pwaller commented 7 years ago

One technique is called dynamic time warping. Here are a few links. Afraid I haven't used it myself, but found it interesting to read about. Not sure if it is applicable to your specific problem as you didn't specify what kind of problem you seek to solve :)

yzderiv commented 7 years ago

Thanks a lot! The problem is to analyze and forecast customer demand in option markets. These are usually similar but slightly different contracts traded by various kinds of customers.

I will have a look at the references.

betatim commented 7 years ago

In a trading setting I have seen people setup the problem like this:

Straight forward cross-validation doesn't work anymore in this case, in sklearn there was a recent addition called http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.TimeSeriesSplit.html#sklearn.model_selection.TimeSeriesSplit which might help.

yzderiv commented 7 years ago

Thank you very much. I will have a try.