-
Hi there, I must point out that Nixtla has done a very impressive job in building and implementing the models for predicting time series and there is no doubt that there is a significant contribution in capabilities to the entire community. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
Hi, thanks for using neuralforecast and thanks for the kind words :) Unfortunately without a standalone piece of code that I can run myself that exposes the issue it's difficult to help you; it may be an error in Neuralforecast or NBEATS, or an error in your code / training pipeline, it's near-impossible to tell without more information. So, if you can provide a minimal example that reproduces this behaviour with NBEATS I can help you further. |
Beta Was this translation helpful? Give feedback.
-
Something here is not clear to me. |
Beta Was this translation helpful? Give feedback.
-
@MeirYosub Your understanding is (mostly) correct. If you are training a single neural network on multiple series, you get a single model that can produce forecasts for multiple series. In statistical methods we typically train a single model per series. A key motivation of using a neural network is to leverage its superior representation capacity to learn a single model across many series such that it can be used for forecasting multiple series. Training a neural network on a single series only (and thus having separate models per series) kind of destroys the entire reason of using a neural network. I'm still not sure there is an issue here (it seems mostly a question of understanding the basic concepts of forecasting with neural networks). Do you have the feeling you understand these concepts? If not, happy to provide further clarifications. If so, I think we can close this issue. Let me know :) |
Beta Was this translation helpful? Give feedback.
From what I am able to understand from the results: in the case of several time series, one and only neural model (NBEATS) is adjusted for all the series, in contrast to the statistical models in which a separate model is adjusted for each series.