Hi, does AutoMLForecast concern time series featur...
# mlforecast
b
Hi, does AutoMLForecast concern time series features optimization (such as lags) or model parameters as well (learning_rate)?
j
By default it optimizes both but you can set it to only tune one
b
In that case, I do not have to give a search grid? And is differencing also done by AutoMLForecast?
j
There are default search spaces, differences are included in them when possible (series are long enough)
b
Thanks! Can I find the default search space somewhere?
j
They're in the auto module, the model ones are fixed but the transforms are defined programatically
b
And does it also help finding the best combination of exogenous variables?
j
No, it'll always use the ones you provide. If you want to tune that you'll have to define a custom objective
b
But don’t tree-based models inherently perform feature selection, such as a RF or a XGB?