ExponentialSmoothingModel.Deploy Method

Creates a deployed copy of this model containing only the state required for forecasting.

Definition

Namespace: Numerics.NET.Statistics.TimeSeriesAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.2.0
C#
public ExponentialSmoothingModel Deploy()

Return Value

ExponentialSmoothingModel
A new deployed model instance.

Remarks

This method creates a new model instance that contains only the parameters and state needed for forecasting. The current instance remains unchanged and retains full fitted state including diagnostics and training data.

Exceptions

InvalidOperationException Thrown if the model has not been fitted.

See Also