smooth.ADAM.initial_type

property ADAM.initial_type: str

$initialType).

Returns:

One of: - "optimal": Initial states optimized during fitting - "backcasting": Initial states estimated via backcasting - "two-stage": Backcast then optimize - "complete": Pure backcasting without optimization - "provided": User-supplied initial values

Return type:

str

Raises:

ValueError – If the model has not been fitted yet.

See also

initial_value

The actual initial state values

Examples

>>> model = ADAM(model="AAN", initial="backcasting")
>>> model.fit(y)
>>> print(model.initial_type)
'backcasting'
Type:

Initialization method used for initial states (R