I would like to know if it is possible to forecast a constant 0s forecast and collect error metrics for it. Also, I would like to forecast with the Poisson distribution. How would I do that with GluonTS?
I would like to know if it is possible to forecast a constant 0s forecast and collect error metrics for it.
There is a ConstantValuePredictor, which works like any other trained predictor:
from gluonts.model.trivial.constant import ConstantValuePredictor
zero_forecaster = ConstantValuePredictor(
prediction_length=...,
freq=...,
value=0.0
)
See:
The Poisson distribution is not currently implemented, thank you for pointing this out. I鈥檒l open an issue about that, feel free to pick it up if you feel like it :-)
Let's close this, and discuss poisson in #529