I am currently working on rare event prediction, which I have never done before (I used to work with simple prediction problem), and I looked up on this article about using LSTM for time series rare event classification.
It was very exciting to read since I think my case is a little similar: to predict calving time of cow, with historical activity feature, where calving is only happen once in the end of data collection.
However... aside from my data is way smaller than the example, I got too much confusion using LSTM. The good point about LSTM I am looking forward to is the "look back" feature that can let you decide for each output how many input in previous time you look back to.
My question will be: is there any "easier" or more simple machine learning method that works like LSTM for time series classification?
I tried to use simple ML such as decision tree, random forest, but I don't think it represents the problem well (many historical data into one output).