flexmeasures.data.models.forecasting.model_specs.naive

Functions

flexmeasures.data.models.forecasting.model_specs.naive.naive_specs_configurator(**kwargs)

Create and customize initial specs with OLS. See model_spec_factory for param docs.

Classes

class flexmeasures.data.models.forecasting.model_specs.naive.Naive(*args, **kwargs)

Naive prediction model for a single input feature that simply throws back the given feature. Under the hood, it uses linear regression by ordinary least squares, trained with points (0,0) and (1,1).

__init__(*args, **kwargs)