smooth.ADAM.models

property ADAM.models: List[Dict]

$models).

Each entry contains the model name, its IC weight, and the prepared model data for forecasting.

Returns:

List of dictionaries containing: - “name”: Model name string (e.g., “ANN”) - “weight”: IC weight for this model - “prepared”: Prepared model data for forecasting

Return type:

List[Dict]

Raises:

ValueError – If the model has not been fitted or was not fitted with combination.

Examples

>>> model = ADAM(model="CCC", lags=[1])
>>> model.fit(y)
>>> for m in model.models:
...     print(f"{m['name']}: {m['weight']:.3f}")
Type:

Return list of individual models in the combination (R