Add TrivialModel

- the trivial model simply predicts `0` demand for all time steps
This commit is contained in:
Alexander Hess 2021-02-02 12:45:26 +01:00
commit 6fd16f2a6c
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
3 changed files with 77 additions and 0 deletions

View file

@ -14,6 +14,7 @@ MODELS = (
models.HorizontalSMAModel,
models.RealtimeARIMAModel,
models.VerticalARIMAModel,
models.TrivialModel,
)