One-Hot encoded + SNARIMAX #480
-
Been tinkering with pipelines on multiple shops demand forecasting dataset river version: from github, this week What grinds my gears is:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can access the
Agreed, it would be nice to have. Sadly we currently don't have any time resources to allocate.
Good point! You could pass a custom pipeline to the snarimax = SNARIMAX(
regressor=(
(
(
compose.Select('shop') |
preprocessing.OneHotEncoder()
) +
(
compose.Select('numeric_feature_1', 'numeric_feature_2') |
preprocessing.StandardScaler()
)
) |
linear_model.LinearRegression()
)
) |
Beta Was this translation helpful? Give feedback.
You can access the
regressor
attribute.Agreed, it would be nice to have. Sadly we currently don't have any time resources to allocate.
Go…