instantiate_estimator
Creates an sktime estimator or pipeline from a craft specification string, enabling dynamic instantiation of models like ARIMA or composite pipelines.
Instructions
Create an estimator or pipeline instance using a sktime craft specification. The spec is a string that evaluates to an estimator, e.g., 'ARIMA(order=(1, 1, 1))' or 'Detrender() * ARIMA()'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| spec | Yes | Craft specification string. |