You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A potentially useful feature could be for pmdarima.arima.auto_arima to stepwise determine (using the selected information_criterion) which exogenous features should be included in the model (e.g. add/remove columns in X to optimize the AIC).
The text was updated successfully, but these errors were encountered:
This is a cool idea. I think practically the best way to handle this would be to create an exog transformer that performs feature selection (i.e., similar to sklearn VarianceThreshold) that could be included in a Pipeline object. Then, I bet we could bootstrap the sklearn RandomSearchCV or GridSearchCV classes to do this.
If you'd like to take a swing at this, please feel free. Otherwise it may be some time before we get around to this enhancement.
A potentially useful feature could be for
pmdarima.arima.auto_arima
to stepwise determine (using the selectedinformation_criterion
) which exogenous features should be included in the model (e.g. add/remove columns inX
to optimize the AIC).The text was updated successfully, but these errors were encountered: