is it possible to use <NHITS> to forecast future p...
# neural-forecast
c
is it possible to use NHITS to forecast future periods if we don't have "live"
y
values?
k
Hi @Chris Gervais , That is the “cold-start” problem. Although we have not explored that functionality. In principle neural forecast methods should be able of making such predictions. The most important input for the “cold start” problem are the static features. As long as other series with similar static features are available in your dataset a prediction with no temporal information should be feasible.
c
i think i may have misrepresented the problem 🙂 we have lots of y values historically, say from jan - dec 2022, as well as plenty of future exogenous variables. but we have no
y
values from jan - feb 2023. is it possible to use only exogenous variables and have no target lags?
k
A bit more like a missing data problem?
Would you be able to create predictions and feed the predictions to the model in rolling window fashion? Or for such series with missing values fit and predict a long horizon and drop the predictions with the missing lags?
c
good question, it might be possible. would it help if we provided some sample data from fitting + the input data frames?