|
|
|
|
|
by isoprophlex
985 days ago
|
|
Because they're so cheap to train, you can just use n models if you want to predict n steps ahead. In sklearn, if you have a single-output regressor, use this for ergonomics: https://scikit-learn.org/stable/modules/generated/sklearn.mu... The added benefit is that you optimize each regressor towards its own target timestep t+1 ... t+n. A single loss on the aggregate of all timesteps is often problematic |
|
In theory, this might suit the multi-step forecast use case.