Add HorizontalSMAModel
- the model applies a simple moving average on horizontal time series
- refactor `db.Forecast.from_dataframe()` to correctly convert
`float('NaN')` values into `None`; otherwise, SQLAlchemy complains
This commit is contained in:
parent
af82951485
commit
015d304306
5 changed files with 116 additions and 14 deletions
|
|
@ -11,6 +11,7 @@ from urban_meal_delivery.forecasts import models
|
|||
|
||||
MODELS = (
|
||||
models.HorizontalETSModel,
|
||||
models.HorizontalSMAModel,
|
||||
models.RealtimeARIMAModel,
|
||||
models.VerticalARIMAModel,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue