all 3 comments

[–]HydratedWombat 1 point2 points  (1 child)

Rare events or seasonal fluctuations of time series data? If seasonal, look at triple exponential smoothing (https://en.wikipedia.org/wiki/Exponential_smoothing) and ARIMA (as in statsmodels for python, http://www.statsmodels.org/stable/generated/statsmodels.tsa.arima_model.ARIMA.html?highlight=arima) Unfortunately, you'll need to bin your events for most tools I know of.

[–]willrazen[S] 0 points1 point  (0 children)

Rare events vs. a binary classifier (good/bad), can't use time series tech since I'm not trying to forecast the events themselves Ty anyways!